3
0

Add active class to c-input-select dropdown option

This commit is contained in:
Jože Fortun 2024-01-22 16:11:15 +01:00 committed by Mumbi Francis
parent 19d3c8b964
commit 2be91002e0

View File

@ -259,6 +259,18 @@ export default {
.vs__dropdown-menu {
z-index: 1090;
.vs__dropdown-option {
&.vs__dropdown-option--selected {
background: var(--vs-dropdown-option--active-bg);
color: var(--vs-dropdown-option--active-color);
}
&:active {
color: var(--white);
background-color: var(--primary);
}
}
}
.c-input-sm {