diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-12-17 13:46:16 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-12-17 13:46:16 +0100 |
commit | 27fd32613dac9c093d538e576131e7fda3f7d8e3 (patch) | |
tree | 44936da29e8517876979346124a7d1cd5a3e0537 | |
parent | dc68a91c444d3da85bbcb87e4ef4e841be9f3887 (diff) | |
download | gitlab-ce-27fd32613dac9c093d538e576131e7fda3f7d8e3.tar.gz |
Add `ci-manual` status CSS with darkest gray color
-rw-r--r-- | app/assets/stylesheets/pages/status.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/status.scss b/app/assets/stylesheets/pages/status.scss index f3b0608e545..637df7e349e 100644 --- a/app/assets/stylesheets/pages/status.scss +++ b/app/assets/stylesheets/pages/status.scss @@ -113,6 +113,19 @@ fill: $gl-gray-light; } } + + &.ci-manual { + color: $gl-gray-dark; + border-color: $gl-gray-dark; + + &:not(span):hover { + background-color: rgba( $gl-gray-dark, .07); + } + + svg { + fill: $gl-gray-dark; + } + } } } |