1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:47:37 +00:00

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).
This commit is contained in:
MacDue 2022-07-24 00:03:15 +01:00 committed by Linus Groh
parent 226d3fba79
commit 9768cda634

View file

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