From 0d27480719ac70a5733bbc566d84cf108939e47b Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Sat, 13 Jun 2026 08:37:38 +0900 Subject: [PATCH] =?UTF-8?q?Doc=20compose=20Cc=20toggle:=20nudge=204px=20do?= =?UTF-8?q?wn=20(top:50%=20=E2=86=92=20top:calc(50%=20+=204px))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index 21c472595..596a250e0 100644 --- a/static/style.css +++ b/static/style.css @@ -30104,10 +30104,10 @@ body.doc-find-active mark.doc-find-mark.current { } } /* Cc toggle and attach button are absolute so they don't steal width - from the To input. Anchored to the input's vertical center so it - tracks the field height regardless of padding/border tweaks. */ + from the To input. Anchored to the input's vertical center + 4px + nudge so the label sits where the user expects it. */ .email-field .email-cc-toggle { - position: absolute; right: 6px; top: 50%; transform: translateY(-50%); + position: absolute; right: 6px; top: calc(50% + 4px); transform: translateY(-50%); z-index: 2; } .email-field input { padding-right: 60px; }