1/**
2 * This file provides the main design styles for the
3 * bits that surround the content.
4 *
5 * @author Anika Henke <anika@selfthinker.org>
6 * @author Andreas Gohr <andi@splitbrain.org>
7 * @author Clarence Lee <clarencedglee@gmail.com>
8 */
9
10/* tools
11********************************************************************/
12
13/* highlight selected tool */
14.mode_admin a.action.admin,
15.mode_login a.action.login,
16.mode_register a.action.register,
17.mode_profile a.action.profile,
18.mode_recent a.action.recent,
19.mode_index a.action.index,
20.mode_media a.action.media,
21.mode_revisions a.action.revs,
22.mode_backlink a.action.backlink,
23.mode_subscribe a.action.subscribe {
24    font-weight: bold;
25}
26
27form.search {
28    display: block;
29    position: relative;
30    margin-bottom: 0.5em;
31
32    input {
33        width: 18em;
34        padding: .35em 22px .35em .1em;
35    }
36
37    button {
38        background: transparent url(images/search.png) no-repeat 0 0;
39        border-width: 0;
40        width: 19px;
41        height: 14px;
42        text-indent: -99999px;
43        margin-left: -20px;
44        box-shadow: none;
45        padding: 0;
46    }
47}
48
49[dir=rtl] form.search {
50    input {
51        padding: .35em .1em .35em 22px;
52    }
53
54    button {
55        background-position: 5px 0;
56        margin-left: 0;
57        margin-right: -20px;
58        position: relative;
59    }
60}
61
62/* content
63********************************************************************/
64
65/* license note under edit window */
66.dokuwiki div.license {
67    font-size: 93.75%;
68}
69
70/* footer
71********************************************************************/
72
73.dokuwiki .wrapper {
74    margin-bottom: 1.4em;
75}
76
77#dokuwiki__footer {
78    margin-bottom: 1em;
79    text-align: center;
80
81    > .pad {
82        font-size: 0.875em;
83    }
84
85    div.license {
86        margin-bottom: 0.5em;
87        font-size: 100%;
88    }
89
90    div.buttons a {
91        img {
92            opacity: 0.5;
93        }
94
95        &:hover img,
96        &:active img,
97        &:focus img {
98            opacity: 1;
99        }
100    }
101
102}
103
104[dir=rtl] #dokuwiki__footer .license img {
105    margin: 0 0 0 .5em;
106}
107