From 9a6f2b139422407dc0fca7397f03f1a8f3d5d239 Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Fri, 10 Oct 2025 09:18:33 +0300 Subject: [PATCH] Improve video player button styles and focus handling Added pointer cursor to video player buttons for better UX. Updated focus styles to ensure the video player is focusable without showing an outline. --- .../video-js/src/components/video-player/VideoJSPlayer.css | 7 +++++++ 1 file changed, 7 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 4cd3e4a4..c97dec85 100644 --- a/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css +++ b/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css @@ -1,3 +1,10 @@ +.video-js button { + cursor: pointer; +} + +/* Ensure video player is focusable but without outline */ +.video-js, +.video-js[tabindex], .vjs-button:focus { outline: none !important; }