diff options
author | Moonchild <moonchild@palemoon.org> | 2023-08-13 22:09:27 +0200 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2023-08-13 22:09:27 +0200 |
commit | 53b548e31ab64d3a723f44f63b99af044ba53147 (patch) | |
tree | 9f23dd713293cc43167aaea259c1c717e8d21421 | |
parent | 2a6187709b4abe2a375811bc50d2ea160d9f2d18 (diff) | |
download | uxp-53b548e31ab64d3a723f44f63b99af044ba53147.tar.gz |
Issue #2284 - Adjust some in-content CSS to account for flex definite-sizing change.
As of this change, flex items in a vertical flex container will sometimes
be considered to have "indefinite" sizes, i.e. percent sizes in them will
no longer resolve.
To work around this, they need to provide a definite flex-basis (e.g. as
part of the "flex" shorthand property) if we want percent sizes to
resolve (instead of being treated as "auto") inside of them.
-rw-r--r-- | toolkit/themes/shared/in-content/info-pages.inc.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/themes/shared/in-content/info-pages.inc.css b/toolkit/themes/shared/in-content/info-pages.inc.css index 4889602a09..29fcbe1ea8 100644 --- a/toolkit/themes/shared/in-content/info-pages.inc.css +++ b/toolkit/themes/shared/in-content/info-pages.inc.css @@ -96,7 +96,7 @@ ul { /* Trees */ .tree-container { margin-top: 1.2em; - flex-grow: 1; + flex: 1 0px; min-height: 12em; } |