jquery.treeview.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .treeview ul { background-color: white; }
  2. .treeview, .treeview ul {
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. .treeview div.hitarea {
  8. height: 15px;
  9. width: 15px;
  10. margin-left: -15px;
  11. float: left;
  12. cursor: pointer;
  13. }
  14. /* fix for IE6 */
  15. * html div.hitarea {
  16. background: #fff;
  17. filter: alpha(opacity=0);
  18. display: inline;
  19. float:none;
  20. }
  21. .treeview li {
  22. margin: 0;
  23. padding: 3px 0pt 3px 16px;
  24. }
  25. .treeview a.selected {
  26. background-color: #eee;
  27. }
  28. #treecontrol { margin: 1em 0; }
  29. .treeview .hover { color: red; cursor: pointer; }
  30. .treeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  31. .treeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  32. .treeview .expandable { background-image: url(../images/tv-expandable.gif); }
  33. .treeview .last { background-image: url(../images/tv-item-last.gif); }
  34. .treeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  35. .treeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  36. .filetree li { padding: 3px 0 1px 16px; }
  37. .filetree span.folder, .filetree span.file { padding-left: 16px; display: block; height: 15px; }
  38. .filetree span.folder { background: url(../images/folder.gif) 0 0 no-repeat; }
  39. .filetree span.file { background: url(../images/file.gif) 0 0 no-repeat; }