I am experiencing difficulties to set the same text color for disabled input and select elements.
Example:
input:disabled,
select:disabled,
option:disabled {
color: #b8b8b8;
}
<select disabled style="width: 50pt;">
<option>123</option>
</select><br>
<input disabled value="123" style="width: 45pt;">
Check this fiddle ...
How can be this fixed to get the same look, the same color being displayed?
