diff options
author | Mike Greiling <mgreiling@gitlab.com> | 2017-06-06 08:28:39 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-06-06 08:28:39 +0000 |
commit | e245d7eebe747378f4158b30634ab0da4df59117 (patch) | |
tree | c710812e72c181c066728817ef06c90e836acee3 /app/assets/stylesheets/pages/projects.scss | |
parent | 17feb2faa71416b3459003eeb2a877f2c65dd3ef (diff) | |
download | gitlab-ce-e245d7eebe747378f4158b30634ab0da4df59117.tar.gz |
Resolve "When changing project visibility setting, change other dropdowns automatically"
Diffstat (limited to 'app/assets/stylesheets/pages/projects.scss')
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index 4719bf826dc..a2f781a6a6e 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -29,6 +29,20 @@ & > .form-group { padding-left: 0; } + + select option[disabled] { + display: none; + } + } + + select { + background: transparent; + transition: background 2s ease-out; + + &.highlight-changes { + background: $highlight-changes-color; + transition: none; + } } .help-block { |