1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(UI): BaseSelect supports option groups

This commit is contained in:
Giulio Ganci
2022-05-09 17:31:58 +02:00
parent 302c66457d
commit 1869e6a148
4 changed files with 102 additions and 34 deletions

View File

@ -318,6 +318,7 @@ option:checked {
}
.select__list-wrapper {
z-index: 401 !important;
border: 1px solid transparent;
border-radius: $border-radius;
box-shadow: 0px 8px 17px 0px rgba(0, 0, 0, 0.2), 0px 6px 20px 0px rgba(0, 0, 0, 0.19);

View File

@ -126,6 +126,11 @@
border-color: $bg-color-gray;
background-color: $bg-color-light-dark;
}
&__group {
background: rgba($bg-color-gray, 0.65);
color: rgba($bg-color-light-gray, 0.7);
}
}
.form-input[readonly] {

View File

@ -24,6 +24,11 @@
background-color: $body-bg;
}
&__group {
background: $bg-color-light-gray;
color: $unknown-color;
}
&__option--highlight {
color: $light-color;
}