mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:27:45 +00:00
LibWeb: Also apply default button styles to <button>, not just <input>
This commit is contained in:
parent
8a9a9fac4d
commit
4170fcb777
1 changed files with 3 additions and 2 deletions
|
@ -237,12 +237,13 @@ input[type=submit], input[type=button], input[type=reset], input[type=checkbox],
|
|||
cursor: unset;
|
||||
}
|
||||
|
||||
input[type=submit], input[type=button], input[type=reset] {
|
||||
button, input[type=submit], input[type=button], input[type=reset] {
|
||||
padding: 4px 8px;
|
||||
background-color: -libweb-palette-button;
|
||||
border: 1px solid -libweb-palette-threed-shadow1;
|
||||
}
|
||||
input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover {
|
||||
|
||||
button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover {
|
||||
background-color: -libweb-palette-hover-highlight;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue