diff options
author | Simon Knox <psimyn@gmail.com> | 2017-11-29 08:53:26 +1100 |
---|---|---|
committer | Simon Knox <psimyn@gmail.com> | 2017-11-29 08:53:26 +1100 |
commit | 5d3b6ed8619f2301dcad0ceba00d151863f4081e (patch) | |
tree | 22755b9063b6d454169385563cef162de39a5e23 /app | |
parent | f1d1cea8b014a756c2df9b212dbf0db747c659c6 (diff) | |
download | gitlab-ce-5d3b6ed8619f2301dcad0ceba00d151863f4081e.tar.gz |
fix icon colors in commit list40629-icon-styles
this is not a great way to do this. But using currentColor for these
means we are competing with this selector:
ul.content-list li a
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/icons.scss | 42 |
1 files changed, 14 insertions, 28 deletions
diff --git a/app/assets/stylesheets/framework/icons.scss b/app/assets/stylesheets/framework/icons.scss index 9e45ed52163..e2084e8f85f 100644 --- a/app/assets/stylesheets/framework/icons.scss +++ b/app/assets/stylesheets/framework/icons.scss @@ -1,62 +1,48 @@ .ci-status-icon-success, .ci-status-icon-passed { - &, - &:hover, - &:focus { - color: $green-500; + svg { + fill: $green-500; } } .ci-status-icon-failed { - &, - &:hover, - &:focus { - color: $gl-danger; + svg { + fill: $gl-danger; } } .ci-status-icon-pending, .ci-status-icon-failed_with_warnings, .ci-status-icon-success_with_warnings { - &, - &:hover, - &:focus { - color: $orange-500; + svg { + fill: $orange-500; } } .ci-status-icon-running { - &, - &:hover, - &:focus { - color: $blue-400; + svg { + fill: $blue-400; } } .ci-status-icon-canceled, .ci-status-icon-disabled, .ci-status-icon-not-found { - &, - &:hover, - &:focus { - color: $gl-text-color; + svg { + fill: $gl-text-color; } } .ci-status-icon-created, .ci-status-icon-skipped { - &, - &:hover, - &:focus { - color: $gray-darkest; + svg { + fill: $gray-darkest; } } .ci-status-icon-manual { - &, - &:hover, - &:focus { - color: $gl-text-color; + svg { + fill: $gl-text-color; } } |