Fixes theater mode looking small on big screens with Rehike (mainly 2560x1440).
Rehike Theater Mode Fix for Big Screens by nsa0001
Details
Authornsa0001
LicenseNo License
Categoryyoutube
Created
Updated
Size519 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Rehike is required.
- Modern YouTube already sizes theater mode correctly based on resolution.
- The preview image is stretched because userstyles.world doesn't let you properly crop a preview image. (smh)
Source code
/* ==UserStyle==
@name YouTube Theater Mode Fix (2560x1440)
@version 20231108.22.12
@namespace ?
==/UserStyle== */
@-moz-document domain("youtube.com") {
@media screen and (min-width: 1920px) and (min-height: 1200px) {
.watch-stage-mode .player-width {
left: -960px;
width: 1920px;
}
.watch-stage-mode .player-height {
height: 1080px;
}
.watch-stage-mode #player-playlist .watch-playlist {
top: 720px;
}
}
}