BUG 14276 Disabled listbox - selected options not readable SOLVED

- In Chrome the default color for disabled options was the same that the background
- Change the defaukt color for the disabled selected options to black
This commit is contained in:
Julio Cesar Laura
2014-05-08 15:51:52 -04:00
parent 5c3800bcaa
commit 47e03926cd
2 changed files with 18 additions and 0 deletions

View File

@@ -633,6 +633,15 @@ form.formDefault select
font:normal 11px sans-serif,MiscFixed;
color:#000;
}
form.formDefault select[disabled] {
color: #000;
}
form.formDefault select[disabled] > option {
color: #000;
}
form.formDefault select[disabled] > option:checked {
color: #000;
}
form.formDefault table
{
font:normal 11px sans-serif,MiscFixed;

View File

@@ -747,6 +747,15 @@ form.formDefault select {
font: normal 11px "Open Sans", Tahoma, sans-serif, MiscFixed;
color: #000;
}
form.formDefault select[disabled] {
color: #000;
}
form.formDefault select[disabled] > option {
color: #000;
}
form.formDefault select[disabled] > option:checked {
color: #000;
}
form.formDefault table {
font: normal 11px "Open Sans", Tahoma, sans-serif, MiscFixed;
color: #666666;