diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2022-09-12 00:13:24 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2022-09-12 00:13:24 +0200 |
| commit | 376ed3f4d37baafaa90391020ada3ffe776ef6f0 (patch) | |
| tree | 2f1eb1673b0dd4c6f87b0c95d3b36f50cf0133cb /assets | |
| parent | 7df176d75006721dee70aebee7cd9646d91fdf27 (diff) | |
| download | invidious-376ed3f4d37baafaa90391020ada3ffe776ef6f0.tar.gz invidious-376ed3f4d37baafaa90391020ada3ffe776ef6f0.tar.bz2 invidious-376ed3f4d37baafaa90391020ada3ffe776ef6f0.zip | |
css: Fix the video title overlay's colors in embed
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/player.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/assets/css/player.css b/assets/css/player.css index 8a7cfdab..50c7a748 100644 --- a/assets/css/player.css +++ b/assets/css/player.css @@ -34,7 +34,7 @@ .video-js.player-style-youtube .vjs-control-bar > .vjs-spacer { flex: 1; order: 2; -} +} .video-js.player-style-youtube .vjs-play-progress .vjs-time-tooltip { display: none; @@ -175,11 +175,14 @@ ul.vjs-menu-content::-webkit-scrollbar { .video-js.player-style-invidious .vjs-play-progress { background-color: rgba(0, 182, 240, 1); } -vjs-menu-content + /* Overlay */ .video-js .vjs-overlay { - background-color: rgba(35, 35, 35, 0.75); - color: rgba(255, 255, 255, 1); + background-color: rgba(35, 35, 35, 0.75) !important; +} +.video-js .vjs-overlay * { + color: rgba(255, 255, 255, 1) !important; + text-align: center; } /* ProgressBar marker */ |
