Skip to content

Instantly share code, notes, and snippets.

@axlroden
Created May 23, 2025 14:02
Show Gist options
  • Save axlroden/3c170c9e38dc69b0946001c65a326fc7 to your computer and use it in GitHub Desktop.
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)
/* === 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