add grey backgroudn to disabled inputs

This commit is contained in:
Arthur Lu 2023-01-12 15:21:08 -08:00
parent 6598ae3133
commit 24351ded1e

View File

@ -30,12 +30,20 @@ input:focus {
outline: none; outline: none;
} }
input:disabled {
background-color: #606060;
}
select { select {
border: solid white 1px; border: solid white 1px;
background-color: black; background-color: black;
color: white; color: white;
} }
select:disabled {
background-color: #606060;
}
button { button {
margin-top: 0px; margin-top: 0px;
} }