diff options
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index 697887dcbe5..0b318b61079 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -623,10 +623,83 @@ } } + .dropdown-counter-badge { + float: right; + clear: right; + color: $border-color; + font-weight: 100; + font-size: 15px; + margin-right: 2px; + } + + .grouped-pipeline-dropdown { + padding: 0; + width: 191px; + left: auto; + right: -195px; + top: -4px; + box-shadow: 0 1px 5px $black-transparent; + + a { + display: inline-block; + + &:hover { + background-color: $stage-hover-bg; + } + } + + ul { + max-height: 245px; + overflow: auto; + margin: 5px 0; + + li { + margin: 0 5px; + padding-left: 0; + padding-bottom: 0; + margin-bottom: 0; + } + } + + .dropdown-build { + color: $gl-text-color-light; + position: relative; + + .build-content { + width: 100%; + } + + .ci-action-icon-container { + font-size: 11px; + position: absolute; + right: 5px; + top: 5px; + padding: 0; + + i { + width: 25px; + height: 25px; + font-size: 11px; + margin-top: 0; + + &::before { + top: 1px; + left: 1px; + } + } + } + + &:hover { + background-color: $stage-hover-bg; + border-radius: 3px; + color: $gl-text-color; + } +======= ul { max-height: 245px; overflow: auto; margin: 3px 0; +>>>>>>> master li { padding-top: 2px; |