Fix: buffer progress bar transition on webkit

The transition was set on the wrong pseudo element for WebKit browsers.
This commit is contained in:
Samuel Elgozi 2018-11-22 19:35:01 +02:00 committed by GitHub
parent e8d2f23b81
commit df5b7a008d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,13 +42,13 @@
&::-webkit-progress-bar { &::-webkit-progress-bar {
background: transparent; background: transparent;
transition: width 0.2s ease;
} }
&::-webkit-progress-value { &::-webkit-progress-value {
background: currentColor; background: currentColor;
border-radius: 100px; border-radius: 100px;
min-width: $plyr-range-track-height; min-width: $plyr-range-track-height;
transition: width 0.2s ease;
} }
// Mozilla // Mozilla