color tweaks

This commit is contained in:
Geoff Doty 2024-01-20 14:31:18 -05:00
parent 281f186510
commit 6f512d9f36
1 changed files with 5 additions and 3 deletions

View File

@ -8,9 +8,9 @@
--white: #FFF; --white: #FFF;
--black: #000; --black: #000;
--gray: #DCDCDC; --gray: #777;
--light: #f1f1f1; --light: #EEE;
--dark: #222; --dark: #222;
--theme: steelblue; --theme: steelblue;
@ -222,7 +222,9 @@ button, input[type="reset"],input[type="submit"] {
} }
button[disabled], button[disabled]:hover { button[disabled], button[disabled]:hover {
opacity: .5; color: var(--gray);
background-color: var(--light);
border: 1px solid var(--gray);
cursor: not-allowed; cursor: not-allowed;
pointer-events: none; pointer-events: none;
} }