1/* default three styles:
2 - table.plgn__pglist.pagelist (default)
3 - table.plgn__pglist.ul (list-option)
4 - table.plgn__pglist.inline (table-option: dokuwiki's table style)
5
6 extra class .plgn__pglist is always applied to table
7
8 Simple list is an default ul-li without class
9 */
10
11div.dokuwiki table.pagelist,
12div.dokuwiki table.ul {
13  border: 0;
14  padding: 0;
15  border-spacing: 0;
16  margin-bottom: 1em;
17  border-collapse: collapse;
18}
19
20div.dokuwiki table.pagelist tr {
21  border-top: 1px solid __border__;
22  border-bottom: 1px solid __border__;
23}
24
25div.dokuwiki table.pagelist th,
26div.dokuwiki table.pagelist td {
27  padding: 1px 1em 1px 0;
28  border: 0;
29}
30
31div.dokuwiki table.ul th,
32div.dokuwiki table.ul td {
33  padding: 0 1em 0 0;
34  border: 0;
35}
36
37div.dokuwiki table.ul ul {
38  margin: 0;
39}
40
41div.dokuwiki table.pagelist th,
42div.dokuwiki table.ul th {
43  background-color: __background_alt__;
44  color: __text_neu__;
45  font-size: 90%;
46}
47
48div.dokuwiki table.pagelist td,
49div.dokuwiki table.ul td {
50  color: __text_neu__;
51  font-size: 80%;
52}
53
54div.dokuwiki table.pagelist td.page,
55div.dokuwiki table.ul td.page {
56  font-size: 100%;
57}
58