1.folder {
2    padding-left: 2px;
3    padding-right: 9px;
4    background: url(closed.gif) no-repeat right center;
5}
6
7.folder.open {
8    background: url(open.gif) no-repeat right center;
9}
10
11div.folded {
12    padding: 0.5em;
13    border: 1px dotted __border__;
14}
15
16span.folded {
17    border: 1px dotted __border__;
18}
19
20span.indicator {
21    visibility: hidden;
22}
23
24/* fold/unfold all button in pagetools area */
25#dokuwiki__pagetools ul li a.fold_unfold_all {
26    background-position: right 0;
27}
28
29#dokuwiki__pagetools ul li a.fold_unfold_all:before {
30    content: url(pagetools-close-open-sprite.png);
31    margin-top: 0;
32}
33
34#dokuwiki__pagetools:hover ul li a.fold_unfold_all,
35#dokuwiki__pagetools ul li a.fold_unfold_all:focus,
36#dokuwiki__pagetools ul li a.fold_unfold_all:active {
37    background-image: url(pagetools-close-open-sprite.png);
38}
39
40#dokuwiki__pagetools ul li a.fold_unfold_all:hover,
41#dokuwiki__pagetools ul li a.fold_unfold_all:active,
42#dokuwiki__pagetools ul li a.fold_unfold_all:focus {
43    background-position: right -45px;
44}
45
46/* below style rules are created by javascript
47.folded.hidden { display: none; }
48.folder span.indicator { visibility: visible; }
49*/
50