fixed select styling if above

added group styling
changed arrow color
This commit is contained in:
Miodec 2022-02-10 12:27:19 +01:00
parent fc28e74307
commit cec18e72d9

View file

@ -110,7 +110,8 @@ input[type="number"] {
color: var(--sub-color);
}
.select2-container--open .select2-dropdown--below {
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
border-color: rgba(0, 0, 0, 0.1);
background: var(--bg-color);
color: var(--sub-color);
@ -157,14 +158,14 @@ input[type="number"] {
.select2-selection--single
.select2-selection__arrow
b {
border-color: var(--sub-color) transparent transparent transparent;
border-color: var(--text-color) transparent transparent transparent;
}
.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow
b {
border-color: var(--sub-color) transparent;
border-color: var(--text-color) transparent;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
@ -173,3 +174,7 @@ input[type="number"] {
color: var(--text-color);
border-radius: var(--roundness);
}
.select2-container--default .select2-results__group {
color: var(--text-color);
}