From d849189b8ca9ed8c9b1e5d5612a51ea40f2f62bb Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Thu, 11 Jun 2026 20:18:06 +0900 Subject: [PATCH] Email reader: tighten spacing in docked view + meta details - Docked: From row + action cluster nudged up 4px - Chevron pulled 4px left so it sits tight to the From chip - To/Cc detail block pulled up 8px to hug the From row - 4px gap between To and Cc rows (was 2px) --- static/style.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index b14c84ae6..78c9bb5fc 100644 --- a/static/style.css +++ b/static/style.css @@ -15236,6 +15236,11 @@ body.right-dock-active:not(.email-doc-split-active) .doc-editor-pane { align-items: start; padding-right: 0; } +/* Docked mode: nudge the From row + inline action cluster up 4px. */ +.modal.modal-right-docked .email-reader-meta-row.email-reader-meta-from, +.modal.modal-left-docked .email-reader-meta-row.email-reader-meta-from { + margin-top: -4px; +} .modal.modal-right-docked .email-reader-meta-row strong, .modal.modal-left-docked .email-reader-meta-row strong { min-width: 0; @@ -28073,7 +28078,7 @@ button .spinner-whirlpool { justify-content: center; width: 18px; height: 18px; - margin-left: 4px; + margin-left: -4px; padding: 0; border: none; background: transparent; @@ -28089,8 +28094,9 @@ button .spinner-whirlpool { .email-reader-meta-details { display: flex; flex-direction: column; - gap: 2px; - margin-top: 2px; + /* 4px between To and Cc, pulled up 8px to sit close under From. */ + gap: 4px; + margin-top: -8px; } .email-reader-meta-details[hidden] { display: none; } .email-reader-header > .email-reader-meta {