little tweak that makes player in theater mode take almost entire height of the screen (still with topbar visible)
youtube.com full-height theater by hkc
Details
Authorhkc
LicenseNo License
Categoryyoutube
Created
Updated
Size607 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
may not work properly if you apply it after loading the page, try resizing the window, that helps sometimes
i could also hide topbar maybe, but eh
may break in future if they ever gonna change height of a toolbar (or if it's dependent on screen size). if it looks broken to you, ping me on Fedi: @hkc@pl.salushnes.solutions
Source code
/* ==UserStyle==
@name youtube.com full-height theater
@version 20230822.20.42
@namespace userstyles.world/user/hkc
@description little tweak that makes player in theater mode take almost entire height of the screen (still with topbar visible)
@author hkc
@license No License
==/UserStyle== */
@-moz-document domain("youtube.com") {
ytd-watch-flexy[theater]:not([fullscreen]) #player-full-bleed-container.ytd-watch-flexy {
height: calc(100vh - 56px);
max-height: calc(100vh - 56px);
}
ytd-watch-flexy[full-bleed-player] #columns.ytd-watch-flexy {
margin-top: 156px;
}
}