Show poster image when playing audio-only content, do not hide controls

Add '.vjs-playing-audio-only-content' class to:
 - show poster image
 - disable controls auto-hide

...when playing audio-only content
pull/2286/head
frankdelange 2019-11-01 10:33:17 +01:00 committed by Chocobozzz
parent 5c7d650827
commit 597ca6de2c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 12 additions and 0 deletions

View File

@ -104,6 +104,18 @@ body {
}
}
// Show poster and controls when playing audio-only content
&.vjs-playing-audio-only-content {
.vjs-poster {
display: block;
visibility: visible;
}
.vjs-control-bar {
opacity: $primary-foreground-opacity-hover;
}
}
// Hide the big play button on autoplay
&.vjs-has-autoplay {
.vjs-big-play-button {