select2-bootstrap-theme icon indicating copy to clipboard operation
select2-bootstrap-theme copied to clipboard

Selected text invisible; Ignores Bootstrap dark theme styling

Open mcandre opened this issue 5 years ago • 3 comments

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

mcandre avatar Sep 20 '19 17:09 mcandre

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

solodyagin avatar Mar 12 '20 10:03 solodyagin

Any solution?

FilipiBraga avatar Apr 13 '20 19:04 FilipiBraga

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

iragm avatar Oct 10 '20 17:10 iragm