youtube-unhookedplusplus/styles.css
2020-01-03 12:48:26 +01:00

41 lines
853 B
CSS

/** Youtube CSS overrides **/
/** FRONT PAGE FEED **/
/** Displayed while loading, grey boxes **/
#home-page-skeleton {
display: none !important;
}
/**
Must use visibility instead of display as otherwise
it thinks that the user has scrolled and tries to load
additional feed items repeatedly.
**/
ytd-browse[role="main"][page-subtype="home"] #contents {
visibility: hidden !important;
}
/** RELATED VIDEOS (SIDEBAR) **/
/** Displayed while loading, grey boxes **/
#related-skeleton, .watch-skeleton {
display: none !important;
}
ytd-watch-next-secondary-results-renderer {
visibility: hidden !important;
}
/** COMMENTS **/
/* changed
ytd-comments {
visibility: visible !important;
} */
/** RELATED VIDEOS (END OF VIDEO SCREEN) **/
.ytp-videowall-still, .ytp-endscreen-previous, .ytp-endscreen-next {
display: none !important;
}