Commit 74e129684e5ec127f981def982032624f9e40efc
1 parent
72755581
Exists in
master
and in
1 other branch
Fixed image urls for issue tracker icons
Showing
1 changed file
with
4 additions
and
5 deletions
Show diff stats
app/assets/stylesheets/issue_tracker_icons.css.erb
@@ -2,16 +2,15 @@ | @@ -2,16 +2,15 @@ | ||
2 | <% trackers = IssueTracker.subclasses.map{|t| t::Label } << 'none' %> | 2 | <% trackers = IssueTracker.subclasses.map{|t| t::Label } << 'none' %> |
3 | <% trackers.each do |tracker| %> | 3 | <% trackers.each do |tracker| %> |
4 | div.issue_tracker.nested label.<%= tracker %> { | 4 | div.issue_tracker.nested label.<%= tracker %> { |
5 | - background: url(/images/<%= tracker %>_inactive.png) no-repeat; | 5 | + background: url(/assets/<%= tracker %>_inactive.png) no-repeat; |
6 | } | 6 | } |
7 | div.issue_tracker.nested label.r_on.<%= tracker %> { | 7 | div.issue_tracker.nested label.r_on.<%= tracker %> { |
8 | - background: url(/images/<%= tracker %>_create.png) no-repeat; | 8 | + background: url(/assets/<%= tracker %>_create.png) no-repeat; |
9 | } | 9 | } |
10 | #action-bar a.<%= tracker %>_create { | 10 | #action-bar a.<%= tracker %>_create { |
11 | - background: transparent url(/images/<%= tracker %>_create.png) 6px 5px no-repeat; | 11 | + background: transparent url(/assets/<%= tracker %>_create.png) 6px 5px no-repeat; |
12 | } | 12 | } |
13 | #action-bar a.<%= tracker %>_goto { | 13 | #action-bar a.<%= tracker %>_goto { |
14 | - background: transparent url(/images/<%= tracker %>_goto.png) 6px 5px no-repeat; | 14 | + background: transparent url(/assets/<%= tracker %>_goto.png) 6px 5px no-repeat; |
15 | } | 15 | } |
16 | <% end %> | 16 | <% end %> |
17 | - |