1/**
2 * This file provides styles for the recent changes (?do=recent) and
3 * old revisions (?do=revisions).
4 */
5
6/*____________ list of revisions / recent changes ____________*/
7
8/* select type of revisions (media/pages) */
9.dokuwiki .changeType {
10    margin-bottom: .5em;
11}
12
13.dokuwiki form.changes ul li {
14    list-style: none;
15    margin-left: 0;
16}
17[dir=rtl] .dokuwiki form.changes ul li {
18    margin-right: 0;
19}
20.dokuwiki form.changes ul li span,
21.dokuwiki form.changes ul li a {
22    vertical-align: middle;
23}
24.dokuwiki form.changes ul li span.user a {
25    vertical-align: bottom;
26}
27.dokuwiki form.changes ul li.minor {
28    opacity: .7;
29}
30
31.dokuwiki form.changes li span.date {
32}
33.dokuwiki form.changes li a.diff_link {
34    vertical-align: baseline;
35}
36.dokuwiki form.changes li a.revisions_link {
37    vertical-align: baseline;
38}
39.dokuwiki form.changes li a.wikilink1,
40.dokuwiki form.changes li a.wikilink2 {
41}
42.dokuwiki form.changes li span.sum {
43    font-weight: bold;
44}
45.dokuwiki form.changes li span.user {
46}
47
48/*____________ size differences ____________*/
49
50.dokuwiki form.changes li .sizechange {
51    font-size: 80%;
52    border-radius: .2em;
53    padding: .1em .2em;
54    /* cannot use non-guaranteed style.ini colour placeholders, dark templates need to overwrite */
55    background-color: #ddd;
56}
57
58.dokuwiki form.changes li .sizechange.positive {
59    background-color: #cfc;;
60}
61.dokuwiki form.changes li .sizechange.negative {
62    background-color: #fdd;
63}
64
65/*____________ page navigator ____________*/
66
67.dokuwiki div.pagenav {
68    text-align: center;
69    margin: 1.4em 0;
70}
71.dokuwiki div.pagenav-prev,
72.dokuwiki div.pagenav-next {
73    display: inline;
74    margin: 0 .5em;
75}
76