1
0
mirror of https://github.com/Rnhmjoj/solarized-dark-ui synced 2025-01-10 09:24:21 +01:00

Render a right/column border on all but the last child of a row/column

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.
This commit is contained in:
Nathan Sobo 2014-01-16 11:02:56 -07:00
parent efdb9d6c52
commit adda60234d

View File

@ -17,8 +17,13 @@
} }
} }
.pane-row .pane { .pane-row > * {
border-right: 1px solid @pane-item-border-color; border-right: 1px solid @pane-item-border-color;
&:last-child { border-right: none; } &:last-child { border-right: none; }
} }
.pane-column > * {
border-bottom: 1px solid @pane-item-border-color;
&:last-child { border-bottom: none; }
}
} }