42 lines
844 B
CSS
42 lines
844 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 **/
|
|
|
|
/*
|
|
ytd-comments {
|
|
visibility: hidden !important;
|
|
}
|
|
*/
|
|
|
|
/** RELATED VIDEOS (END OF VIDEO SCREEN) **/
|
|
.ytp-videowall-still, .ytp-endscreen-previous, .ytp-endscreen-next {
|
|
display: none !important;
|
|
}
|