Browse Source

LibWeb: Make <option> elements display:none in the default CSS for now

Andreas Kling 4 years ago
parent
commit
c7d1f73990
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Userland/Libraries/LibWeb/CSS/Default.css

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

@@ -205,3 +205,7 @@ input[type=text] {
     min-width: 80px;
     min-height: 16px;
 }
+
+option {
+    display: none;
+}