From a92ed681697aedb4843c7a3c1c06dd81440c8b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 12 Jun 2020 23:31:46 -0500 Subject: [PATCH] Fix TV video plyr player --- libretube-theme/static/css/styles.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/libretube-theme/static/css/styles.css b/libretube-theme/static/css/styles.css index 0c644d1..c392862 100644 --- a/libretube-theme/static/css/styles.css +++ b/libretube-theme/static/css/styles.css @@ -118,6 +118,24 @@ video { width: 100%; } +/* plyr fix */ +.plyr:-moz-full-screen video { + max-height: initial; +} +.plyr:-webkit-full-screen video { + max-height: initial; +} +.plyr:-ms-fullscreen video { + max-height: initial; +} +.plyr:fullscreen video { + max-height: initial; +} + +.plyr video { + max-height: 480px; +} + /* highlight search */ .highlighted { background: #0091EA;