Commit e6bba9be4f0400471170e9d86f3ef15344416f2f
1 parent
df016465
Exists in
master
and in
4 other branches
icon for handler of sortable
Showing
4 changed files
with
13 additions
and
1 deletions
Show diff stats
260 Bytes
app/assets/stylesheets/projects.css.scss
app/views/issues/_show.html.haml
1 | 1 | %tr{ :id => dom_id(issue), :class => "issue", :url => project_issue_path(@project, issue) } |
2 | 2 | %td |
3 | - = image_tag gravatar_icon(issue.assignee.email), :class => ["left", "handle"], :width => 40, :style => "padding:0 5px;" | |
3 | + = image_tag "move.png" , :class => [:handle, :left] | |
4 | + = image_tag gravatar_icon(issue.assignee.email), :class => "left", :width => 40, :style => "padding:0 5px;" | |
4 | 5 | = truncate issue.assignee.name, :lenght => 20 |
5 | 6 | %td ##{issue.id} |
6 | 7 | %td= html_escape issue.title | ... | ... |