Adjust colors for disabled input elements

This commit is contained in:
Ryan Huffman 2015-02-26 14:23:25 -08:00
parent 3c5f11e6ed
commit ecc003c5e1

View file

@ -189,6 +189,11 @@ input, textarea {
font-size: 7.5pt; font-size: 7.5pt;
} }
input:disabled, textarea:disabled {
background-color: rgb(102, 102, 102);
color: rgb(160, 160, 160);
}
#properties-list input[type=button] { #properties-list input[type=button] {
cursor: pointer; cursor: pointer;
background-color: rgb(51, 102, 102); background-color: rgb(51, 102, 102);
@ -199,6 +204,11 @@ input, textarea {
color: rgb(204, 204, 204); color: rgb(204, 204, 204);
} }
#properties-list input[type=button]:disabled {
background-color: rgb(41, 82, 82);
color: rgb(160, 160, 160);
}
#properties-list .property { #properties-list .property {
padding: 6pt 6pt; padding: 6pt 6pt;
border-top: 0.75pt solid rgb(63, 63, 63); border-top: 0.75pt solid rgb(63, 63, 63);