You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
1.8 KiB

  1. 
  2. .treeDiv
  3. {
  4. font-family: verdana,arial,sans-serif;
  5. font-size: 70.5%;
  6. font-weight: normal;
  7. background-color: #F1F1F1; /* main background color */
  8. color: #000000; /* text color */
  9. overflow: auto;
  10. margin: 0px 0px 0px 0px;
  11. padding: 0px 0px 0px 2px; // 8px is better left padding but obscures the scroll bar in Chrome */
  12. }
  13. .treeNode
  14. {
  15. white-space: nowrap;
  16. text-indent: -14px;
  17. margin: 5px 2px 5px 14px;
  18. }
  19. A.treeUnselected:hover, A.treeSelected:hover
  20. {
  21. border-top: 1px solid #999999;
  22. border-right: 1px solid #999999;
  23. border-left: 1px solid #999999;
  24. border-bottom: 1px solid #999999;
  25. background-color: #CCCCCC; /* Rollover color */
  26. color: #000000; /* Rollover text color */
  27. text-decoration: none;
  28. }
  29. A.treeUnselected, A.treeSelected
  30. {
  31. color: Black;
  32. padding: 1px 3px 1px 3px;
  33. text-decoration: none;
  34. }
  35. A.treeSelected
  36. {
  37. background-color: #FFFFFF; /* Node selection color */
  38. border-top: 1px solid #999999;
  39. border-right: 1px solid #999999;
  40. border-left: 1px solid #999999;
  41. border-bottom: 1px solid #999999;
  42. color: #000000; /* selected text color */
  43. }
  44. A.treeUnselected
  45. {
  46. border-top: solid 1px transparent; /* Non Select color - Should match background color */
  47. border-right: solid 1px transparent;
  48. border-left: solid 1px transparent;
  49. border-bottom: solid 1px transparent;
  50. background-color: transparent;
  51. color: #000000; /* text color */
  52. }
  53. .treeSubnodes
  54. {
  55. display: block;
  56. }
  57. .treeSubnodesHidden
  58. {
  59. display: none;
  60. }
  61. .treeNode IMG.treeNoLinkImage, .treeNode IMG.treeLinkImage
  62. {
  63. width: 9px; /* Icon size in pixels*/
  64. height: 9px;
  65. margin-left: 5px;
  66. margin-right: 0px;
  67. }
  68. .treeNode IMG.treeLinkImage
  69. {
  70. cursor: pointer;
  71. }