diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-04 15:08:09 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-04 15:08:09 +0000 |
commit | d3fc3be040a4fed2328e23ef28696dd8bd8238b4 (patch) | |
tree | f1874ea5e6e3c50c6a3c2ca2900af4ae73a53119 /app/assets/stylesheets | |
parent | c6c7437861bff9572747674095c4dfbdfbea4988 (diff) | |
download | gitlab-ce-d3fc3be040a4fed2328e23ef28696dd8bd8238b4.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/framework/dropdowns.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/dropdowns.scss b/app/assets/stylesheets/framework/dropdowns.scss index efcbd63626d..1804f70b37c 100644 --- a/app/assets/stylesheets/framework/dropdowns.scss +++ b/app/assets/stylesheets/framework/dropdowns.scss @@ -1019,3 +1019,54 @@ header.header-content .dropdown-menu.frequent-items-dropdown-menu { opacity: 0; } } + +.labels-select-wrapper { + .labels-select-dropdown-contents { + min-height: $dropdown-min-height; + max-height: 330px; + background-color: $white-light; + border: 1px solid $border-color; + box-shadow: 0 2px 4px $dropdown-shadow-color; + z-index: 2; + + .dropdown-content { + height: 135px; + } + } + + .labels-fetch-loading { + top: 0; + left: 0; + opacity: 0.5; + background-color: $white-light; + z-index: 1; + } + + .dropdown-header-button { + .gl-icon { + color: $dropdown-title-btn-color; + + &:hover { + color: $gl-gray-400; + } + } + } + + .label-item { + padding: 8px 20px; + + &:hover, + &.is-focused { + @include dropdown-item-hover; + + text-decoration: none; + } + } + + .color-input-container { + .dropdown-label-color-preview { + border: 1px solid $gray-200; + border-right: 0; + } + } +} |