Adding drawer prototype

This commit is contained in:
Vince
2013-06-15 19:35:55 +02:00
parent 13de7cbcfb
commit 4208e40c24
3 changed files with 30 additions and 4 deletions

View File

@@ -50,7 +50,8 @@ body {
z-index: 10;
}
.sticky-section .wrap {
.sticky-section .wrap,
.sticky-section .drawer {
display: table-cell;
vertical-align: middle;
}
@@ -67,13 +68,31 @@ body {
.right-sticky-section.sticky-section {
right: 0;
width: 50px;
-webkit-transition: all 200ms ease-out;
-moz-transition: all 200ms ease-out;
-ms-transition: all 200ms ease-out;
transition: all 200ms ease-out;
}
.right-sticky-section.expanded {
right: 300px;
}
.drawer {
}
.drawer-content {
background-color: red;
height: 600px;
width: 300px;
}
.right-sticky-section .tool-icon {
float: right;
}
/**
* Canvases layout
*/