From 8112d4401b73f28ed082573ca37a5f9af3cc49df Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Tue, 30 Dec 2025 21:38:02 +0530 Subject: [PATCH] Fix: Improved responsiveness of header tabs and page padding - Prevented header tabs from shifting up too early on TVs - Updated the page padding-top to adjust in sync with header tabs position - Made the page top padding aware of the header height to prevent overlaps --- Theme/ElegantFin-theme-nightly.css | 46 +++++++++++++++++------------- 1 file changed, 26 insertions(+), 20 deletions(-) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index ff5928f..311c172 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -3825,13 +3825,6 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense > div:first-child { overflow: visible !important; } -.layout-tv .sectionTabs { - /* this prevents the section tabs from being off-center in the music library - after I set the overflow to visible to fix visual glitches */ - width: 70%; - margin-right: 2em; -} - .sectionTabs .emby-tab-button { display: inline-flex; margin: 0.25em 0.5em; @@ -3849,6 +3842,11 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense > div:first-child { background-color: var(--textColor); } +/* this increases page top padding when section tabs are expanded */ +.libraryPage:not(.noSecondaryNavPage) { + padding-top: calc(var(--appBarHeight) * 2 + 0.5em) !important; +} + @media (min-width: 75em) { .sectionTabs { -webkit-align-items: center; @@ -3857,14 +3855,15 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense > div:first-child { align-self: center; -webkit-justify-content: center; justify-content: center; + /* this collapses the section tabs expanded earlier than the default 100em max-width */ margin-top: calc(-1 * var(--appBarHeight)); position: relative; width: auto; } - /* this reduces top page padding when section tabs are minimised */ - .libraryPage:not(.noSecondaryNavPage):not(.layout-tv .libraryPage) { - padding-top: 6.8em !important; + /* this reduces page top padding when section tabs are collapsed */ + .libraryPage:not(.noSecondaryNavPage) { + padding-top: calc(var(--appBarHeight) + 0.5em) !important; } /* this fixes the header like on desktop on larger tablet screens */ @@ -3874,11 +3873,28 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense > div:first-child { } } +@media (min-width: 100em) { + /* this reduces top padding when section tabs are collapsed on TVs */ + .layout-tv .libraryPage:not(.noSecondaryNavPage) { + padding-top: calc(var(--appBarHeight) + 0.5em) !important; + } +} + @media (max-width: 100em) { /* this makes the font size consistent */ .sectionTabs { font-size: 100%; } + + /* this keeps the section tabs expanded on TVs under 100em width */ + .layout-tv .sectionTabs { + margin-top: unset; + } + + /* this increases page top padding when section tabs are expanded on TVs*/ + .layout-tv .libraryPage:not(.noSecondaryNavPage) { + padding-top: calc(var(--appBarHeight) * 2 + 0.5em) !important; + } } @media (max-width: 75em) { @@ -3892,16 +3908,6 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense > div:first-child { } } -/* this increased top page padding when section tabs are maximised */ -.libraryPage:not(.noSecondaryNavPage) { - padding-top: 9.5em !important; -} - -/* this limits top page padding when section tabs always on TVs */ -.layout-tv .libraryPage:not(.noSecondaryNavPage) { - padding-top: 6em !important; -} - .layout-tv .headerLeft { overflow: unset; margin: 0em 0.6em;