mirror of
https://github.com/atom/atom.git
synced 2026-02-13 16:14:59 -05:00
26 lines
524 B
Plaintext
26 lines
524 B
Plaintext
.pane-item {
|
|
.panel {
|
|
border-color: fadeout(@inset-panel-border-color, 30%);
|
|
}
|
|
}
|
|
|
|
atom-pane-container {
|
|
atom-pane {
|
|
background-color: lighten(@app-background-color, 4%);
|
|
|
|
&:focus {
|
|
background-color: @app-background-color;
|
|
}
|
|
}
|
|
|
|
atom-pane-axis.horizontal > * {
|
|
border-right: 1px solid @pane-item-border-color;
|
|
&:last-child { border-right: none; }
|
|
}
|
|
|
|
atom-pane-axis.vertical > * {
|
|
border-bottom: 1px solid @pane-item-border-color;
|
|
&:last-child { border-bottom: none; }
|
|
}
|
|
}
|