mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1239670 - Memory table: Use min-width:0 on flex items to prevent overflow. r=fitzgen
This commit is contained in:
parent
339331bbd4
commit
927fb20889
@ -227,6 +227,12 @@ html, body, #app, #memory-tool {
|
||||
*/
|
||||
flex: 1;
|
||||
background-color: var(--theme-toolbar-background);
|
||||
|
||||
/**
|
||||
* By default, flex items have min-width: auto;
|
||||
* (https://drafts.csswg.org/css-flexbox/#min-size-auto)
|
||||
*/
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#heap-view > .heap-view-panel {
|
||||
@ -242,6 +248,12 @@ html, body, #app, #memory-tool {
|
||||
* Flexing to fill out remaining horizontal space. @see #heap-view.
|
||||
*/
|
||||
flex: 1;
|
||||
|
||||
/**
|
||||
* By default, flex items have min-width: auto;
|
||||
* (https://drafts.csswg.org/css-flexbox/#min-size-auto)
|
||||
*/
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#heap-view > .heap-view-panel > .snapshot-status,
|
||||
|
Loading…
Reference in New Issue
Block a user