Email reader: From row no longer wraps label onto its own line

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.
This commit is contained in:
pewdiepie-archdaemon
2026-06-12 10:26:48 +09:00
parent 37269fd96a
commit dc170b1f58
+4 -1
View File
@@ -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;