mirror of
https://github.com/atom/atom.git
synced 2026-02-13 16:14:59 -05:00
36 lines
594 B
Plaintext
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);
|
|
}
|
|
}
|