how to change the color of disabled controls
Ask by Mark Devid
Updated 23 Aug 2014
Use the following CSS2 selector:
input[disabled=disabled] {/* your style */
color: #fff !important;
}