Add progress bar styling for Firefox (#360)
I alter this color to reddish for my own site, so it stood out much more easily than the Casper blue not matching the Firefox default. Autoprefixer isn't handling this one. Also, I tried adding this rule, comma separated, to the immediately above webkit rule... but it doesn't actually work when I do that, for some reason. Sorry for the redundancy! https://developer.mozilla.org/en-US/docs/Web/CSS/::-moz-progress-bar
This commit is contained in:
parent
2f385ba5f1
commit
577b92811c
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1449,6 +1449,10 @@ Usage (In Ghost editor):
|
||||||
background-color: var(--blue);
|
background-color: var(--blue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.progress::-moz-progress-bar {
|
||||||
|
background-color: var(--blue);
|
||||||
|
}
|
||||||
|
|
||||||
.progress-container {
|
.progress-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
Loading…
Reference in New Issue