2025-04-02 13:24:56 +05:30

26 lines
701 B
SCSS

@import '../../scss/_bootstrap-extended/functions';
@mixin bs-select-theme($background, $color: null) {
.bootstrap-select {
.dropdown-menu.inner a[aria-selected='true'] {
background: rgba($background, 0.16) !important;
color: $background !important;
}
.dropdown-menu {
li.active,
li:active {
small {
color: $background !important;
}
}
.dropdown-item.selected span::before {
color: $background !important;
}
}
// Fix: To add focus border, .bootstrap-select adding border but not able to update as we can not have the focus on div
.dropdown-toggle.show {
border-color: $background;
}
}
}