youtube-unhookedplusplus/styles.css

42 lines
844 B
CSS
Raw Permalink Normal View History

2020-01-03 12:48:26 +01:00
/** 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 **/
/*
2020-01-03 12:48:26 +01:00
ytd-comments {
visibility: hidden !important;
}
*/
2020-01-03 12:48:26 +01:00
/** RELATED VIDEOS (END OF VIDEO SCREEN) **/
.ytp-videowall-still, .ytp-endscreen-previous, .ytp-endscreen-next {
display: none !important;
}