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.
This commit is contained in:
Yiannis Christodoulou 2025-10-10 09:18:33 +03:00
parent b2279f73f6
commit 9a6f2b1394

View File

@ -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 { .vjs-button:focus {
outline: none !important; outline: none !important;
} }