9 lines
144 B
CSS
9 lines
144 B
CSS
button[disabled] {
|
|
cursor: not-allowed;
|
|
background-color: #ccc;
|
|
box-shadow: none;
|
|
}
|
|
|
|
button[disabled]:hover {
|
|
background-color: #ccc;
|
|
}
|