diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-06-12 07:54:59 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-06-12 07:54:59 +0000 |
commit | 8d8e9ce2d2450e1e915763623e27f70135479b70 (patch) | |
tree | cd05c1ba479a184c19d8ed8a87152431b8ba0e80 /app | |
parent | 18675f32fecd88ae4a8d87b5d4b79f6493cb7547 (diff) | |
download | gitlab-ce-8d8e9ce2d2450e1e915763623e27f70135479b70.tar.gz |
Only show hover state on links and buttons
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index 58b458cd837..71b02002235 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -545,12 +545,13 @@ border: 1px solid $border-color; border-radius: 30px; background-color: $white-light; + } - &:hover { - background-color: $stage-hover-bg; - border: 1px solid $stage-hover-border; - color: $gl-text-color; - } + a.build-content:hover, + button.build-content:hover { + background-color: $stage-hover-bg; + border: 1px solid $stage-hover-border; + color: $gl-text-color; } |