The code below changes the background color of the variants dropdown menu
.product-form__controls-group select option {
background-color: green !important;
}
But if I want to change the hover color and try adding “:hover” to option as shown below it does nothing… Why?
What am I missing? How does one change the highlight color in this dropdown menu?
/* THIS DOESN'T WORK */
.product-form__controls-group select option:hover {
background-color: #a1a2ad !important;
}
