diff options
author | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-07-08 14:09:30 -0500 |
---|---|---|
committer | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-07-12 14:50:57 -0500 |
commit | 191687a10ce275f98e287876ddf7e69969790e71 (patch) | |
tree | e1c5675e75c448ede95dbc3069ffd16eda9037da /app/assets/stylesheets/pages | |
parent | 1f67cc4a559e72bedf06f169343c504fcfdd3d49 (diff) | |
download | gitlab-ce-191687a10ce275f98e287876ddf7e69969790e71.tar.gz |
Add empty deploy dropdown button
Diffstat (limited to 'app/assets/stylesheets/pages')
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index fb5840a4f67..c73755ee920 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -90,12 +90,35 @@ .pipeline-actions { .btn { + margin: 0; + } + + .dropdown-toggle, + .dropdown-menu { color: $table-text-gray; + + .fa { + color: $table-text-gray; + margin-right: 6px; + font-size: 14px; + } } .btn-remove { color: $white-light; } + + .btn-group { + &.open { + .btn-default { + background-color: $white-normal; + border-color: $border-white-normal; + + &:hover { + } + } + } + } } .build-link { @@ -104,4 +127,8 @@ color: $gl-dark-link-color; } } + + .btn-group.open .dropdown-toggle { + box-shadow: none; + } } |