Created
May 23, 2025 14:02
-
-
Save axlroden/3c170c9e38dc69b0946001c65a326fc7 to your computer and use it in GitHub Desktop.
Jellyfin Custom CSS - Remove gradient at top and bottom of player - (annoying in HDR)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* === REMOVE BOTTOM GRADIENT OVERLAY === */ | |
.videoOsdBottom, | |
.videoOsdBottom-maincontrols, | |
.osdControls { | |
background: none !important; | |
background-image: none !important; | |
} | |
.videoOsdBottom::before, | |
.videoOsdBottom::after, | |
.osdControls::before, | |
.osdControls::after { | |
background: none !important; | |
content: none !important; | |
} | |
/* === REMOVE TOP GRADIENT OVERLAY AND BLUR === */ | |
.skinHeader, | |
.skinHeader-withBackground, | |
.skinHeader-blurred, | |
.osdHeader { | |
background: none !important; | |
background-image: none !important; | |
backdrop-filter: none !important; | |
} | |
.skinHeader::before, | |
.skinHeader::after, | |
.osdHeader::before, | |
.osdHeader::after { | |
background: none !important; | |
content: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment