From d29c415d64c7941f28b45694ad0ce6b77d459619 Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Mon, 6 Oct 2025 17:19:51 +0300 Subject: [PATCH] Remove focus outline from video player buttons Added CSS to disable the default focus outline on .vjs-button elements for improved visual appearance. --- .../video-js/src/components/video-player/VideoJSPlayer.css | 3 +++ 1 file changed, 3 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 e69de29b..4cd3e4a4 100644 --- a/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css +++ b/frontend-tools/video-js/src/components/video-player/VideoJSPlayer.css @@ -0,0 +1,3 @@ +.vjs-button:focus { + outline: none !important; +}