浏览代码

LibWeb: Tidy up `<progress>` element default CSS

This is a very minor thing, but one being `background:` and
the other being `background-color:` bugged me (and not using
the named colors).
MacDue 3 年之前
父节点
当前提交
9768cda634
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Userland/Libraries/LibWeb/CSS/Default.css

+ 2 - 2
Userland/Libraries/LibWeb/CSS/Default.css

@@ -330,10 +330,10 @@ progress {
 progress::-webkit-progress-bar {
     width: inherit;
     height: inherit;
-    background-color: #808080;
+    background-color: grey;
 }
 
 progress::-webkit-progress-value {
     height: inherit;
-    background: #008000;
+    background-color: green;
 }