pulsar/static/panels.less

33 lines
785 B
Plaintext
Raw Normal View History

@import "ui-variables";
// Atom panels
2014-11-05 01:36:51 +03:00
atom-panel-container.left,
atom-panel-container.right {
2015-10-24 11:48:08 +03:00
display: flex;
2014-11-05 01:36:51 +03:00
}
atom-panel-container.left {
// Align panels to the right of the panel container. The effect of this is
// that the left dock's toggle button will appear on the right side of the
// empty space when the panel container has a min width in the theme.
justify-content: flex-end;
}
.tool-panel, // deprecated: .tool-panel
2014-11-05 01:36:51 +03:00
atom-panel {
2015-10-27 18:21:06 +03:00
display: block;
2015-10-24 11:48:08 +03:00
position: relative;
2014-11-05 01:36:51 +03:00
}
atom-panel-container > atom-panel.left,
atom-panel-container > atom-panel.right {
display: flex;
2015-10-24 11:48:08 +03:00
}
// Some packages use `height: 100%` which doesn't play nice with flexbox
atom-panel-container > atom-panel.left > *,
atom-panel-container > atom-panel.right > * {
height: initial;
2014-11-05 01:36:51 +03:00
}