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