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:
parent
37269fd96a
commit
dc170b1f58
1 changed files with 4 additions and 1 deletions
|
|
@ -28259,7 +28259,10 @@ button .spinner-whirlpool {
|
||||||
}
|
}
|
||||||
.email-reader-meta-row.email-reader-meta-from {
|
.email-reader-meta-row.email-reader-meta-from {
|
||||||
position: relative;
|
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;
|
min-width: 0;
|
||||||
/* Reserve space on the right for the 1-row cluster in wide mode. */
|
/* Reserve space on the right for the 1-row cluster in wide mode. */
|
||||||
padding-right: 320px;
|
padding-right: 320px;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue