diff options
author | Jesús <heckyel@hyperbola.info> | 2021-07-05 15:44:07 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-07-05 15:44:07 -0500 |
commit | 33d732f781a0faf8d73122c6ac1db2f52c3080fa (patch) | |
tree | aea6dac28de49a755d6a51ab4379770dde3478e3 | |
parent | aadc20fa1925018e2c1b72ca89ad7f7f123ea74b (diff) | |
download | yt-local-33d732f781a0faf8d73122c6ac1db2f52c3080fa.tar.lz yt-local-33d732f781a0faf8d73122c6ac1db2f52c3080fa.tar.xz yt-local-33d732f781a0faf8d73122c6ac1db2f52c3080fa.zip |
fix right click for video
-rw-r--r-- | youtube/templates/watch.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index f05fc81..c44beca 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -9,6 +9,13 @@ <!-- plyr --> <link href="/youtube.com/static/modules/plyr/plyr.css" rel="stylesheet"/> <!--/ plyr --> + <style> + /* Prevent this div from blocking right-click menu for video + e.g. Firefox playback speed options */ + .plyr__poster { + display: none !important; + } + </style> {% endif %} {% endblock style %} |