select2 / select2-bootstrap-theme

A Select2 v4 Theme for Bootstrap 3
https://select2.github.io/select2-bootstrap-theme/
MIT License
872 stars 499 forks source link

Selected text invisible; Ignores Bootstrap dark theme styling #85

Open mcandre opened 4 years ago

mcandre commented 4 years ago

This select2 theme ignores Bootstrap theme customizations such as background color, making the selected item text invisible.

solodyagin commented 4 years ago

I observe the same https://jsfiddle.net/2r3mp640/

FilipiBraga commented 4 years ago

Any solution?

iragm commented 3 years ago

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;
}