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

--HG--
extra : source : f0b09da3f4caaf540ecce8f7474fe1e9a46c5e42
This commit is contained in:
Julian Descottes 2016-01-14 19:52:26 +01:00
Родитель 3ed0ef64a7
Коммит f03153fe8c
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -221,6 +221,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 {
@ -236,6 +242,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,