/* style an input that is disable and readonly */

form input:not([type=submit])[disabled][readonly],
form select[disabled][readonly] {
    background-color: #EEEEEE;
    color: #666;
    cursor: not-allowed;
}