diff options
author | Gregoire Daussin <gregoire.daussin@caudalie.com> | 2014-05-09 17:58:23 +0200 |
---|---|---|
committer | Gregoire Daussin <gregoire.daussin@caudalie.com> | 2014-05-09 17:58:23 +0200 |
commit | ea696805a7a82ec6a70da1dd7d5bc010f035ea26 (patch) | |
tree | 4f1ca277cfa1bf017d185bb276ecb4251a51b227 | |
parent | 3b34084bdeadecdceb0a86e2820dd7c5985099f6 (diff) | |
download | gitlab-ce-ea696805a7a82ec6a70da1dd7d5bc010f035ea26.tar.gz |
Fix css rules conflict between .dark & a.dark classes
-rw-r--r-- | app/assets/stylesheets/generic/typography.scss | 2 | ||||
-rw-r--r-- | app/views/projects/milestones/show.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/generic/typography.scss b/app/assets/stylesheets/generic/typography.scss index a4419551738..8cc72d7f07a 100644 --- a/app/assets/stylesheets/generic/typography.scss +++ b/app/assets/stylesheets/generic/typography.scss @@ -47,7 +47,7 @@ a { text-decoration: underline; } - &.dark { + &.darken { color: $style_color; } diff --git a/app/views/projects/milestones/show.html.haml b/app/views/projects/milestones/show.html.haml index 06cf9946784..5c5df46d33d 100644 --- a/app/views/projects/milestones/show.html.haml +++ b/app/views/projects/milestones/show.html.haml @@ -100,7 +100,7 @@ %ul.bordered-list - @users.each do |user| %li - = link_to user, title: user.name, class: "dark" do + = link_to user, title: user.name, class: "darken" do = image_tag avatar_icon(user.email, 32), class: "avatar s32" %strong= truncate(user.name, lenght: 40) %br |