Explorar el Código

LibWeb: Set `cursor: default` for button and select elements

This prevents an IBeam cursor being shown when these elements are
moused over.
Tim Ledbetter hace 1 año
padre
commit
ea9bc8ed6b
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Userland/Libraries/LibWeb/CSS/Default.css

+ 1 - 0
Userland/Libraries/LibWeb/CSS/Default.css

@@ -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 {