From 06a3d6866e4f545abddd6654e490e50b623330a9 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Thu, 2 Mar 2017 13:13:31 -0600 Subject: Update atoms --- atom/packages/aesthetic-ui/styles/panes.less | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 atom/packages/aesthetic-ui/styles/panes.less (limited to 'atom/packages/aesthetic-ui/styles/panes.less') diff --git a/atom/packages/aesthetic-ui/styles/panes.less b/atom/packages/aesthetic-ui/styles/panes.less new file mode 100644 index 0000000..2233a42 --- /dev/null +++ b/atom/packages/aesthetic-ui/styles/panes.less @@ -0,0 +1,23 @@ +@import "ui-mixins"; +@import "ui-variables"; +@import "buttons"; + +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; } + } +} -- cgit