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.
This commit is contained in:
Yiannis Christodoulou 2025-10-13 00:28:44 +03:00
parent fb373f3c2c
commit c5b11505e0

View File

@ -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;
}