From c5b11505e0a54952ff2042998d027d6de32d8bd4 Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Mon, 13 Oct 2025 00:28:44 +0300 Subject: [PATCH] Ensure time control visibility in VideoJSPlayer Updated CSS to always display the time control in the video player across all screen sizes, while hiding the time divider. This improves consistency in the player UI. --- .../src/components/video-player/VideoJSPlayer.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css b/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css index b4203eab..081aedd0 100644 --- a/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css +++ b/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css @@ -9,3 +9,11 @@ button { .video-js video:focus-visible { outline: none !important; } + +// Show time control in all screen sizes +.video-js .vjs-time-control { + display: block !important; +} +.video-js .vjs-time-control.vjs-time-divider { + display: none !important; +}