Make embed player control bar sticky at bottom

Added CSS rules to position the embed player's control bar fixed at the bottom of the window, ensuring it remains visible and accessible regardless of scroll position.
This commit is contained in:
Yiannis Christodoulou
2025-10-06 18:11:32 +03:00
parent b123660641
commit b70c938d83
@@ -73,3 +73,12 @@
opacity: 0 !important;
visibility: hidden !important;
}
/* ===== EMBED CONTROL BAR POSITIONING ===== */
/* Sticky controls for embed player - always at bottom of window */
#page-embed .video-js-root-embed .video-js .vjs-control-bar {
position: fixed !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
}