From 760c8ef72c4a20309a0c5c47621fb9eac60336d2 Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Fri, 12 Jun 2026 08:02:53 +0900 Subject: [PATCH] Email reader docked: stretch meta so icons land right edge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docked header is flex-direction:column, and the base align-items:flex-start was sizing the meta to its chip width and parking it at the left — the absolute cluster's right:0 then landed at the meta's right edge in the middle of the pane. align-items:stretch makes meta fill the header width so right:0 hits the actual right edge. --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index e0aa3609d..c282f08e6 100644 --- a/static/style.css +++ b/static/style.css @@ -15393,6 +15393,10 @@ body.right-dock-active:not(.email-doc-split-active) .doc-editor-pane { .modal.modal-right-docked .email-reader-header, .modal.modal-left-docked .email-reader-header { flex-direction: column; + /* Stretch the meta to the full header width so the absolute + action cluster's right:0 lands at the right edge (was sizing + meta to chip content width and centering it). */ + align-items: stretch; gap: 6px; } .modal.modal-right-docked .email-reader-header > .email-reader-actions,