From 29180c4731bc98984d93b17ae4152fe653a4aa78 Mon Sep 17 00:00:00 2001 From: Ichimaki Date: Mon, 15 Jun 2026 14:09:33 +0800 Subject: [PATCH] fix(ui): prevent email reader button label overflow Remove fixed widths from email reader action buttons so Reply/Forward/AI Reply/Summary labels fit on desktop and mobile. --- static/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index d0e8675f4..58241d997 100644 --- a/static/style.css +++ b/static/style.css @@ -4649,7 +4649,7 @@ body.bg-pattern-sparkles { #email-lib-modal .email-reader-actions .memory-toolbar-btn.reader-icon-btn, .email-reader-tab-modal .email-reader-actions .memory-toolbar-btn.reader-icon-btn, .email-window-modal .email-reader-actions .memory-toolbar-btn.reader-icon-btn { - width: 44px !important; + width: auto !important; height: 44px !important; flex: 0 0 auto !important; display: inline-flex !important; @@ -29151,9 +29151,9 @@ body.doc-find-active mark.doc-find-mark.current { /* Email reader icon buttons — vertical icon + label stack. */ .memory-toolbar-btn.reader-icon-btn { - width: 48px; + width: auto; height: 44px; - padding: 4px 2px; + /* padding: 4px 2px; */ position: relative; top: 1px; display: inline-flex;