mirror of
https://github.com/lscambo13/ElegantFin.git
synced 2025-11-07 07:15:25 +00:00
Compare commits
3 Commits
eff306a900
...
5ab39dd7e2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ab39dd7e2 | ||
|
|
5350c7836e | ||
|
|
5988cee24c |
@@ -220,8 +220,11 @@ https://github.com/user-attachments/assets/ac22440d-39d7-48d6-a8da-3b7777372ffd
|
||||
|
||||
### 🆗 Tested on
|
||||
- Jellyfin Server v10.10.7
|
||||
- Microsoft Edge (Chromium)
|
||||
- Jellyfin Android App v2.6.3
|
||||
|
||||
Note: Support for v10.11.0 is a work in progress
|
||||
|
||||
<hr>
|
||||
|
||||
### 🛠️ Troubleshooting
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
|
||||
--sidePadding: 3.3%;
|
||||
--itemColumnGap: 1em;
|
||||
--primaryItemPageNegativeSpace: 15vh;
|
||||
--primaryItemPageNegativeSpace: 17vh;
|
||||
--secondaryItemPageNegativeSpace: 35vh;
|
||||
|
||||
--blurSmallest: blur(2px);
|
||||
@@ -896,17 +896,19 @@ html {
|
||||
flex-direction: column;
|
||||
/* center content on desktop */
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
margin-bottom: -1.5em;
|
||||
/* this aligns the plot to left on 10.11.0 */
|
||||
text-align: left;
|
||||
/* temporarily disabled for 10.11.0 */
|
||||
/* margin-bottom: -1.5em; */
|
||||
}
|
||||
|
||||
.layout-mobile .detailPagePrimaryContainer {
|
||||
/* test disabled for 10.11.0 */
|
||||
/* .layout-mobile .detailPagePrimaryContainer {
|
||||
padding: .5em var(--sidePadding);
|
||||
}
|
||||
|
||||
[dir=ltr] .detailPagePrimaryContent {
|
||||
} */
|
||||
/* [dir=ltr] .detailPagePrimaryContent {
|
||||
padding-right: 0;
|
||||
}
|
||||
} */
|
||||
|
||||
.layout-desktop .detailPagePrimaryContainer {
|
||||
background: transparent;
|
||||
@@ -916,6 +918,24 @@ html {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* this removes the extra large left paading on 10.11.0 */
|
||||
.detailPagePrimaryContainer>.detailPagePrimaryContent,
|
||||
[dir=ltr] .detailPagePrimaryContainer>.detailRibbon,
|
||||
/* this removes the extra large left paading on pre-10.11.0 */
|
||||
[dir=ltr] .detailPagePrimaryContainer.detailRibbon {
|
||||
padding-left: var(--sidePadding);
|
||||
}
|
||||
|
||||
/* this places main media buttons below the title on 10.11.0 */
|
||||
.layout-desktop [dir=ltr] .detailRibbon,
|
||||
.layout-tv [dir=ltr] .detailRibbon {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.detailPagePrimaryContainer>.detailPagePrimaryContent {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.detailPageSecondaryContainer {
|
||||
padding-top: 0;
|
||||
}
|
||||
@@ -1035,10 +1055,11 @@ html {
|
||||
margin-top: unset !important;
|
||||
}
|
||||
|
||||
.layout-desktop [dir=ltr] .detailPagePrimaryContainer,
|
||||
/* test disabled for 10.11.0 */
|
||||
/* .layout-desktop [dir=ltr] .detailPagePrimaryContainer,
|
||||
.layout-tv [dir=ltr] .detailPagePrimaryContainer {
|
||||
padding-left: var(--sidePadding);
|
||||
}
|
||||
} */
|
||||
|
||||
@keyframes animMoveDown {
|
||||
from {
|
||||
@@ -1197,6 +1218,8 @@ html {
|
||||
align-content: end;
|
||||
place-items: center;
|
||||
display: grid;
|
||||
/* this centers the title and other text on 10.11.0 */
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Both the blocks below position the poster in main media page in the center */
|
||||
@@ -2537,7 +2560,7 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||
row-gap: 1em;
|
||||
column-gap: 3em;
|
||||
max-width: unset !important;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
|
||||
.layout-mobile .detailSection {
|
||||
@@ -2559,7 +2582,7 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||
border: var(--defaultBorder);
|
||||
border-radius: var(--smallRadius);
|
||||
padding: 1em;
|
||||
grid-column: 2;
|
||||
grid-column: 3 / 5;
|
||||
background-color: var(--lighterGradientPointAlpha);
|
||||
}
|
||||
|
||||
@@ -2625,7 +2648,7 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||
|
||||
.itemDetailsGroup {
|
||||
order: 2;
|
||||
grid-column: 1;
|
||||
grid-column: 1 / 3;
|
||||
}
|
||||
|
||||
.layout-tv .itemDetailsGroup {
|
||||
@@ -2636,12 +2659,30 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.detailSection>.nextUpSection {
|
||||
order: 5;
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
.detailSection>#listChildrenCollapsible {
|
||||
order: 6;
|
||||
grid-column: 2 / -1;
|
||||
}
|
||||
|
||||
.nextUpSection.hide~#listChildrenCollapsible {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.layout-mobile .trackSelections,
|
||||
.layout-mobile .detailSectionContent,
|
||||
.layout-mobile .itemDetailsGroup,
|
||||
.layout-mobile .nextUpSection,
|
||||
.layout-mobile .detailSection>#listChildrenCollapsible,
|
||||
.layout-tv .trackSelections,
|
||||
.layout-tv .detailSectionContent,
|
||||
.layout-tv .itemDetailsGroup {
|
||||
.layout-tv .itemDetailsGroup,
|
||||
.layout-tv .nextUpSection,
|
||||
.layout-tv .detailSection>#listChildrenCollapsible {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
@@ -2692,9 +2733,10 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||
padding-right: 6.5%;
|
||||
}
|
||||
|
||||
.detailPagePrimaryContent.padded-right {
|
||||
/* test disabled for 10.11.0 */
|
||||
/* .detailPagePrimaryContent.padded-right {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
} */
|
||||
|
||||
[dir=ltr] .detailPageContent,
|
||||
.content-primary {
|
||||
@@ -2702,6 +2744,12 @@ div[data-role=controlgroup] a.ui-btn-active {
|
||||
padding-right: var(--sidePadding) !important;
|
||||
}
|
||||
|
||||
/* this prevents double padding on Jellyfin pre-10.11.0 */
|
||||
[dir=ltr] .detailPageContent>.detailPagePrimaryContent {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
/* this removes right padding from cast page sections to place cards evenly*/
|
||||
#itemDetailPage .verticalSection .itemsContainer.padded-right {
|
||||
padding-right: 0 !important;
|
||||
|
||||
Reference in New Issue
Block a user