added metadata editor sidebar

This commit is contained in:
Luke Pulverenti
2013-08-02 16:36:44 -04:00
parent 3945e0e9f4
commit 0dc7a2177e
34 changed files with 5572 additions and 342 deletions
+34
View File
@@ -0,0 +1,34 @@
.editPageContent {
padding: 0;
}
.editPageInnerContent {
padding: 0 15px 15px;
}
.editPageName {
margin: .5em 0 0;
}
.editPageSidebar {
display: none;
}
@media all and (min-width: 600px) {
.editPageSidebar {
position: fixed;
top: 36px;
bottom: 0;
left: 0;
width: 27.5%;
overflow-y: scroll;
overflow-x: auto!important;
display: block;
}
.editPageInnerContent {
float: right;
width: 70%;
}
}