From f0a44678ed6b15a4419afc6a32aca60c6674e191 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 22 Jul 2022 14:50:53 +0700 Subject: [PATCH] unset video max-height max-width for fullscreen webkit, #264 --- tubearchivist/static/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tubearchivist/static/css/style.css b/tubearchivist/static/css/style.css index 15243c5a..5e6272b4 100644 --- a/tubearchivist/static/css/style.css +++ b/tubearchivist/static/css/style.css @@ -415,6 +415,12 @@ button:hover { margin: 10px 10px 10px 0; } +/* fix for safari full screen not scaling full */ +video:-webkit-full-screen { + max-height: unset !important; + max-width: unset !important; +} + /* video list */ .video-list { display: grid;