From 3add3897ac3e9331073c00d8924ce581cea41186 Mon Sep 17 00:00:00 2001 From: Ginger Wong Date: Sun, 27 Sep 2020 23:04:42 -0700 Subject: [PATCH] show play button when video is paused (issue #201) --- webroot/styles/video.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webroot/styles/video.css b/webroot/styles/video.css index ff19dd868..9b5b241d8 100644 --- a/webroot/styles/video.css +++ b/webroot/styles/video.css @@ -5,6 +5,11 @@ video.video-js { min-height: 100% } +/* show big play button when paused */ +.vjs-has-started.vjs-paused .vjs-big-play-button{ + display: block; +} + .vjs-airplay .vjs-icon-placeholder::before { content: url("../img/airplay.png"); }