浏览代码

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

Andreas Kling 4 年之前
父节点
当前提交
c7d1f73990
共有 1 个文件被更改,包括 4 次插入0 次删除
  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;
+}