Skip to content
Snippets Groups Projects
Unverified Commit 78d1e768 authored by Julius Haertl's avatar Julius Haertl Committed by Julius Härtl
Browse files

SCSS colors in multiselect.scss


Signed-off-by: default avatarJulius Haertl <jus@bitgrid.net>
parent 128c271c
No related branches found
No related tags found
No related merge requests found
...@@ -17,27 +17,27 @@ ...@@ -17,27 +17,27 @@
*/ */
ul.multiselectoptions { ul.multiselectoptions {
background-color: #fff; background-color: $color-main-background;
border: 1px solid #ddd; border: 1px solid $color-primary;
border-top: none; border-top: none;
box-shadow: 0 1px 1px #ddd; box-shadow: 0 1px 10px $color-box-shadow;
padding-top: 8px; padding-top: 8px;
position: absolute; position: absolute;
max-height: 20em; max-height: 20em;
overflow-y: auto; overflow-y: auto;
z-index: 49; z-index: 49;
&.down { &.down {
border-bottom-left-radius: 8px; border-bottom-left-radius: 3px;
border-bottom-right-radius: 8px; border-bottom-right-radius: 3px;
width: 100%; width: 100%;
/* do not cut off group names */ /* do not cut off group names */
-webkit-box-shadow: 0px 0px 20px rgba(29, 45, 68, 0.4); -webkit-box-shadow: 0 1px 10px $color-box-shadow;
-moz-box-shadow: 0px 0px 20px rgba(29, 45, 68, 0.4); -moz-box-shadow: 0 1px 10px $color-box-shadow;
box-shadow: 0px 0px 20px rgba(29, 45, 68, 0.4); box-shadow: 0 1px 10px $color-box-shadow;
} }
&.up { &.up {
border-top-left-radius: 8px; border-top-left-radius: 3px;
border-top-right-radius: 8px; border-top-right-radius: 3px;
} }
> li { > li {
overflow: hidden; overflow: hidden;
...@@ -96,7 +96,7 @@ select.multiselect { ...@@ -96,7 +96,7 @@ select.multiselect {
/* To make a select look like a multiselect until it's initialized */ /* To make a select look like a multiselect until it's initialized */
div.multiselect { div.multiselect {
&.active { &.active {
background-color: #fff; background-color: $color-main-background;
position: relative; position: relative;
z-index: 50; z-index: 50;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment