]>
Commit | Line | Data |
---|---|---|
06a3d686 BB |
1 | @import "ui-mixins"; |
2 | @import "ui-variables"; | |
3 | @import "buttons"; | |
4 | ||
5 | atom-pane-container { | |
6 | atom-pane { | |
7 | background-color: lighten(@app-background-color, 3%); | |
8 | ||
9 | &:focus { | |
10 | background-color: @app-background-color; | |
11 | } | |
12 | } | |
13 | ||
14 | atom-pane-axis.horizontal > * { | |
15 | border-right: 1px solid @pane-item-border-color; | |
16 | &:last-child { border-right: none; } | |
17 | } | |
18 | ||
19 | atom-pane-axis.vertical > * { | |
20 | border-bottom: 1px solid @pane-item-border-color; | |
21 | &:last-child { border-bottom: none; } | |
22 | } | |
23 | } |