Files
atom/packages/atom-dark-ui/styles/tree-view.less
2018-09-24 10:57:10 -07:00

36 lines
594 B
Plaintext

.tree-view {
font-size: @font-size;
background: @tree-view-background-color;
.selected:before {
background: #444;
box-shadow: inset -3px 0 0 rgba(0,0,0, .05);
}
}
.tree-view-resizer {
.tree-view-resize-handle {
width: 8px;
}
}
.focusable-panel {
opacity: 1;
box-shadow: inset -3px 0 0 rgba(0,0,0, .05);
&:focus {
background: #282828;
.selected:before {
background: @background-color-selected;
}
}
}
[data-show-on-right-side=true] {
.tree-view .selected:before,
.focusable-panel {
box-shadow: inset 3px 0 0 rgba(0,0,0, .05);
}
}