-
-
Save FabianBartl/05f451364f4fba20421a281deb1cc4a7 to your computer and use it in GitHub Desktop.
A fix to add original title back in elegant theme for jellyfin
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
| .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