Bug 1239670 - Memory table: Use min-width:0 on flex items to prevent overflow. r=fitzgen

This commit is contained in:
Julian Descottes 2016-01-14 19:52:26 +01:00
parent 339331bbd4
commit 927fb20889

View File

@ -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,