From 819706998d1fe9ddbb940135c099af50a1cf7dfc Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Wed, 16 Jul 2025 10:20:43 -0700 Subject: [PATCH] Fix: Live TV program card was unintentionally hidden --- Theme/ElegantFin-theme-nightly.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index 9ccf049..91a562f 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -1088,11 +1088,12 @@ html { /* this shows the poster in the cast, book and music pages */ .detailImageContainer .card:has(.book, .person, .album), -.detailImageContainer .card.backdropCard:has(.tv) { +.detailImageContainer .card.backdropCard:has(.tv), +.detailImageContainer .card.backdropCard:has(.live_tv) { display: block; } -/* This reduces the top padding in the cast page */ +/* This reduces the top padding in the cast page i.e. shifts up page content */ #itemDetailPage:has(.detailImageContainer .cardImageIcon.person, .detailImageContainer .cardImageIcon.book) .itemBackdrop { height: calc(100vh - 50vh - var(--itemPageNegativeSpace)) !important; }