Move all screen-splitting-related selectors to atom.css

This commit is contained in:
Nathan Sobo
2012-03-19 12:23:39 -06:00
parent 5b145f64c2
commit 29d0e1fe3d
2 changed files with 10 additions and 19 deletions

View File

@@ -31,11 +31,19 @@ body {
position: relative;
}
.horizontal > .vertical {
.horizontal > div {
width: -webkit-flex(1);
height: auto;
}
.vertical > .horizontal {
.vertical > div {
height: -webkit-flex(1);
}
.horizontal > * + * {
border-left: 5px solid #515151;
}
.vertical > * + * {
border-top: 5px solid #515151;
}

View File

@@ -8,23 +8,6 @@
-webkit-user-select: none;
}
.horizontal > .editor.split {
width: -webkit-flex(1);
height: auto;
}
.horizontal > .editor.split + .editor {
border-left: 5px solid rgba(255, 255, 255, .15);
}
.vertical > .editor.split {
height: -webkit-flex(1);
}
.vertical > .editor.split + .editor {
border-top: 5px solid rgba(255, 255, 255, .15);
}
.editor .scrollable-content {
display: -webkit-flexbox;
}