Hello;
Is it possible to customize the color of the writing in the multi dropdow plugin?
I selected the color to be white but it only changes when I hover the text, otherwise it is black.
It is black by default?
I used this css i found somewhere, don t remember where so cannot quote
<style>
.select2-results__option{
color: #ffffff;
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: #1EAF7E;
color: black;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: #1EAF7E;
color: black;
}
.ui-corner-all {
border-radius: 99px;
}
.select2-dropdown {
border-width : 0px !important;
border-color : #000000 ;
border-style: none;
}
</style>
3 Likes
Thank you so much!
I have no idea what is wrote there, but i know that works.