From 37269fd96a448698f19e44f628f98549fbc87fac Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Fri, 12 Jun 2026 10:25:42 +0900 Subject: [PATCH] Email reader docked: always show To/Cc, hide chevron toggle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In docked mode the header already reserves vertical space for the absolute action cluster, so the To/Cc details fit without any height tradeoff — force [hidden] open and hide the chevron toggle so the recipients are always visible there. --- static/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/static/style.css b/static/style.css index 4bbbba299..518e6cb0d 100644 --- a/static/style.css +++ b/static/style.css @@ -15408,6 +15408,17 @@ body.right-dock-active:not(.email-doc-split-active) .doc-editor-pane { margin-top: 2px; gap: 4px; } +/* Docked: always show To/Cc — there's vertical room reserved for + the action cluster already and the chevron toggle just adds + friction. Force the hidden attribute open and hide the chevron. */ +.modal.modal-right-docked .email-reader-meta-details[hidden], +.modal.modal-left-docked .email-reader-meta-details[hidden] { + display: flex !important; +} +.modal.modal-right-docked .email-reader-meta-toggle, +.modal.modal-left-docked .email-reader-meta-toggle { + display: none; +} .modal.modal-right-docked .email-reader-header > .email-reader-actions, .modal.modal-left-docked .email-reader-header > .email-reader-actions { position: static;