diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-03-07 14:54:10 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-03-07 14:54:10 +0000 |
commit | 61cfe6dea6f2d6725771a0f341e70975cf91c7f7 (patch) | |
tree | 4acb5aebfcd76afdf3f8f01cfcec13ab88013d11 /app/assets | |
parent | f636854c9065a5048e5fff4a9f5176a01f47a58f (diff) | |
parent | 6cd9a7e2f5f7cd1f1a38e407358f822b0e7d6dda (diff) | |
download | gitlab-ce-61cfe6dea6f2d6725771a0f341e70975cf91c7f7.tar.gz |
Merge branch '28559-remove-active-underline' into 'master'
don't underline clicked links in Notes header
Closes #28559
See merge request !9753
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/pages/notes.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss index 00f5f2645b3..dc79de19d48 100644 --- a/app/assets/stylesheets/pages/notes.scss +++ b/app/assets/stylesheets/pages/notes.scss @@ -331,6 +331,10 @@ ul.notes { &:hover { color: $gl-link-color; + } + + &:focus, + &:hover { text-decoration: none; } } |