online-judge/resources/select2-dmoj.scss

111 lines
2.8 KiB
SCSS

@import "vars";
/* Hack to make dropdown background follow theming */
.select2-dropdown {
background-color: $color_primary0 !important;
border: 1px solid $color_primary33 !important;
color: $color_primary100 !important;
}
.select2-container--dmoj {
@import "select2/single";
@import "select2/multiple";
&.select2-container--open.select2-container--above {
.select2-selection--single, .select2-selection--multiple {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
&.select2-container--open.select2-container--below {
.select2-selection--single, .select2-selection--multiple {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
.select2-search--dropdown {
.select2-search__field {
border: 1px solid $color_primary33;
background-color: $color_select2_search_dropdown;
color: $color_primary100;
}
}
.select2-search--inline {
.select2-search__field {
background: transparent;
border: none;
outline: 0;
box-shadow: none;
color: $color_primary100;
-webkit-appearance: textfield;
}
}
.select2-results > .select2-results__options {
max-height: 200px;
overflow-y: auto;
color: $color_primary100;
}
.select2-results__option {
&[role=group] {
padding: 0;
}
&[aria-disabled=true] {
color: $color_primary50;
}
&[aria-selected=true] {
background-color: $color_primary25;
}
.select2-results__option {
padding-left: 1em;
.select2-results__group {
padding-left: 0;
}
.select2-results__option {
margin-left: -1em;
padding-left: 2em;
.select2-results__option {
margin-left: -2em;
padding-left: 3em;
.select2-results__option {
margin-left: -3em;
padding-left: 4em;
.select2-results__option {
margin-left: -4em;
padding-left: 5em;
.select2-results__option {
margin-left: -5em;
padding-left: 6em;
}
}
}
}
}
}
}
.select2-results__option--highlighted[aria-selected] {
background-color: $highlight_blue;
color: white;
}
.select2-results__group {
cursor: default;
display: block;
padding: 6px;
}
}