Fix #550. Use min-width: 0 after flexbox orientation switch.

By default, flexbox items have a min size of -webkit-min-content in the
the flex axis. I previously switched the pane item-views to flex
horizontally for performance reasons (preventing over-aggressive
repaints), but forgot to change min-height to min-width.
This commit is contained in:
Nathan Sobo
2013-05-14 10:10:25 -06:00
parent f41b558fe5
commit e0e6d96c84

View File

@@ -62,7 +62,7 @@ html, body {
.pane .item-views > * {
-webkit-flex: 1;
min-height: 0;
min-width: 0;
}
}