diff options
author | Jesús <heckyel@hyperbola.info> | 2021-05-22 17:05:39 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-05-22 17:05:39 -0500 |
commit | b3abec81e14b583400eebb120de8e5c4b7ca1da2 (patch) | |
tree | ace867440dbf8d26b082c9730a52bb883eb19d90 /youtube/static/watch.css | |
parent | e44647f1064c994237f6266b9b53b49a0d34db7e (diff) | |
download | yt-local-b3abec81e14b583400eebb120de8e5c4b7ca1da2.tar.lz yt-local-b3abec81e14b583400eebb120de8e5c4b7ca1da2.tar.xz yt-local-b3abec81e14b583400eebb120de8e5c4b7ca1da2.zip |
Add plyr as main player
Also plyr supports switch quality
Diffstat (limited to 'youtube/static/watch.css')
-rw-r--r-- | youtube/static/watch.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/youtube/static/watch.css b/youtube/static/watch.css index 8d23017..b141b91 100644 --- a/youtube/static/watch.css +++ b/youtube/static/watch.css @@ -30,6 +30,20 @@ video { max-height: 480px; } +/* 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); } |