Commit 2004caa49dacb31fb61c08e70b88df3db3664e0d
1 parent
1547df79
Exists in
master
and in
1 other branch
Fixed button CSS [ci skip]
Showing
1 changed file
with
12 additions
and
3 deletions
Show diff stats
app/views/issue_trackers/_icons.css.erb
1 | /* Issue Tracker inactive, select, create and goto icons */ | 1 | /* Issue Tracker inactive, select, create and goto icons */ |
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 %> { background: url(/images/<%= tracker %>_inactive.png) no-repeat; } | ||
5 | -div.issue_tracker.nested label.r_on.<%= tracker %>, #action-bar a.<%= tracker %>_create { background: url(/images/<%= tracker %>_create.png) no-repeat; } | ||
6 | -#action-bar a.<%= tracker %>_goto { background: transparent url(/images/<%= tracker %>_goto.png) 6px 5px no-repeat; } | 4 | +div.issue_tracker.nested label.<%= tracker %> { |
5 | + background: url(/images/<%= tracker %>_inactive.png) no-repeat; | ||
6 | +} | ||
7 | +div.issue_tracker.nested label.r_on.<%= tracker %> { | ||
8 | + background: url(/images/<%= tracker %>_create.png) no-repeat; | ||
9 | +} | ||
10 | +#action-bar a.<%= tracker %>_create { | ||
11 | + background: transparent url(/images/<%= tracker %>_create.png) 6px 5px no-repeat; | ||
12 | +} | ||
13 | +#action-bar a.<%= tracker %>_goto { | ||
14 | + background: transparent url(/images/<%= tracker %>_goto.png) 6px 5px no-repeat; | ||
15 | +} | ||
7 | <% end %> | 16 | <% end %> |
8 | 17 |