diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-01-28 03:09:31 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-01-28 03:09:31 +0100 |
commit | 728b0993f5d343c9c5946ce5dc103253048a82e3 (patch) | |
tree | f522ba01d9425953faf0d6b23bc30b4b5e9268d3 /resources | |
parent | 80ba76375e824839fe5b19c64fad6d40f98410b0 (diff) |
feat(frontend): refine video player and tweak sources
Diffstat (limited to 'resources')
-rw-r--r-- | resources/src/css/tubo.scss | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/resources/src/css/tubo.scss b/resources/src/css/tubo.scss index 5d795f8..91d33fa 100644 --- a/resources/src/css/tubo.scss +++ b/resources/src/css/tubo.scss @@ -8,11 +8,18 @@ @import "tailwindcss/components"; @import "tailwindcss/utilities"; @import "video.js/dist/video-js.css"; +@import "@silvermine/videojs-quality-selector/dist/css/quality-selector.css"; -video[poster] { +.vjs-tubo .vjs-poster img { object-fit: cover; } -.vjs-poster { - background-size: cover !important; - background-position: inherit; + +.vjs-tubo .vjs-control-bar { + background: none; +} + +.vjs-tubo .vjs-big-play-button, .vjs-tubo.vjs-paused .vjs-big-play-button { + background: none; + font-size: 120px; + border: none; } |