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
commit 9768cda634
Notes: sideshowbarker 2024-07-17 08:37:36 +09:00

View file

@ -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;
}