mirror of
https://github.com/Rnhmjoj/solarized-dark-ui
synced 2025-01-10 09:24:21 +01:00
adda60234d
Previously, we were only rendering a right border on pane children of a row, which meant that we didn't render borders when columns nested inside of rows. Also, when the tab strip wasn't present it was impossible to distinguish horizontal splits.
30 lines
545 B
Plaintext
30 lines
545 B
Plaintext
@import "ui-mixins";
|
|
@import "ui-variables";
|
|
@import "buttons";
|
|
|
|
.pane-item {
|
|
.panel {
|
|
border-color: fadeout(@inset-panel-border-color, 30%);
|
|
}
|
|
}
|
|
|
|
.panes {
|
|
.pane {
|
|
background-color: lighten(@app-background-color, 4%);
|
|
|
|
&:focus {
|
|
background-color: @app-background-color;
|
|
}
|
|
}
|
|
|
|
.pane-row > * {
|
|
border-right: 1px solid @pane-item-border-color;
|
|
&:last-child { border-right: none; }
|
|
}
|
|
|
|
.pane-column > * {
|
|
border-bottom: 1px solid @pane-item-border-color;
|
|
&:last-child { border-bottom: none; }
|
|
}
|
|
}
|