mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
89 lines
1.8 KiB
SCSS
89 lines
1.8 KiB
SCSS
// DO NOT MODIFY
|
|
// TODO: remove when all select2 instances are gone
|
|
.select2-results .select2-highlighted {
|
|
background: $highlight-medium;
|
|
color: $primary;
|
|
}
|
|
|
|
.select2-drop {
|
|
.badge-category {
|
|
display: inline-block;
|
|
}
|
|
.topic-count {
|
|
font-size: $font-down-2;
|
|
color: $primary;
|
|
display: inline-block;
|
|
}
|
|
.highlighted .topic-count, .select2-highlighted .category-desc {
|
|
color: $primary;
|
|
}
|
|
.category-desc {
|
|
color: $primary;
|
|
font-size: $font-down-1;
|
|
line-height: 16px;
|
|
}
|
|
}
|
|
|
|
.select2-drop {
|
|
background: $secondary;
|
|
.d-icon {
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
}
|
|
}
|
|
|
|
.select2-search input {
|
|
background: image-url("select2.png") no-repeat 100% -22px, $secondary 0 0
|
|
}
|
|
|
|
.select2-container {
|
|
min-width: 200px;
|
|
|
|
&.select2-dropdown-open {
|
|
border: 0;
|
|
margin-bottom: 2px;
|
|
}
|
|
&.select2-container-active {
|
|
border-color: $tertiary;
|
|
}
|
|
&.select2-container-disabled .select2-chosen {
|
|
color: blend-primary-secondary(50%);
|
|
}
|
|
}
|
|
|
|
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
|
|
background: $secondary image-url("select2-spinner.gif") no-repeat 100% !important;
|
|
}
|
|
|
|
.select2-container-multi .select2-choices {
|
|
border: 1px solid $primary-medium;
|
|
}
|
|
|
|
.select2-container a.select2-choice {
|
|
background: $secondary;
|
|
border-radius: 3px;
|
|
border-color: $secondary;
|
|
color: $primary;
|
|
}
|
|
|
|
.select2-dropdown-open a.select2-choice {
|
|
box-shadow: none;
|
|
border-radius: 3px 3px 0 0;
|
|
border-color: $tertiary;
|
|
}
|
|
.select2-drop {
|
|
color: $primary;
|
|
}
|
|
.select2-drop-active {
|
|
border: 1px solid $tertiary;
|
|
border-top: 0;
|
|
}
|
|
|
|
.select2-container-active {
|
|
box-shadow: shadow("focus");
|
|
}
|
|
|
|
.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
|
|
background: $secondary;
|
|
color: $primary;
|
|
}
|