Commit 74e129684e5ec127f981def982032624f9e40efc

Authored by Nathan Broadbent
1 parent 72755581
Exists in master and in 1 other branch production

Fixed image urls for issue tracker icons

app/assets/stylesheets/issue_tracker_icons.css.erb
... ... @@ -2,16 +2,15 @@
2 2 <% trackers = IssueTracker.subclasses.map{|t| t::Label } << 'none' %>
3 3 <% trackers.each do |tracker| %>
4 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 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 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 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 16 <% end %>
17   -
... ...