zTreeStyle.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*-------------------------------------
  2. zTree Style
  3. version: 2.0
  4. author: Hunter.z
  5. email: hunter.z@263.net
  6. website: http://code.google.com/p/jquerytree/
  7. -------------------------------------*/
  8. .tree{
  9. margin:0;
  10. padding: 5px;
  11. color:#333;
  12. font-size:12px;
  13. font-family: Verdana, Arial, Helvetica, AppleGothic, sans-serif;
  14. }
  15. .tree li{
  16. padding:0; margin:0;
  17. list-style:none;
  18. line-height:18px;
  19. text-align:left;
  20. white-space:nowrap;
  21. }
  22. .tree li ul{ margin:0; padding:0 0 0 18px;}
  23. .tree li ul.line{ background:url(line_conn.gif) 0 0 repeat-y;}
  24. .tree li a {
  25. padding:0; margin:0 10px 0 0;
  26. cursor:pointer;
  27. color:#666;
  28. text-decoration:none;
  29. }
  30. .tree li a:hover {font-weight:600;color:#333}
  31. .tree li a.curSelectedNode {
  32. background-color:#FFE6B0;
  33. color:black;
  34. border:1px #FFB951 solid;
  35. opacity:0.8; filter:alpha(opacity=80);
  36. }
  37. .tree li a.curSelectedNode_Edit {
  38. line-height: 18px;
  39. background-color:#FFE6B0;
  40. color:black;
  41. border:1px #FFB951 solid;
  42. opacity:0.8; filter:alpha(opacity=80);
  43. }
  44. .tree li a.tmpTargetNode {
  45. background-color:#316AC5;
  46. color:white;
  47. border:1px #316AC5 solid;
  48. opacity:0.8; filter:alpha(opacity=80);
  49. }
  50. .tree li a input.rename {height:13px; width:80px; padding:0; margin:0; font-size:12px;}
  51. .tree li a.now{
  52. color:#e08c1c;
  53. font-weight:600
  54. }
  55. .tree li button {
  56. width:18px; height:18px;
  57. padding:0; margin:0;
  58. vertical-align:middle;
  59. border:0 none;
  60. background-color: transparent;
  61. background-repeat: no-repeat;
  62. background-position: 0 0;
  63. cursor: pointer;
  64. }
  65. .tree li button.ico {
  66. padding:0; margin:0 2px 0 0;
  67. }
  68. .tree li button.edit {background:url("edit.png") no-repeat scroll 0 0 transparent;}
  69. .tree li button.remove {background:url("remove.png") no-repeat scroll 0 0 transparent;}
  70. .tree li button.chk {
  71. width:13px; height:13px;
  72. padding:0; margin:0 3px 0 0;
  73. vertical-align:middle;
  74. border:0 none;
  75. cursor: auto;
  76. }
  77. .tree li button.chk.checkbox_false_full { background:url("checkbox.png") no-repeat scroll 0 0 transparent;}
  78. .tree li button.chk.checkbox_false_full_focus { background:url("checkbox.png") no-repeat scroll 0 -12px transparent;}
  79. .tree li button.chk.checkbox_false_part { background:url("checkbox.png") no-repeat scroll 0 -72px transparent;}
  80. .tree li button.chk.checkbox_false_part_focus { background:url("checkbox.png") no-repeat scroll 0 -84px transparent;}
  81. .tree li button.chk.checkbox_true_full { background:url("checkbox.png") no-repeat scroll 0 -24px transparent;}
  82. .tree li button.chk.checkbox_true_full_focus { background:url("checkbox.png") no-repeat scroll 0 -36px transparent;}
  83. .tree li button.chk.checkbox_true_part { background:url("checkbox.png") no-repeat scroll 0 -48px transparent;}
  84. .tree li button.chk.checkbox_true_part_focus { background:url("checkbox.png") no-repeat scroll 0 -60px transparent;}
  85. .tree li button.chk.radio_false_full { background:url("radio.png") no-repeat scroll 0 0 transparent;}
  86. .tree li button.chk.radio_false_full_focus { background:url("radio.png") no-repeat scroll 0 -12px transparent;}
  87. .tree li button.chk.radio_false_part { background:url("radio.png") no-repeat scroll 0 -72px transparent;}
  88. .tree li button.chk.radio_false_part_focus { background:url("radio.png") no-repeat scroll 0 -84px transparent;}
  89. .tree li button.chk.radio_true_full { background:url("radio.png") no-repeat scroll 0 -24px transparent;}
  90. .tree li button.chk.radio_true_full_focus { background:url("radio.png") no-repeat scroll 0 -36px transparent;}
  91. .tree li button.chk.radio_true_part { background:url("radio.png") no-repeat scroll 0 -48px transparent;}
  92. .tree li button.chk.radio_true_part_focus { background:url("radio.png") no-repeat scroll 0 -60px transparent;}
  93. .tree li button.switch_root_open{ background:url(minus_root.gif);}
  94. .tree li button.switch_root_close{ background:url(plus_root.gif);}
  95. .tree li button.switch_roots_open{ background:url(minus_top.gif);}
  96. .tree li button.switch_roots_close{ background:url(plus_top.gif);}
  97. .tree li button.switch_center_open{ background:url(minus_center.gif);}
  98. .tree li button.switch_center_close{ background:url(plus_center.gif);}
  99. .tree li button.switch_bottom_open{ background:url(minus_bottom.gif);}
  100. .tree li button.switch_bottom_close{ background:url(plus_bottom.gif);}
  101. .tree li button.switch_noLine_open{ background:url(minus_noLine.gif);}
  102. .tree li button.switch_noLine_close{ background:url(plus_noLine.gif);}
  103. .tree li button.switch_root_docu{ background:none;}
  104. .tree li button.switch_roots_docu{ background:url(line_top.gif);}
  105. .tree li button.switch_center_docu{ background:url(line_center.gif);}
  106. .tree li button.switch_bottom_docu{ background:url(line_bottom.gif);}
  107. .tree li button.switch_noLine_docu{ background:none;}
  108. .tree li button.ico_loading{ background:url(loading.gif) no-repeat scroll 0 0 transparent;}
  109. .tree li button.ico_open{ background:url(folder_Open.gif);}
  110. .tree li button.ico_close{ background:url(folder_Close.gif);}
  111. .tree li button.ico_docu{ background:url(page.gif);}
  112. .tree INPUT.checkbox {
  113. padding:0; margin:0 2px 0 0;
  114. width:18px; height:18px;
  115. vertical-align:middle;
  116. }
  117. .tmpTargetTree {
  118. background-color:#FFE6B0;
  119. border:0px #FFB951 solid;
  120. opacity:0.8; filter:alpha(opacity=80);
  121. }
  122. button.tmpzTreeMove_arrow {
  123. width:16px; height:16px;
  124. padding:0; margin:2px 0 0 1px;
  125. border:0 none;
  126. position:absolute;
  127. background:url(moveArrow.png) no-repeat scroll 0 0 transparent;
  128. }
  129. .zTreeDragUL {
  130. margin:0; padding:0;
  131. position:absolute;
  132. background-color:#cfcfcf;
  133. border:1px #00B83F dotted;
  134. opacity:0.8; filter:alpha(opacity=80);
  135. }
  136. .zTreeMask {
  137. z-index:10000;
  138. background-color:#cfcfcf;
  139. opacity:0.0; filter:alpha(opacity=0);
  140. position:absolute;
  141. }