select2-bootstrap-theme
select2-bootstrap-theme copied to clipboard
Selected text invisible; Ignores Bootstrap dark theme styling
This select2 theme ignores Bootstrap theme customizations such as background color, making the selected item text invisible.
I observe the same https://jsfiddle.net/2r3mp640/
Any solution?
I ran across this and just needed to add a bit of css:
.select2-results {
color: #444 !important;
}
.select2-results__option[aria-selected="true"] {
background-color: rgb(231, 76, 60, .8) !important;
}