Add styling for disabled buttons.
This commit is contained in:
parent
3b6362fed1
commit
f9a14ce3f0
2 changed files with 9 additions and 0 deletions
|
|
@ -9,6 +9,13 @@ button {
|
|||
outline: none;
|
||||
}
|
||||
button:hover { cursor: pointer; }
|
||||
button[disabled] {
|
||||
background-color: var(--button-disabled-background);
|
||||
color: var(--button-disabled-text);
|
||||
}
|
||||
button[disabled]:hover {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
||||
input[type=number] {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue