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 */
8
9
10/* header
11********************************************************************/
12
13#dokuwiki__header {
14    margin: 1em 0 0;
15}
16
17#dokuwiki__header .headings {
18    /*margin-bottom: 2.1em;*/
19    /*desbest edit*/
20}
21#dokuwiki__header h1 {
22    margin-bottom: 0;
23    /*font-size: 1.5em;*/
24    /*desbest edit*/
25}
26#dokuwiki__header h1 a {
27    text-decoration: underline;
28    /*desbest edit */
29    color: __link__;
30    background-color: inherit;
31}
32#dokuwiki__header p.claim {
33    margin-bottom: 0;
34}
35#dokuwiki__header h2 {
36    margin-bottom: 0;
37    font-size: 1.125em;
38}
39
40#dokuwiki__header .tools {
41    /*margin-bottom: 2.1em;*/
42    /*desbest edit*/
43}
44#dokuwiki__header .tools ul {
45    margin-bottom: 0;
46}
47#dokuwiki__header .tools ul li {
48    display: inline;
49}
50
51#dokuwiki__header form.search {
52    margin: .5em 0 0;
53    display: block;
54}
55#dokuwiki__header form.search #qsearch__in {
56    width: 12em;
57    margin-right: .5em;
58}
59[dir=rtl] #dokuwiki__header form.search #qsearch__in {
60    margin-right: 0;
61    margin-left: .5em;
62}
63
64#dokuwiki__header div.breadcrumbs {
65    margin-bottom: .3em;
66}
67#dokuwiki__header div.breadcrumbs a {
68    color: __existing__;
69    background-color: inherit;
70}
71
72
73/* tools
74*******************************************************************
75
76/* make wiki links look the same as tool links in tool bars */
77#dokuwiki__usertools a.wikilink1,
78#dokuwiki__pagetools a.wikilink1,
79#dokuwiki__usertools a.wikilink2,
80#dokuwiki__pagetools a.wikilink2 {
81    color: __link__;
82    border-bottom-width: 0;
83}
84#dokuwiki__usertools a.wikilink2:hover,
85#dokuwiki__pagetools a.wikilink2:hover,
86#dokuwiki__usertools a.wikilink2:active,
87#dokuwiki__pagetools a.wikilink2:active,
88#dokuwiki__usertools a.wikilink2:focus,
89#dokuwiki__pagetools a.wikilink2:focus {
90    text-decoration: underline;
91}
92
93/* highlight selected tool */
94/* before Greebo: */
95.mode_admin a.action.admin,
96.mode_login a.action.login,
97.mode_register a.action.register,
98.mode_profile a.action.profile,
99.mode_recent a.action.recent,
100.mode_index a.action.index,
101.mode_media a.action.media,
102.mode_revisions a.action.revs,
103.mode_backlink a.action.backlink,
104.mode_subscribe a.action.subscribe,
105/* since Greebo: */
106.mode_admin .action.admin a,
107.mode_login .action.login a,
108.mode_register .action.register a,
109.mode_profile .action.profile a,
110.mode_recent .action.recent a,
111.mode_index .action.index a,
112.mode_media .action.media a,
113.mode_revisions .action.revs a,
114.mode_backlink .action.backlink a,
115.mode_subscribe .action.subscribe a {
116    font-weight: bold;
117}
118
119/*____________ user tools ____________*/
120
121#dokuwiki__usertools {
122    /*position: absolute;*/
123    /*top: 0;*/
124    /*right: 0;*/
125    /*border-bottom: 1px solid __border__;*/
126    /*background-color: __background_alt__;*/
127    /*width: 100%;*/
128    /*desbest edit */
129}
130#dokuwiki__usertools ul,
131#dokuwiki__pagetools ul {
132    /* imitate #dokuwiki__site */
133    margin: 0 auto;
134    max-width: __site_width__;
135    /*padding: 0 1em;*/
136    /*desbest edit */
137}
138#dokuwiki__usertools ul li.user {
139    float: left;
140    margin-left: 0;
141}
142[dir=rtl] #dokuwiki__usertools ul li.user {
143    float: right;
144    margin-right: 0;
145}
146
147/*____________ page tools ____________*/
148
149#dokuwiki__pagetools {
150    /*position: fixed;*/
151    /*bottom: 0;*/
152    /*left: 0;*/
153    /*border-top: 1px solid __border__;*/
154    /*background-color: __background_alt__;*/
155    /*width: 100%;*/
156    /*z-index: 10;*/
157    /*desbest edit */
158}
159#dokuwiki__pagetools ul li {
160    display: inline;
161    margin: 0 1.5em 0 0;
162}
163/* before Greebo: */
164#dokuwiki__pagetools ul li a.action.top,
165/* since Greebo: */
166#dokuwiki__pagetools ul li.action.top a {
167    float: right;
168}
169/* before Greebo: */
170[dir=rtl] #dokuwiki__pagetools ul li a.action.top,
171/* since Greebo: */
172[dir=rtl] #dokuwiki__pagetools ul li.action.top a {
173    float: left;
174}
175
176/* hide background images from menu items inserted via plugins */
177#dokuwiki__pagetools ul li a {
178    background-image: none !important;
179}
180#dokuwiki__pagetools ul li a::before {
181    content: none !important;
182}
183
184
185/* sidebar
186********************************************************************/
187
188#dokuwiki__aside {
189    padding-top: .4em;
190}
191
192.dokuwiki .aside {
193    overflow: hidden;
194    word-wrap: break-word;
195    line-height: 1.2;
196}
197
198/* make sidebar more condensed */
199
200.dokuwiki .aside h1 {
201    margin-bottom: .222em;
202}
203.dokuwiki .aside h2 {
204    margin-bottom: .333em;
205}
206.dokuwiki .aside h3 {
207    margin-bottom: .444em;
208}
209.dokuwiki .aside h4 {
210    margin-bottom: .5em;
211}
212.dokuwiki .aside h5 {
213    margin-bottom: .5714em;
214}
215
216.dokuwiki .aside p,
217.dokuwiki .aside ul,
218.dokuwiki .aside ol,
219.dokuwiki .aside dl,
220.dokuwiki .aside pre,
221.dokuwiki .aside table,
222.dokuwiki .aside fieldset,
223.dokuwiki .aside hr,
224.dokuwiki .aside blockquote,
225.dokuwiki .aside address {
226    margin-bottom: .7em;
227}
228
229.dokuwiki .aside ul,
230.dokuwiki .aside ol {
231    padding-left: .5em;
232}
233[dir=rtl] .dokuwiki .aside ul,
234[dir=rtl] .dokuwiki .aside ol {
235    padding-right: .5em;
236}
237.dokuwiki .aside li ul,
238.dokuwiki .aside li ol {
239    margin-bottom: 0;
240    padding: 0;
241}
242
243
244/* content
245********************************************************************/
246
247.dokuwiki .page {
248    word-wrap: break-word;
249}
250
251/* license note in footer and under edit window */
252.dokuwiki div.license {
253    font-size: 93.75%;
254}
255
256
257/* footer
258********************************************************************/
259
260.dokuwiki .wrapper {
261    margin-bottom: 2.8em;
262}
263
264#dokuwiki__footer {
265    margin-bottom: 1em;
266}
267
268#dokuwiki__footer .doc {
269    float: left;
270}
271#dokuwiki__footer .top {
272    float: right;
273}
274
275#dokuwiki__footer .license {
276    clear: both;
277}
278#dokuwiki__footer .license img {
279    margin: 0 .5em 0 0;
280    float: none;
281}
282