style.css 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* LOCKED */
  2. .tree-checkbox .locked li a { color:gray; }
  3. /* DOTS */
  4. .tree-checkbox ul { background-position:6px 1px; background-repeat:repeat-y; background-image:url(data:image/gif;base64,R0lGODlhAgACAIAAAB4dGf///yH5BAEAAAEALAAAAAACAAIAAAICRF4AOw==); _background-image:url("dot_for_ie.gif"); *background-image:url("dot_for_ie.gif"); }
  5. .tree-checkbox li { background-position:-64px -16px; background-repeat:no-repeat; background-image:url("icons.png"); }
  6. /* NO DOTS */
  7. .tree-checkbox .no_dots, .tree-checkbox .no_dots ul { background:transparent; }
  8. .tree-checkbox .no_dots li.leaf { background-image:none; background-color:transparent; }
  9. /* OPEN or CLOSED */
  10. .tree-checkbox li.open { background:url("icons.png") -32px -48px no-repeat; }
  11. .tree-checkbox li.closed, #jstree-dragged.tree-checkbox li li.open { background:url("icons.png") -48px -32px no-repeat; }
  12. #jstree-marker { background-image:url("icons.png"); }
  13. /* DEFAULT, HOVER, CLICKED, LOADING STATES */
  14. .tree-checkbox li a, .tree-checkbox li span { border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; }
  15. /*
  16. .tree-checkbox li a:hover, .tree-checkbox li a.hover, .tree-checkbox li span { background: #e7f4f9; border:1px solid #d8f0fa; padding:0px 3px 0px 3px; }
  17. .tree-checkbox li a.clicked, .tree-checkbox li a.clicked:hover, .tree-checkbox li span.clicked { background: #beebff; border:1px solid #99defd; padding:0px 3px 0px 3px; }
  18. */
  19. /* ICONS */
  20. .tree-checkbox ins { background-image:url("icons.png"); background-position:0 0; background-repeat:no-repeat; }
  21. .tree-checkbox ul li a.loading ins { background-image:url("throbber.gif") !important; background-position:0 0 !important; } /* UL is added to make selector stronger */
  22. .tree-checkbox li a ins.forbidden { background-position:-16px -48px; }
  23. .tree-checkbox li a.undetermined ins { background-position:0px -16px; }
  24. .tree-checkbox li a.checked ins { background-position:0px -32px; }
  25. .tree-checkbox li a:hover ins { background-position:-16px 0px; }
  26. .tree-checkbox li a.undetermined:hover ins { background-position:-16px -16px; }
  27. .tree-checkbox li a.checked:hover ins { background-position:-16px -32px; }
  28. #jstree-dragged.tree-checkbox ins { background:url("icons.png") 0 -48px no-repeat; }
  29. #jstree-dragged.tree-checkbox ins.forbidden { background:url("icons.png") -16px -48px no-repeat; }
  30. /* CONTEXT MENU */
  31. .tree-checkbox-context a ins { background-image:url("icons.png"); background-repeat:no-repeat; background-position:-64px -64px; }
  32. .tree-checkbox-context a ins.create { background-position:0 -16px; }
  33. .tree-checkbox-context a ins.rename { background-position:-16px 0px; }
  34. .tree-checkbox-context a ins.remove { background-position:0 -32px; }