mirror of
https://github.com/atom/atom.git
synced 2026-02-03 19:25:06 -05:00
20 lines
434 B
Plaintext
20 lines
434 B
Plaintext
atom-pane-container {
|
|
atom-pane {
|
|
background-color: lighten(@app-background-color, 3%);
|
|
|
|
&: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; }
|
|
}
|
|
}
|