diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-01-05 10:47:49 -0600 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-01-05 10:47:49 -0600 |
commit | 5ab5c7552f1c73e06b565e4185d4b38315ed3f18 (patch) | |
tree | 09a8f134796a5897607aca1704e6c255af2095f1 /app/assets | |
parent | 043cc8196e41a3b44301f1ae093bb5cd6b4ebc82 (diff) | |
download | gitlab-ce-5ab5c7552f1c73e06b565e4185d4b38315ed3f18.tar.gz |
Fix dropdown icon alignment
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index 6061e53f386..ed53ad94021 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -339,7 +339,8 @@ white-space: nowrap; transition: max-height 0.3s, padding 0.3s; - ul { + .stage-column-list, + .builds-container > ul { padding: 0; } @@ -640,17 +641,6 @@ top: 8px; } -// Dropdown in the big pipeline graph -.big-pipeline-graph-dropdown-menu { - padding: 0; - width: 195px; - min-width: 195px; - left: auto; - right: -195px; - top: -4px; - box-shadow: 0 1px 5px $black-transparent; -} - .ci-status-text { max-width: 110px; white-space: nowrap; @@ -869,6 +859,22 @@ } } +// Dropdown in the big pipeline graph +.big-pipeline-graph-dropdown-menu { + width: 195px; + min-width: 195px; + left: auto; + right: -195px; + top: -4px; + box-shadow: 0 1px 5px $black-transparent; + + .mini-pipeline-graph-dropdown-item { + .ci-status-icon { + top: -1px; + } + } +} + /** * Top arrow in the dropdown in the mini pipeline graph */ |