summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2015-07-28 22:12:35 +0000
committerRobert Speicher <robert@gitlab.com>2015-07-28 22:12:35 +0000
commit40c32b26af6622c726b8b23b39a1e0d945647256 (patch)
treedaf96ce4c412b0403c6bbb77a1e7fffc11b24e4b /app
parent0f77d4095e39acb6ac35135194fb80245b35cba0 (diff)
parent12a913a93c339a3dc325cbf53ae07eff902d937c (diff)
downloadgitlab-ce-40c32b26af6622c726b8b23b39a1e0d945647256.tar.gz
Merge branch 'rs-issue-2107' into 'master'
Make `hr`s more visible in note bodies Closes #2107 See merge request !1054
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/pages/notes.scss4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss
index 4da65b28743..85c828ec1ad 100644
--- a/app/assets/stylesheets/pages/notes.scss
+++ b/app/assets/stylesheets/pages/notes.scss
@@ -37,7 +37,7 @@ ul.notes {
font-size: 13px;
a {
- @extend .cgray;
+ @extend .cgray;
&:hover {
text-decoration: underline;
@@ -105,6 +105,8 @@ ul.notes {
}
hr {
+ // Darken 'whitesmoke' a bit to make it more visible in note bodies
+ border-color: darken(#F5F5F5, 8%);
margin: 10px 0;
}
}