Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwinh <winnie@gitlab.com>2017-06-15 15:13:48 +0300
committerwinh <winnie@gitlab.com>2017-06-19 15:33:51 +0300
commitc81ff67b0eb20fb4b93e82cea7f849d090686ffd (patch)
treee077bff1a69c98aa0cc67fe76bbefce30c79de51
parent906dfb540976190cb3398bb19e44d6ab43c9592b (diff)
Make pipeline dropdown hover style consistent
-rw-r--r--app/assets/stylesheets/pages/pipelines.scss23
1 files changed, 13 insertions, 10 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss
index a85ba3a5955..d9b298bbed4 100644
--- a/app/assets/stylesheets/pages/pipelines.scss
+++ b/app/assets/stylesheets/pages/pipelines.scss
@@ -670,10 +670,6 @@
width: 195px;
max-width: 195px;
- li {
- padding: 2px 3px;
- }
-
.scrollable-menu {
padding: 0;
max-height: 245px;
@@ -690,7 +686,7 @@
padding: 2px 0 0 5px;
cursor: pointer;
float: right;
- margin: -26px 9px 0 0;
+ margin: -30px 9px 0 0;
font-size: 12px;
background-color: $white-light;
@@ -717,13 +713,22 @@
// link to the build
.mini-pipeline-graph-dropdown-item {
- padding: 3px 7px 4px;
clear: both;
font-weight: normal;
line-height: 1.428571429;
white-space: nowrap;
- margin: 0 5px;
- border-radius: 3px;
+
+ &:hover,
+ &:focus {
+ .ci-status-icon svg path:nth-child(1) {
+ fill: $dropdown-hover-bg;
+ }
+
+ .ci-build-text,
+ .ci-status-text {
+ color: inherit;
+ }
+ }
// build name
.ci-build-text,
@@ -761,8 +766,6 @@
&:focus {
outline: none;
text-decoration: none;
- color: $gl-text-color;
- background-color: $stage-hover-bg;
}
}
}