2016-01-15 02:05:16 +03:00
|
|
|
// This is a set of flex-based layout containers necessary for components such as the drawer.
|
|
|
|
// It allows for flex based positioning such as sticky header and footer inside an mdb-layout, with a
|
|
|
|
// mdb-layout-content that scrolls.
|
2016-01-14 21:50:27 +03:00
|
|
|
|
2016-01-15 02:05:16 +03:00
|
|
|
// First element
|
2016-01-19 02:39:37 +03:00
|
|
|
.mdb-layout-canvas { // added by js?
|
2016-01-15 02:05:16 +03:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2016-01-14 21:50:27 +03:00
|
|
|
|
2016-01-15 02:05:16 +03:00
|
|
|
// Primary layout container, belongs inside a mdb-layout-canvas.
|
2016-01-14 21:50:27 +03:00
|
|
|
.mdb-layout-container {
|
2016-01-15 02:05:16 +03:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
2016-01-14 21:50:27 +03:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-01-15 02:05:16 +03:00
|
|
|
flex-direction: column; // allows for sticky header and footer
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2016-01-18 21:53:44 +03:00
|
|
|
-webkit-overflow-scrolling: touch; // TODO: why?
|
2016-01-14 21:50:27 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 02:05:16 +03:00
|
|
|
// Header layout (fixed top), belongs in a mdb-layout-container
|
|
|
|
.mdb-layout-header {
|
2016-01-15 20:38:29 +03:00
|
|
|
z-index: 3;
|
2016-01-14 21:50:27 +03:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 1000px;
|
2016-01-18 21:53:44 +03:00
|
|
|
flex-direction: column; // since this is a column, it is necessary that something like an actual navbar is a child
|
2016-01-14 21:50:27 +03:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
flex-shrink: 0;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2016-01-15 02:05:16 +03:00
|
|
|
// Content layout, belongs in a mdb-layout-container
|
2016-01-14 21:50:27 +03:00
|
|
|
.mdb-layout-content {
|
|
|
|
position: relative;
|
2016-01-15 02:05:16 +03:00
|
|
|
z-index: 1; // under a header
|
2016-01-14 21:50:27 +03:00
|
|
|
display: inline-block;
|
|
|
|
//-ms-flex: 0 1 auto; // Fix IE10 bug.
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
flex-grow: 1;
|
|
|
|
-webkit-overflow-scrolling: touch; // TODO: why?
|
|
|
|
}
|
2016-01-15 02:05:16 +03:00
|
|
|
|
2016-01-18 22:51:46 +03:00
|
|
|
// Pushes content to the other end
|
|
|
|
.mdb-layout-spacer {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2016-01-19 23:17:08 +03:00
|
|
|
// Backdrop - generic backdrop to be used by other components i.e. drawer in overlay mode
|
2016-01-19 02:39:37 +03:00
|
|
|
.mdb-layout-backdrop {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 4;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
visibility: hidden;
|
|
|
|
background-color: transparent;
|
|
|
|
transition-property: background-color;
|
|
|
|
@include material-animation-default();
|
|
|
|
|
|
|
|
@supports (pointer-events: auto) {
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
opacity: 0;
|
|
|
|
transition-property: opacity;
|
|
|
|
visibility: visible;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2016-01-19 23:17:08 +03:00
|
|
|
// NOTE: the &.in style is responsive, generated by @mixin mdb-layout-backdrop-in() where needed.
|
2016-01-19 02:39:37 +03:00
|
|
|
}
|