1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

LibWeb: Set cursor: default for button and select elements

This prevents an IBeam cursor being shown when these elements are
moused over.
This commit is contained in:
Tim Ledbetter 2024-02-18 16:02:50 +00:00 committed by Tim Flynn
parent 012f6d46e7
commit ea9bc8ed6b

View file

@ -52,6 +52,7 @@ button, input[type=submit], input[type=button], input[type=reset], select {
background-color: ButtonFace;
border: 1px solid ButtonBorder;
color: ButtonText;
cursor: default;
}
button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, select:hover {