From 6d328b1ad7fc216b212c65e15339c46c427547f5 Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Fri, 12 Jun 2026 21:50:50 +0900 Subject: [PATCH] Email library: title also shifts 4px right in expanded card view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was only the date moving — the expanded card had a more-specific `padding: 4px 0 6px` shorthand on the title row that zeroed out the padding-left from my earlier nudge. Added the expanded-card selector to the padding-left:4px rule so the title now lines up with the meta line in both list and expanded states. --- static/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 3e2064aca..9788fc90f 100644 --- a/static/style.css +++ b/static/style.css @@ -34533,9 +34533,12 @@ button.cal-add-btn.cal-add-btn-text.cal-add-btn-sm:hover .cal-add-label { #email-lib-grid { position: relative; } /* Nudge the subject + sender/date meta line 4px right inside each email card so they don't sit flush against the read/unread/done - markers on the left. */ + markers on the left. Includes #email-lib-modal selector to + override the expanded card's `padding: 4px 0 6px` shorthand + which was zeroing out the title's padding-left. */ #email-lib-grid .email-card-titlerow, -#email-lib-grid .memory-item-meta { +#email-lib-grid .memory-item-meta, +#email-lib-modal .doclib-card-expanded .email-card-titlerow { padding-left: 4px; } .email-loading-label {