CSS : Dropdown background color

0
Hi Team,   I am trying to change the color of dropdown selector which is currently blue. How can i achieve this?       Regards, Swathi
asked
4 answers
3

Swathi,

 

Are you styling with CSS or SASS? If you use SASS, you can create a class that will target the option divs and change the hover color of the drop down. Somewhere along the lines of 

// Hover/Focus state
.dropdown-menu > li > a {
       &:hover, 
       &:focus {

       color: $dropdown-link-hover-color;

       }
}


 

answered
1

Hi Swathi,

 

There is also a new widget in the AppStore that provides more styling options for dropdown selector elements:

https://appstore.home.mendix.com/link/app/41730/Mendix/DropdownSelector

 

Kind regards,

Alexander

 

answered
1

Hi Swetha,

Please do check this question is asked earlier itself and you can find the answer.

https://community.mendix.com/link/questions/101062

 

answered
0

For anyone who might end up here, please refer to my answer here,

https://community.mendix.com/link/questions/101062

answered