diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index ad0cdc49ba..6db9a63de6 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -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; }