1/*--------------------------------------------------|
2| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
3|---------------------------------------------------|
4| Copyright (c) 2002-2003 Geir Landro               |
5|--------------------------------------------------*/
6/*
7 a.nodeFdUrl	        Namespace with url link (headpage)	        js
8 a.node 	        Namespace without url link        	        js
9 a.nodeUrl	        Page	                                        js
10 a.nodeSel 	        Last visited page            	                js
11 a.navSel 	        Current page            	                js
12 a.indexmenu_idx_head	link style of a namespace with url (headpage)	nojs
13 a.indexmenu_idx	link style of a namespace without url	        nojs
14 */
15
16/* dtree properties. No need to change*/
17
18.dtree {
19  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
20  font-size: 11px;
21  color: __text__;
22  white-space: nowrap;
23  line-height: normal;
24}
25
26.dtree img {
27  border: 0px;
28  vertical-align: top;
29}
30
31/*Properties that can be edit*/
32
33/*Link properties*/
34.dtree a {
35  color: __existing__;
36  text-decoration: none;
37}
38
39/*Link properties*/
40.dtree a.node, .dtree a.nodeSel a.navSel {
41  white-space: nowrap;
42  padding: 1px 2px 1px 2px;
43}
44/* Last visited page highlighting*/
45.dtree a.nodeSel {
46  background-color:  __background_alt__;
47}
48/* Current page highlighting*/
49.dtree a.navSel {
50  background-color: __highlight__;
51}
52
53/*
54.dtree .clip {
55}
56*/
57
58/*nojs tree div*/
59.indexmenu_nojs {
60  display: block;
61}
62
63/*Namespace without page link in nojs mode. !important has to be used*/
64div.li a.indexmenu_idx {
65  color: __missing__ !important;
66  text-decoration: none !important;
67  font-weight: bold;
68}
69
70/*Namespace with page link (headpage) in nojs mode. !important has to be used*/
71
72div.li a.indexmenu_idx_head {
73  font-weight: bold;
74}
75
76
77/*Style for admin panel interface*/
78div.dokuwiki div.indexmenu_list_themes {
79  clear: both;
80  border-top: 2px solid __border__;
81  padding-left: 1em;
82}
83
84/*Mouseover property*/
85.dtree a.nodeFdUrl:hover, .dtree a.nodeSel:hover, a.navSel:hover, .dtree a.nodeUrl:hover {
86  color: __existing__;
87  text-decoration: underline;
88  background-color:  __background_alt__;
89}
90/*Mouseover property*/
91.dtree a.node:hover {
92  text-decoration: none;
93}
94
95/*tocbullet property*/
96.dtree .indexmenu_tocbullet {
97  position:absolute;
98  background: transparent url(images/toc_bullet.gif) no-repeat scroll;
99  vertical-align: middle;
100  width: 11px;
101  height: 11px;
102}
103
104/*scrolling arrow property*/
105.dtree .indexmenu_larrow {
106  position:absolute;
107  filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60;
108  background:transparent url(images/larrow.gif) repeat-y scroll;
109  padding-left:22px;
110  z-index:100;
111}
112
113/*toc property*/
114.indexmenu_toc {
115  font-size: 80%;
116  line-height: 1.2em;
117  white-space: normal;
118  overflow: hidden;
119  width: 200px !important;
120  z-index:100 !important;
121  word-wrap: break-word;
122}
123
124.indexmenu_toc .indexmenu_toc_inside {
125  border: 1px solid __border__;
126  background-color: __background__;
127  text-align: left;
128  padding: 0.5em 0 0.7em 0;
129  max-height: 300px;
130  height: expression( this.scrollHeight > 300 ? "300px" : "auto" );
131  overflow: auto;
132}
133
134.dtree .indexmenu_rarrow {
135  position:absolute;
136  background:white url(images/rarrow.gif) no-repeat scroll;
137  width:11px;
138  height:15px;
139}
140
141.indexmenu_rmenu {
142  position: absolute;
143  z-index: 100;
144  background-color: #fff;
145  border: 1px solid black;
146  font-size: 80%;
147  line-height: 100%;
148  padding-bottom: 5px;
149}
150
151.indexmenu_rmenuhead {
152  background-color: #CCFFCC;
153  border-bottom: 1px solid __text__;
154  color: __text__;
155  font-size: 90%;
156  margin: 0pt;
157  text-align: center;
158  padding: 1px 5px;
159  vertical-align: middle;
160  overflow: hidden;
161  width: 80px;
162}
163
164.indexmenu_rmenu ul,.indexmenu_rmenu li {
165  list-style-type: none !important;
166  list-style-image: none !important;
167  color: #000 !important;
168  margin: 2px !important;
169  text-align: center;
170}
171
172.indexmenu_rmenu a:hover {
173  background-color: #000 !important;
174  color: #fff !important;
175}
176
177.indexmenu_opts {
178  font-size: 80%;
179}
180
181.dtree .emptynode {
182  background: transparent url(images/empty.gif) no-repeat scroll;
183  display: inline;
184  padding: 1px 8px;
185  width: 16px;
186  height: 16px;
187  vertical-align: top;
188  /* needed by ie7 */
189  zoom: 1;
190}
191