tree-child.module.css 466 B

123456789101112131415161718
  1. /**
  2. * @file
  3. * Visual styles for a nested tree child.
  4. */
  5. div.tree-child {
  6. background: url(../../../../misc/tree.png) no-repeat 11px center; /* LTR */
  7. }
  8. div.tree-child-last {
  9. background: url(../../../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
  10. }
  11. [dir="rtl"] div.tree-child,
  12. [dir="rtl"] div.tree-child-last {
  13. background-position: -65px center;
  14. }
  15. div.tree-child-horizontal {
  16. background: url(../../../../misc/tree.png) no-repeat -11px center;
  17. }