Pane styling isn't a child of the .root-view class

Panes aren't attached to a root view in spes.
This commit is contained in:
Corey Johnson
2013-03-11 09:47:34 -07:00
parent 478a376c97
commit 7c47b7f8d4

View File

@@ -19,39 +19,45 @@ html, body {
-webkit-flex: 1;
-webkit-flex-flow: column;
}
}
#panes {
position: relative;
#panes {
position: relative;
-webkit-flex: 1;
.column {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-y: hidden;
}
.row {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-x: hidden;
}
.pane {
position: absolute;
display: -webkit-flex;
-webkit-flex-flow: column;
top: 0;
bottom: 0;
left: 0;
right: 0;
box-sizing: border-box;
}
.pane .item-views {
-webkit-flex: 1;
.column {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-y: hidden;
}
.row {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-x: hidden;
}
.pane {
position: absolute;
display: -webkit-flex;
-webkit-flex-flow: column;
top: 0;
bottom: 0;
left: 0;
right: 0;
box-sizing: border-box;
}
display: -webkit-flex;
-webkit-flex-flow: column;
}
}