2013-09-06 21:42:45 +04:00
|
|
|
@import "ui-variables";
|
|
|
|
|
2013-09-06 22:07:08 +04:00
|
|
|
// 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-10-08 22:36:31 +04:00
|
|
|
atom-pane-container {
|
2014-01-09 01:39:58 +04:00
|
|
|
display: -webkit-flex;
|
|
|
|
-webkit-flex: 1;
|
|
|
|
|
2014-10-08 22:32:58 +04:00
|
|
|
atom-pane-axis.vertical {
|
2014-01-09 01:39:58 +04:00
|
|
|
display: -webkit-flex;
|
|
|
|
-webkit-flex: 1;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2014-10-08 22:32:58 +04:00
|
|
|
atom-pane-axis.horizontal {
|
2014-01-09 01:39:58 +04:00
|
|
|
display: -webkit-flex;
|
|
|
|
-webkit-flex: 1;
|
|
|
|
-webkit-flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2014-10-08 21:36:07 +04:00
|
|
|
atom-pane {
|
2014-01-09 02:31:46 +04:00
|
|
|
position: relative;
|
2014-01-11 06:02:19 +04:00
|
|
|
display: -webkit-flex;
|
2014-01-09 01:39:58 +04:00
|
|
|
-webkit-flex: 1;
|
2014-01-11 06:02:19 +04:00
|
|
|
-webkit-flex-direction: column;
|
2014-02-27 06:16:37 +04:00
|
|
|
overflow: hidden;
|
2014-01-09 01:39:58 +04:00
|
|
|
|
|
|
|
.item-views {
|
|
|
|
-webkit-flex: 1;
|
|
|
|
display: -webkit-flex;
|
|
|
|
min-height: 0;
|
2014-01-12 06:13:00 +04:00
|
|
|
min-width: 0;
|
2014-01-11 06:02:19 +04:00
|
|
|
position: relative;
|
|
|
|
|
2014-01-12 06:13:00 +04:00
|
|
|
.pane-item {
|
|
|
|
color: @text-color;
|
|
|
|
background-color: @pane-item-background-color;
|
|
|
|
}
|
2014-01-11 06:02:19 +04:00
|
|
|
|
2014-10-09 01:11:57 +04:00
|
|
|
> *, > atom-text-editor.react > * {
|
2014-01-11 06:02:19 +04:00
|
|
|
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
|
|
|
}
|