Advertisement
Guest User

yt fix

a guest
Feb 10th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | None | 0 0
  1. /* remove suggested videos when paused */
  2. .ytp-pause-overlay {
  3.     display: none!important;
  4. }
  5.  
  6.  
  7.  
  8. /* UltraWide fix- move controls to center, only when video is fullscreen */  
  9. #movie_player.ytp-fullscreen .ytp-chrome-controls {
  10.     display: flex;
  11.     width: 100%;
  12.     justify-content: space-evenly;
  13. }
  14.  
  15. /* move settings popup for ultrawide */
  16. #movie_player.ytp-fullscreen .ytp-settings-menu {
  17.     left: 62%!important;
  18. }
  19.  
  20. /* move closed captions closer to center - not tested with every resolution video*/
  21. #movie_player.ytp-fullscreen .caption-window {
  22.     left: 33% !important;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement