Fix selector-pseudo-element-colon-notation (CSS)

This commit is contained in:
MrTimscampi 2020-01-19 15:07:52 +01:00
parent cc377df8f3
commit ce79cb6537
2 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ progress {
background: #ccc !important; background: #ccc !important;
} }
progress[role]:after { progress[role]::after {
background-image: none; background-image: none;
} }
@ -38,7 +38,7 @@ progress::-webkit-progress-value {
background-color: #00a4dc; background-color: #00a4dc;
} }
progress[aria-valuenow]:before { progress[aria-valuenow]::before {
border-radius: 0.4em; border-radius: 0.4em;
background-color: #00a4dc; background-color: #00a4dc;
} }

View file

@ -824,7 +824,7 @@
background-color: #c33; background-color: #c33;
} }
.recordingProgressBar[aria-valuenow]:before { .recordingProgressBar[aria-valuenow]::before {
background-color: #c33; background-color: #c33;
} }