diff options
author | Astound <kirito@disroot.org> | 2024-01-29 05:06:38 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-01-29 05:06:38 +0800 |
commit | 3ee2df7faaac2f97a3b0cb28b43854cc11cd97a9 (patch) | |
tree | fd48a37d78b749f7342fb2667b83153c2abda0f5 /youtube/static/watch.css | |
parent | d2c883c21142e952acab0cd8dea010814e0cb648 (diff) | |
download | yt-local-3ee2df7faaac2f97a3b0cb28b43854cc11cd97a9.tar.lz yt-local-3ee2df7faaac2f97a3b0cb28b43854cc11cd97a9.tar.xz yt-local-3ee2df7faaac2f97a3b0cb28b43854cc11cd97a9.zip |
Refactor styles on video playback page
Made changes to the styles on the video playback page to enhance visibility and address issues with the video player.
Added a new custom style file for Plyr, and removed redundant and unused styles in watch.css.
Specific changes:
- Added custom_plyr.css for Plyr styles.
- Removed redundant styles related to playback issues in watch.css
Diffstat (limited to 'youtube/static/watch.css')
-rw-r--r-- | youtube/static/watch.css | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/youtube/static/watch.css b/youtube/static/watch.css index 849e22b..460bba3 100644 --- a/youtube/static/watch.css +++ b/youtube/static/watch.css @@ -24,20 +24,6 @@ video { max-height: calc(100vh/1.5); } -/* plyr fix */ -.plyr:-moz-full-screen video { - max-height: initial; -} -.plyr:-webkit-full-screen video { - max-height: initial; -} -.plyr:-ms-fullscreen video { - max-height: initial; -} -.plyr:fullscreen video { - max-height: initial; -} - a:link { color: var(--link); } |