tree-view.less 594 B

1234567891011121314151617181920212223242526272829303132333435
  1. .tree-view {
  2. font-size: @font-size;
  3. background: @tree-view-background-color;
  4. .selected:before {
  5. background: #444;
  6. box-shadow: inset -3px 0 0 rgba(0,0,0, .05);
  7. }
  8. }
  9. .tree-view-resizer {
  10. .tree-view-resize-handle {
  11. width: 8px;
  12. }
  13. }
  14. .focusable-panel {
  15. opacity: 1;
  16. box-shadow: inset -3px 0 0 rgba(0,0,0, .05);
  17. &:focus {
  18. background: #282828;
  19. .selected:before {
  20. background: @background-color-selected;
  21. }
  22. }
  23. }
  24. [data-show-on-right-side=true] {
  25. .tree-view .selected:before,
  26. .focusable-panel {
  27. box-shadow: inset 3px 0 0 rgba(0,0,0, .05);
  28. }
  29. }