How to Change the Combobox Background Color when DISABLED

Hi, how can I change the appearance (backgound color) of the combobox JUST when it is DISABLED.

I am using Valo Theme

Thank you

Hi Valder,

you can override the disabled styles in your
mythemes.scss
(
location
) file:

.v-filterselect.v-disabled{ @include valo-combobox-style($background-color: #006b02); } For more valo specific scss mixin take a look at the
Valo-Docs
.

regards

Johannes

Hi Johannes,

We used this and worked fine:

.v-disabled .v-filterselect-input {
background: #FFFFD3 !important;
}

Tks
Valder