mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
76 lines
1.9 KiB
SCSS
76 lines
1.9 KiB
SCSS
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
|
background-color: $color-primary-light;
|
|
color: $color-gray-dark;
|
|
}
|
|
|
|
.select2-container--default .select2-search--inline .select2-search__field {
|
|
background: transparent none repeat scroll 0% 0%;
|
|
border: medium none;
|
|
outline: 0px none;
|
|
box-shadow: none;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.renderable > .select2-container {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.select2-container .select2-selection--single {
|
|
height: auto;
|
|
min-height: 28px;
|
|
& .select2-selection__rendered{
|
|
line-height: inherit;
|
|
padding: $input-padding-y $input-padding-x;
|
|
padding-right: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
|
top: 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
.select2-container--default.select2-container--focus {
|
|
& .select2-selection--single,
|
|
& .select2-selection--multiple {
|
|
border-color: $input-focus-border-color !important;
|
|
outline: 0;
|
|
-webkit-box-shadow: $input-focus-box-shadow;
|
|
box-shadow: $input-focus-box-shadow;
|
|
}
|
|
}
|
|
|
|
|
|
.select2-results span.wcTabIcon {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.select2-selection {
|
|
color: $input-color;
|
|
background-color: $input-bg;
|
|
background-clip: padding-box;
|
|
border: $input-border-width solid $input-border-color !important;
|
|
}
|
|
|
|
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
background-color: $input-disabled-bg !important;
|
|
opacity: 1;
|
|
color: $text-muted;
|
|
}
|
|
|
|
.select2-container--default.select2-container--disabled .select2-selection--single {
|
|
background-color: $input-disabled-bg !important;
|
|
opacity: 1;
|
|
color: $text-muted;
|
|
}
|
|
|
|
.select2-container--default.select2-container--disabled .select2-selection__rendered {
|
|
color: $text-muted;
|
|
}
|
|
|
|
.select2-select-all-adapter-container {
|
|
padding: 3px 0px;
|
|
background-color: $color-primary;
|
|
margin-bottom: 3px;
|
|
}
|