css: fix disabled buttons appearing clickable.

Fix buttons appearing to be clickable when in the disabled state.

Submit buttons are normally disabled after a form is submitted. Before
these buttons would still look clickable. Now disabled buttons are greyed
out instead of looking the same as normal buttons.
This commit is contained in:
evazion
2022-02-07 18:26:34 -06:00
parent 3f64808432
commit a5b92dc9e6
3 changed files with 17 additions and 10 deletions

View File

@@ -34,7 +34,3 @@ ol, ul {
a:focus {
outline: thin dotted;
}
button, input[type="button"], input[type="submit"] {
cursor: pointer;
}