From dc170b1f58bb62e900130e6774f292eeb714274b Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Fri, 12 Jun 2026 10:26:48 +0900 Subject: [PATCH] Email reader: From row no longer wraps label onto its own line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was using flex-wrap:wrap on the From row, which let the chip span flip onto a new row below From: when the available width briefly dropped — then snap back as the chip span's overflow-scroll kicked in. Switching to flex-wrap:nowrap keeps the label glued to the chip; the chip span shrinks/scrolls horizontally instead. --- static/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 518e6cb0d..bc01e5c02 100644 --- a/static/style.css +++ b/static/style.css @@ -28259,7 +28259,10 @@ button .spinner-whirlpool { } .email-reader-meta-row.email-reader-meta-from { position: relative; - flex-wrap: wrap; + /* Never wrap "From:" off the chip onto its own line — the chip + span has overflow-x scroll built in, so it shrinks/scrolls + instead of jumping to a new row. */ + flex-wrap: nowrap; min-width: 0; /* Reserve space on the right for the 1-row cluster in wide mode. */ padding-right: 320px;