dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
26 lines (22 loc) • 375 B
text/less
/* dojox.mobile.FixedSplitter */
.mblFixedSplitter {
width: 100%;
height: 100%;
}
/* For FixedSplitter's child panes */
.mblFixedSplitter > * {
position: absolute;
overflow-x: hidden;
overflow-y: auto;
}
.mblFixedSplitterH > * {
top: 0px;
bottom: 0px;
}
.mblFixedSplitterV > * {
width: 100%;
left: 0px;
}
.mblFixedSplitterH > .mblFixedSplitter {
height: auto;
}