I'm using bootstrap-select (from Silvio Moreto). I would like to change background-color and font color of list item. By default is :
And I would like something like :
I tried this, but nothing change :
.bootstrap-select.btn-group .dropdown-menu li:hover{
background-color: rgb(191, 82, 121);
color: white;
}
Any idea ?
I answered my own question :
.bootstrap-select.btn-group .dropdown-menu li a:hover {
color: whitesmoke !important;
background: #bf5279 !important;
}
Thanks ;-) !