This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
forked from lupo49/dokuwiki-plugin-dir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (73 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Most of this style.css is copied from the pagelist plugin,
keep it in line with that plugin...
*/
div.dokuwiki table.pagelist,
div.dokuwiki table.ul {
border: 0;
padding: 0;
border-spacing: 0;
margin-bottom: 1em;
border-collapse: collapse;
}
div.dokuwiki table.pagelist tr {
border-top: 1px solid __border__;
border-bottom: 1px solid __border__;
}
div.dokuwiki table.pagelist th,
div.dokuwiki table.pagelist td {
padding: 1px 1em 1px 0;
}
div.dokuwiki table.ul th,
div.dokuwiki table.ul td {
padding: 0 1em 0 0;
}
div.dokuwiki table.ul ul {
margin: 0 0 0 1.5em;
}
div.dokuwiki table.pagelist th,
div.dokuwiki table.ul th {
background-color: __background_alt__;
}
div.dokuwiki th.dpage,
div.dokuwiki th.page,
div.dokuwiki th.date,
div.dokuwiki th.user,
div.dokuwiki th.desc,
div.dokuwiki th.comments,
div.dokuwiki th.tags,
div.dokuwiki td.date,
div.dokuwiki td.user,
div.dokuwiki td.desc,
div.dokuwiki td.comments,
div.dokuwiki td.tags {
color: __text_neu__;
font-size: 80%;
}
div.dokuwiki th.date {
text-align: right;
}
div.dokuwiki td.date {
text-align: right;
}
div.dokuwiki td.dpage {
vertical-align: top ;
text-align: left ;
}
div.dokuwiki th.rowno {
color: __text_neu__;
font-size: 80%;
text-align: right ;
width: 5px ;
}
div.dokuwiki td.rowno {
color: __text_neu__;
font-size: 80%;
text-align: right ;
width: 5px ;
}
/* color for directory names in ucnames option */
div.dokuwiki td.dpage a.wikilink {
/* color: __extern__; */ /* pre-dokuwiki default template */
color: __link__; /*dokuwiki template */
}