Commit ea696805a7a82ec6a70da1dd7d5bc010f035ea26
1 parent
3b34084b
Exists in
spb-stable
and in
2 other branches
Fix css rules conflict between .dark & a.dark classes
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/generic/typography.scss
app/views/projects/milestones/show.html.haml
... | ... | @@ -100,7 +100,7 @@ |
100 | 100 | %ul.bordered-list |
101 | 101 | - @users.each do |user| |
102 | 102 | %li |
103 | - = link_to user, title: user.name, class: "dark" do | |
103 | + = link_to user, title: user.name, class: "darken" do | |
104 | 104 | = image_tag avatar_icon(user.email, 32), class: "avatar s32" |
105 | 105 | %strong= truncate(user.name, lenght: 40) |
106 | 106 | %br | ... | ... |