diff options
author | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-08-17 17:45:52 -0500 |
---|---|---|
committer | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-08-19 09:21:31 -0500 |
commit | 71d65467a859af34fb6f1ed251679dfa6e8631ec (patch) | |
tree | cce634d6c141df25ceff1281333a1160192e1dd2 | |
parent | e5840a4d9b6d696f26cd1956c5aace2507f3abf0 (diff) | |
download | gitlab-ce-71d65467a859af34fb6f1ed251679dfa6e8631ec.tar.gz |
Fix alignment of icon on commits page
-rw-r--r-- | app/assets/stylesheets/pages/commit.scss | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/app/assets/stylesheets/pages/commit.scss b/app/assets/stylesheets/pages/commit.scss index fe8a8025038..53ec0002afe 100644 --- a/app/assets/stylesheets/pages/commit.scss +++ b/app/assets/stylesheets/pages/commit.scss @@ -68,22 +68,11 @@ } .ci-status-link { - margin-left: 2px; svg { - vertical-align: middle; - } - - .ci-status-label { - display: inline-block; - } - - &:hover { - text-decoration: none; - - .ci-status-label { - text-decoration: underline; - } + position: relative; + top: 2px; + margin: 0 2px 0 3px; } } } |