Skip to content

Instantly share code, notes, and snippets.

@SingularReza
Last active November 17, 2025 21:28
Show Gist options
  • Select an option

  • Save SingularReza/d7ced4d80a21d21617f88be446d5b5db to your computer and use it in GitHub Desktop.

Select an option

Save SingularReza/d7ced4d80a21d21617f88be446d5b5db to your computer and use it in GitHub Desktop.
A fix to add original title back in elegant theme for jellyfin
.nameContainer {
flex-direction: row;
align-items: baseline;
padding-bottom: 0.25em;
overflow: auto;
justify-content: center !important;
}
.detailImageContainer:has(.backdropCard,.squareCard)~.nameContainer h1:has(+ h3).parentName.focuscontainer-x {
display: none !important;
}
.subtitle {
padding-right: 0.5em;
}
@media only screen and (max-width: 450px) {
.subtitle {
padding: 0.2 em !important;
}
.nameContainer {
flex-direction: column;
justify-content: center !important;
overflow: auto;
}
.nameContainer h1 {
padding: 0em !important;
}
.originalTitle {
padding: 0em !important;
border-left: 0em !important;
}
}
h1:has(+ h3) {
display: none !important;
}
.detailLogo:not(.hide)~.detailPageWrapperContainer .nameContainer h1 {
display: block;
padding-top: .25em !important;
padding-bottom: .25em !important;
color: var(--dimTextColor) !important;
margin: .2em 0 .2em !important;
font-size: 100%;
font-weight: 600;
padding-right: 0.5em;
}
.originalTitle {
padding-left: 0.5em !important;
border-left: 1px solid;
widh: 100% !important;
}
.detailLogo.hide~.detailPageWrapperContainer .nameContainer h1 {
width: 100vw;
padding: 0em;
}
.detailLogo.hide~.detailPageWrapperContainer .nameContainer h1 + h4 {
padding-bottom: 0.5em;
border-left: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment