mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-11 18:08:54 -05:00
Uncommented and enabled click, tap, and doubleClick user actions in VideoJSPlayer. Adjusted progress bar margin and padding for improved layout. Cleaned up VideoJSPlayerRoundedCorners.css by removing commented-out gradient overlay and related styles.
45 lines
1.7 KiB
CSS
45 lines
1.7 KiB
CSS
/* ===== VIDEO.JS ROUNDED CORNERS STYLES ===== */
|
|
.video-js-root-main .video-js.video-js-rounded-corners,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-has-started,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-fullscreen,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-paused,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-ended,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.chapters-open {
|
|
/* background-color: transparent !important; */
|
|
outline: none !important;
|
|
border-radius: 12px !important;
|
|
}
|
|
|
|
.video-js-root-main .video-js.video-js-rounded-corners .vjs-poster {
|
|
border-radius: 12px !important;
|
|
}
|
|
|
|
.video-js-root-main .video-js.video-js-rounded-corners video {
|
|
border-radius: 12px !important;
|
|
}
|
|
.video-js-root-main .video-js.video-js-rounded-corners .vjs-control-bar {
|
|
border-bottom-left-radius: 12px !important;
|
|
border-bottom-right-radius: 12px !important;
|
|
}
|
|
|
|
/* Mobile responsive adjustments */
|
|
@media (max-width: 767px) {
|
|
/* Remove rounded corners on mobile screens */
|
|
.video-js-root-main .video-js.video-js-rounded-corners,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-has-started,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-fullscreen,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-paused,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.vjs-ended,
|
|
.video-js-root-main .video-js.video-js-rounded-corners.chapters-open {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.video-js-root-main .video-js.video-js-rounded-corners .vjs-poster {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.video-js-root-main .video-js.video-js-rounded-corners video {
|
|
border-radius: 0 !important;
|
|
}
|
|
}
|