19 lines
824 B
SCSS
19 lines
824 B
SCSS
// ==========================================================================
|
|
// Progress
|
|
// ==========================================================================
|
|
|
|
// Loading
|
|
$plyr-progress-loading-size: var(--plyr-progress-loading-size, 25px) !default;
|
|
$plyr-progress-loading-background: var(--plyr-progress-loading-background, rgba($plyr-color-gray-900, 0.6)) !default;
|
|
|
|
// Markers
|
|
$plyr-progress-marker-background: var(--plyr-progress-marker-background, #fff) !default;
|
|
$plyr-progress-marker-width: var(--plyr-progress-marker-width, 3px) !default;
|
|
|
|
// Buffered
|
|
$plyr-video-progress-buffered-background: var(--plyr-video-progress-buffered-background, rgba(#fff, 0.25)) !default;
|
|
$plyr-audio-progress-buffered-background: var(
|
|
--plyr-audio-progress-buffered-background,
|
|
rgba($plyr-color-gray-200, 0.6)
|
|
) !default;
|