pulsar/static/panes.less

51 lines
1001 B
Plaintext
Raw Normal View History

2013-09-06 21:42:45 +04:00
@import "ui-variables";
// Pane-items are things that go inside a pane. Like the UI-Demo, the
// settings-view, the archive-view, the image-view. Etc. Basically a non-
// editor resource with a tab.
2014-01-09 01:39:58 +04:00
.panes {
display: -webkit-flex;
-webkit-flex: 1;
.pane-column {
2014-01-09 01:39:58 +04:00
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-direction: column;
}
.pane-row {
2014-01-09 01:39:58 +04:00
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-direction: row;
}
.pane {
position: relative;
display: -webkit-flex;
2014-01-09 01:39:58 +04:00
-webkit-flex: 1;
-webkit-flex-direction: column;
overflow: hidden;
2014-01-09 01:39:58 +04:00
.item-views {
-webkit-flex: 1;
display: -webkit-flex;
min-height: 0;
min-width: 0;
position: relative;
.pane-item {
color: @text-color;
background-color: @pane-item-background-color;
}
> *, > .editor.react > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
2014-01-09 01:39:58 +04:00
}
}
2013-09-06 21:42:45 +04:00
}