tree-child.module.css 540 B

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