I'm writing in ASP.NET (which may be irrelevant in the end). I've already addressed styling the gray on gray default style of disabled/readonly TextBoxes (HTML INPUT), now I'm trying to tackle DropDownLists (HTML SELECT).
I've tried these--which work fine for TextBoxes--but none work for dropdowns:
.ReadableReadonly, select[disabled], input[disabled], select[readonly], input[readonly]
{
background-color:white;
color:Black;
}
*[readonly]
{
background-color:white;
color:Black;
}
Is there any way to get a disabled dropdown to display in anything but gray text? I'm targeting MSIE 6,7,8 for an intranet only application and I didn't get to pick the browser.