mirror of
https://github.com/apache/superset.git
synced 2026-06-03 14:49:23 +00:00
35 lines
796 B
Plaintext
35 lines
796 B
Plaintext
@import "~react-select/less/select.less";
|
|
@select-primary-color: black;
|
|
|
|
// imports
|
|
@import "~react-select/less/control.less";
|
|
@import "~react-select/less/menu.less";
|
|
@import "~react-select/less/mixins.less";
|
|
@import "~react-select/less/multi.less";
|
|
@import "~react-select/less/spinner.less";
|
|
|
|
.VirtualSelectGrid {
|
|
z-index: 1;
|
|
}
|
|
.VirtualizedSelectOption {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
padding: 0 .5rem;
|
|
}
|
|
.VirtualizedSelectFocusedOption {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
.VirtualizedSelectFocusedOption:hover {
|
|
cursor: pointer;
|
|
}
|
|
.VirtualizedSelectDisabledOption {
|
|
opacity: 0.5;
|
|
}
|
|
.VirtualizedSelectSelectedOption {
|
|
font-weight: bold;
|
|
}
|