summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMacDue <macdue@dueutil.tech>2022-07-24 00:03:15 +0100
committerLinus Groh <mail@linusgroh.de>2022-07-24 13:31:01 +0100
commit9768cda634e0e28b36247c7399c2f3b4883e828c (patch)
treeedbf71119c391198bb391a4f303dde8363ee6247
parent226d3fba79e5fc042684a46f1a64ed393ec2e10c (diff)
downloadserenity-9768cda634e0e28b36247c7399c2f3b4883e828c.zip
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).
-rw-r--r--Userland/Libraries/LibWeb/CSS/Default.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css
index 4c899894cf..addde644f4 100644
--- a/Userland/Libraries/LibWeb/CSS/Default.css
+++ b/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;
}