style.css 1.6 KB

1234567891011121314151617181920
  1. .tree-apple li.open { background-image:url("minus.gif"); background-position:2px 5px; }
  2. .tree-apple li.closed, #jstree-dragged.tree-apple li li.open { background-image:url("plus.gif"); background-position:2px 5px; }
  3. .tree-apple li a, .tree-apple li span { background-image:url("folder.png"); }
  4. .tree-apple .rtl li.closed, #jstree-dragged.tree-apple .rtl li li.open { background-image:url("plus_rtl.gif"); }
  5. .tree-apple li a:hover { background-color:silver; border-color:silver; color:white; }
  6. .tree-apple li a.clicked, .tree-apple li a.clicked:hover, .tree-apple li span.clicked { background-color:#2E72DF; border-color:#2E72DF; color:white; }
  7. /* RIGHT TO LEFT SUPPORT */
  8. .tree-apple .rtl li.open { background:url("minus_rtl.gif") right 6px no-repeat; }
  9. .tree-apple .rtl li.closed { background:url("plus_rtl.gif") right 4px no-repeat; }
  10. .tree-apple .rtl li li.open, .tree-apple .rtl li li.closed { padding-right:19px; margin-right:-3px; }
  11. #jstree-dragged.tree-apple .rtl li li.open { background:url("plus_rtl.gif") right 4px no-repeat; }
  12. /* SCROLLING BACKGROUND */
  13. .tree-apple .ltr, .tree-apple .rtl { background:url("bg.jpg") left top repeat; min-width:100%; _width:100%; margin-left:0; margin-right:0; }
  14. .tree-apple .ltr > li.leaf, .tree-apple .rtl > li.leaf { background-image:none; }
  15. .tree-apple > ul > li.last { height:auto !important; margin-bottom:auto !important; background-image:none; }
  16. #jstree-dragged.tree-apple .rtl, #jstree-dragged.tree-apple .ltr { min-width:auto; _width:auto; }
  17. /* IE6
  18. * html .tree-apple ul li.leaf { _background-image: expression(/DIV/.test(this.parentNode.parentNode.tagName) ? "none" : "inherit"); }*/