mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
58905e1659
Thanks to @PieterWigboldus for originally reporting in #814 and fixing in #815. Co-authored-by: Jeff Sagal <sagalbot@gmail.com>
22 lines
462 B
SCSS
22 lines
462 B
SCSS
/* List Items */
|
|
.vs__dropdown-option {
|
|
line-height: 1.42857143; /* Normalize line height */
|
|
display: block;
|
|
padding: 3px 20px;
|
|
clear: both;
|
|
color: #333; /* Overrides most CSS frameworks */
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.vs__dropdown-option--highlight {
|
|
background: $vs-state-active-bg;
|
|
color: $vs-state-active-color;
|
|
}
|
|
|
|
.vs__dropdown-option--disabled {
|
|
background: inherit;
|
|
color: $vs-state-disabled-color;
|
|
cursor: inherit;
|
|
}
|