I didn't like the suggested videos showing while in theater mode, I made it look like the older design.
Youtube Theater Mode Fix Clutter by Way2Bad
Details
AuthorWay2Bad
LicenseNo License
Categoryyoutube
Created
Updated
Size624 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 Theater Mode Fix Clutter
@version 20240524.17.03
@namespace https://userstyles.world/user/WayTooBad
@author WayTooBad
==/UserStyle== */
@-moz-document regexp("^https:\\/\\/www\\.youtube\\.com.+") {
ytd-watch-grid[theater] {
#columns.style-scope.ytd-watch-grid > :nth-child(1) {
margin-top: 100px;
order: 2;
margin-right: 95px;
min-width: 250px !important;
}
#columns.style-scope.ytd-watch-grid > :nth-child(2) {
width: 75%;
order: 1;
margin-left: 95px;
z-index: 1;
}
#player-container-inner.style-scope.ytd-watch-grid {
z-index: 2;
}
}
}