Override disable style for combobox

Hi.
I have problem with change color of disabled combo box.

I can’t change font/back color of disabled combo box. I try following styles:
[font=Courier New]

.v-filterselect.v-disabled {
background: #0c2051;
color: darkblue;
background-color: yellow;
color: yellow;
}

.v-filterselect-input.v-disabled {
background-color: yellow;
color: yellow;
}
[/font]

No success. How to change color (and background) of disabled combo box?

Hi,

the ComboBox actually has a background image so you can’t change the background color that easily. For the text color try this:

.v-filterselect.v-disabled .v-filterselect-input {
    color: yellow;
}