4 videos per row and hide inner content scrollbar
styles:youtube.com by helbb
Details
Authorhelbb
LicenseNo License
Categoryyoutube.com
Created
Updated
Size766 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name youtube.com
@version 20230905.13.40
@namespace ?
==/UserStyle== */
@-moz-document domain("youtube.com") {
.style-scope.ytd-rich-grid-renderer {
--ytd-rich-grid-items-per-row: 4;
}
#contents > ytd-rich-grid-row,
#contents > ytd-rich-grid-row > #contents {
display: contents;
}
#items.ytd-grid-renderer > ytd-grid-video-renderer:has( ytd-thumbnail-overlay-time-status-renderer[overlay-style="SHORTS"]) {
display: none;
}
#contents.ytd-rich-grid-renderer {
width: 94%;
padding-top: 24px;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
yt-formatted-string#video-title.ytd-rich-grid-media {
font-size: 14px;
}
#guide-inner-content.ytd-app {
scrollbar-width: none;
}
}