Browse Source

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

This prevents an IBeam cursor being shown when these elements are
moused over.
Tim Ledbetter 1 năm trước cách đây
mục cha
commit
ea9bc8ed6b
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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 {