is it feasible to change the background color of dropdown?

0
Hi, We are using Mendix dropdown  and we want to change the background color of the dropdown According to our UI standard but We are not able to do it, is it anyway? The selected item background colour is default one.  
asked
1 answers
0

Add this to main.scss (choose your own colour):

select.form-control {

background-color: yellow !important;

}

answered