From 6f398282946477217bd274a795b0dc8d6895142f Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Tue, 21 Jan 2025 08:31:02 -0800 Subject: [PATCH] Fix: Bold font style was applied to every list item unintentionally --- Theme/ElegantFin-theme-nightly.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index 59a5612..5ec3bd4 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -1182,13 +1182,16 @@ div[data-role=controlgroup] a.ui-btn-active { margin-bottom: .5em; } +[dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] .listItemBodyText:not(.secondary) { + font-size: 1.17em; + font-weight: 600; +} + .listItemBody { padding: 0; } .listItemBody>.listItemBodyText:not(.secondary) { - font-size: 1.125em; - font-weight: 600; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; @@ -1203,7 +1206,8 @@ div[data-role=controlgroup] a.ui-btn-active { overflow: hidden; } -.listItem-bottomoverview { +.listItem-bottomoverview, +[dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] .listItem-overview p { margin-top: .75em; margin-bottom: 0em; }