mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 17:25:26 -04:00
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:
+4
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user