Fix: TV Show cards were displayed incorrectly on the home page in Mixed libraries section

This commit is contained in:
lscambo13
2025-10-28 06:25:11 -07:00
parent d1b4bc1367
commit 33afcd750c

View File

@@ -3392,12 +3392,13 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child {
background: var(--activeColor); background: var(--activeColor);
} }
#homeTab .overflowBackdropCard[data-isfolder="true"] .cardPadder-overflowBackdrop { /* this :not() is needed to prevent affecting the mixed media libraries on the home page */
#homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardPadder-overflowBackdrop {
padding-bottom: 50%; padding-bottom: 50%;
} }
#homeTab .overflowBackdropCard[data-isfolder="true"] .cardText-first, #homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardText-first,
#homeTab .overflowBackdropCard[data-isfolder="true"] .cardText.cardTextCentered { #homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardText.cardTextCentered {
display: var(--libraryLabelVisibility); display: var(--libraryLabelVisibility);
} }