Email library: title also shifts 4px right in expanded card view

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.
This commit is contained in:
pewdiepie-archdaemon
2026-06-12 21:50:50 +09:00
parent 27c92caee8
commit 6d328b1ad7
+5 -2
View File
@@ -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 {