1/**
2/**
3 * This file provides the styles for the page tools
4 * (fly out navigation beside the page to edit, etc).
5 *
6 * @author Anika Henke <anika@selfthinker.org>
7 * @author Andreas Gohr <andi@splitbrain.org>
8 */
9
10#dokuwiki__site > .site {
11    /* give space to the right so the tools won't disappear on smaller screens */
12    /* it's 40px because the 30px wide icons will have 5px more spacing to the left and right */
13    padding-right: 40px;
14    /* give the same space to the left to balance it out */
15    /*padding-left: 40px;*/
16}
17.dokuwiki div.page {
18    height: 190px;
19    min-height: 190px; /* 30 (= height of icons) x 6 (= maximum number of possible tools) + 2x5 */
20    height: auto;
21}
22#dokuwiki__usertools {
23    /* move the tools just outside of the site */
24    right: 40px;
25}
26[dir=rtl] #dokuwiki__usertools {
27    right: auto;
28    left: 40px;
29}
30
31
32#dokuwiki__pagetools {
33    position: absolute;
34    right: -40px;
35    /* on same vertical level as first headline, because .page has 2em padding */
36	/* Edit: higher */
37    top: -2.5em;
38    width: 40px;
39}
40[dir=rtl] #dokuwiki__pagetools {
41    right: auto;
42    left: -40px;
43}
44
45#dokuwiki__pagetools div.tools {
46    position: fixed;
47    width: 40px;
48}
49
50#dokuwiki__pagetools ul {
51    position: absolute;
52    right: 0;
53    text-align: right;
54    margin: 0;
55    padding: 0;
56    /* add transparent border to prevent jumping when proper border is added on hover */
57    border: 1px solid transparent;
58    z-index: 10;
59}
60[dir=rtl] #dokuwiki__pagetools ul {
61    right: auto;
62    left: 0;
63    text-align: left;
64}
65
66#dokuwiki__pagetools ul li {
67    padding: 0;
68    margin: 0;
69    list-style: none;
70    font-size: 0.875em;
71}
72
73#dokuwiki__pagetools ul li a {
74    display: block;
75    min-height: 20px; /* 30 - 2x5 */
76    line-height: 20px;
77    padding: 0;
78    background-position: right 0;
79    background-repeat: no-repeat;
80    /* add transparent border to prevent jumping when proper border is added on focus */
81    border: 1px solid transparent;
82    white-space: nowrap;
83    width: 30px;
84    height: 30px;
85    overflow: hidden;
86    margin-left: auto; /* align right if the ul is larger because one item is focused */
87}
88
89#dokuwiki__pagetools ul li a:before {
90    content: url(images/pagetools-sprite.png);
91    display: inline-block;
92    font-size: 0;
93    line-height: 0;
94}
95
96[dir=rtl] #dokuwiki__pagetools ul li a {
97    background-position: left 0;
98    margin-right: auto;
99    margin-left: 0;
100}
101
102/* show all tools on hover and individual tools on focus */
103#dokuwiki__pagetools:hover ul,
104#dokuwiki__pagetools ul li a:focus,
105#dokuwiki__pagetools ul li a:active {
106    background-color: __background__;
107    border-color: __border__;
108    border-radius: 2px;
109    box-shadow: 2px 2px 2px __text_alt__;
110}
111
112#dokuwiki__pagetools:hover ul li a,
113#dokuwiki__pagetools ul li a:focus,
114#dokuwiki__pagetools ul li a:active {
115    width: auto;
116    height: auto;
117    overflow: visible;
118    padding: 5px 40px 5px 5px;
119    background-image: url(images/pagetools-sprite.png);
120}
121
122#dokuwiki__pagetools:hover ul li a:before,
123#dokuwiki__pagetools ul li a:focus:before {
124    content: none;
125}
126
127[dir=rtl] #dokuwiki__pagetools:hover ul,
128[dir=rtl] #dokuwiki__pagetools ul li a:focus {
129    box-shadow: -2px 2px 2px __text_alt__;
130}
131
132[dir=rtl] #dokuwiki__pagetools:hover li a,
133[dir=rtl] #dokuwiki__pagetools ul li a:focus,
134[dir=rtl] #dokuwiki__pagetools ul li a:active {
135    padding: 5px 5px 5px 40px;
136}
137
138/* IE7 fixes, doesn't work without images */
139
140#IE7 #dokuwiki__pagetools ul li a {
141    background-image: url(images/pagetools-sprite.png);
142}
143
144#IE7 #dokuwiki__pagetools:hover ul li a span,
145#IE7 #dokuwiki__pagetools ul li a:focus span,
146#IE7 #dokuwiki__pagetools ul li a:active span {
147    clip: auto;
148    display: inline;
149    position: static;
150}
151
152#IE7 #dokuwiki__pagetools ul li a span {
153    clip: rect(0 0 0 0);
154    position: absolute;
155}
156
157#dokuwiki__pagetools ul li a:hover,
158#dokuwiki__pagetools ul li a:active,
159#dokuwiki__pagetools ul li a:focus {
160    text-decoration: none;
161}
162#dokuwiki__pagetools ul li a:hover {
163    background-color: __background_alt__;
164}
165
166/*____________ all available icons in sprite ____________*/
167
168#dokuwiki__pagetools ul li a.edit {
169    background-position: right 0;
170}
171#dokuwiki__pagetools ul li a.edit:hover,
172#dokuwiki__pagetools ul li a.edit:active,
173#dokuwiki__pagetools ul li a.edit:focus {
174    background-position: right -45px;
175}
176[dir=rtl] #dokuwiki__pagetools ul li a.edit {
177    background-position: left 0;
178}
179[dir=rtl] #dokuwiki__pagetools ul li a.edit:hover,
180[dir=rtl] #dokuwiki__pagetools ul li a.edit:active,
181[dir=rtl] #dokuwiki__pagetools ul li a.edit:focus {
182    background-position: left -45px;
183}
184
185#dokuwiki__pagetools ul li a.create:before {
186    margin-top: -90px;
187}
188#dokuwiki__pagetools ul li a.create {
189    background-position: right -90px;
190}
191#dokuwiki__pagetools ul li a.create:hover,
192#dokuwiki__pagetools ul li a.create:active,
193#dokuwiki__pagetools ul li a.create:focus {
194    background-position: right -135px;
195}
196[dir=rtl] #dokuwiki__pagetools ul li a.create {
197    background-position: left -90px;
198}
199[dir=rtl] #dokuwiki__pagetools ul li a.create:hover,
200[dir=rtl] #dokuwiki__pagetools ul li a.create:active,
201[dir=rtl] #dokuwiki__pagetools ul li a.create:focus {
202    background-position: left -135px;
203}
204
205#dokuwiki__pagetools ul li a.show {
206    background-position: right -270px;
207}
208#dokuwiki__pagetools ul li a.show:before {
209    margin-top: -270px;
210}
211#dokuwiki__pagetools ul li a.show:hover,
212#dokuwiki__pagetools ul li a.show:active,
213#dokuwiki__pagetools ul li a.show:focus {
214    background-position: right -315px;
215}
216[dir=rtl] #dokuwiki__pagetools ul li a.show {
217    background-position: left -270px;
218}
219[dir=rtl] #dokuwiki__pagetools ul li a.show:hover,
220[dir=rtl] #dokuwiki__pagetools ul li a.show:active,
221[dir=rtl] #dokuwiki__pagetools ul li a.show:focus {
222    background-position: left -315px;
223}
224
225#dokuwiki__pagetools ul li a.source {
226    background-position: right -360px;
227}
228#dokuwiki__pagetools ul li a.source:before {
229    margin-top: -360px;
230}
231#dokuwiki__pagetools ul li a.source:hover,
232#dokuwiki__pagetools ul li a.source:active,
233#dokuwiki__pagetools ul li a.source:focus {
234    background-position: right -405px;
235}
236[dir=rtl] #dokuwiki__pagetools ul li a.source {
237    background-position: left -360px;
238}
239[dir=rtl] #dokuwiki__pagetools ul li a.source:hover,
240[dir=rtl] #dokuwiki__pagetools ul li a.source:active,
241[dir=rtl] #dokuwiki__pagetools ul li a.source:focus {
242    background-position: left -405px;
243}
244
245#dokuwiki__pagetools ul li a.draft {
246    background-position: right -180px;
247}
248#dokuwiki__pagetools ul li a.draft:before {
249    margin-top: -180px;
250}
251#dokuwiki__pagetools ul li a.draft:hover,
252#dokuwiki__pagetools ul li a.draft:active,
253#dokuwiki__pagetools ul li a.draft:focus {
254    background-position: right -225px;
255}
256[dir=rtl] #dokuwiki__pagetools ul li a.draft {
257    background-position: left -180px;
258}
259[dir=rtl] #dokuwiki__pagetools ul li a.draft:hover,
260[dir=rtl] #dokuwiki__pagetools ul li a.draft:active,
261[dir=rtl] #dokuwiki__pagetools ul li a.draft:focus {
262    background-position: left -225px;
263}
264
265#dokuwiki__pagetools ul li a.revs {
266    background-position: right -540px;
267}
268#dokuwiki__pagetools ul li a.revs:before {
269    margin-top: -540px;
270}
271#dokuwiki__pagetools ul li a.revs:hover,
272#dokuwiki__pagetools ul li a.revs:active,
273#dokuwiki__pagetools ul li a.revs:focus,
274.mode_revisions #dokuwiki__pagetools ul li a.revs {
275    background-position: right -585px;
276}
277.mode_revisions #dokuwiki__pagetools ul li a.revs:before {
278    margin-top: -585px;
279}
280[dir=rtl] #dokuwiki__pagetools ul li a.revs {
281    background-position: left -540px;
282}
283[dir=rtl] #dokuwiki__pagetools ul li a.revs:hover,
284[dir=rtl] #dokuwiki__pagetools ul li a.revs:active,
285[dir=rtl] #dokuwiki__pagetools ul li a.revs:focus,
286[dir=rtl] .mode_revisions #dokuwiki__pagetools ul li a.revs {
287    background-position: left -585px;
288}
289
290#dokuwiki__pagetools ul li a.backlink {
291    background-position: right -630px;
292}
293#dokuwiki__pagetools ul li a.backlink:before {
294    margin-top: -630px;
295}
296#dokuwiki__pagetools ul li a.backlink:hover,
297#dokuwiki__pagetools ul li a.backlink:active,
298#dokuwiki__pagetools ul li a.backlink:focus,
299.mode_backlink #dokuwiki__pagetools ul li a.backlink {
300    background-position: right -675px;
301}
302.mode_backlink #dokuwiki__pagetools ul li a.backlink:before {
303    margin-top: -675px;
304}
305[dir=rtl] #dokuwiki__pagetools ul li a.backlink {
306    background-position: left -630px;
307}
308[dir=rtl] #dokuwiki__pagetools ul li a.backlink:hover,
309[dir=rtl] #dokuwiki__pagetools ul li a.backlink:active,
310[dir=rtl] #dokuwiki__pagetools ul li a.backlink:focus,
311[dir=rtl] .mode_backlink #dokuwiki__pagetools ul li a.backlink {
312    background-position: left -675px;
313}
314
315#dokuwiki__pagetools ul li a.top {
316    background-position: right -810px;
317}
318#dokuwiki__pagetools ul li a.top:before{
319    margin-top: -810px;
320}
321#dokuwiki__pagetools ul li a.top:hover,
322#dokuwiki__pagetools ul li a.top:active,
323#dokuwiki__pagetools ul li a.top:focus {
324    background-position: right -855px;
325}
326[dir=rtl] #dokuwiki__pagetools ul li a.top {
327    background-position: left -810px;
328}
329[dir=rtl] #dokuwiki__pagetools ul li a.top:hover,
330[dir=rtl] #dokuwiki__pagetools ul li a.top:active,
331[dir=rtl] #dokuwiki__pagetools ul li a.top:focus {
332    background-position: left -855px;
333}
334
335#dokuwiki__pagetools ul li a.revert {
336    background-position: right -450px;
337}
338#dokuwiki__pagetools ul li a.revert:before {
339    margin-top: -450px;
340}
341#dokuwiki__pagetools ul li a.revert:hover,
342#dokuwiki__pagetools ul li a.revert:active,
343#dokuwiki__pagetools ul li a.revert:focus,
344.mode_revert #dokuwiki__pagetools ul li a.revert {
345    background-position: right -495px;
346}
347.mode_revert #dokuwiki__pagetools ul li a.revert:before {
348    margin-top: -450px;
349}
350[dir=rtl] #dokuwiki__pagetools ul li a.revert {
351    background-position: left -450px;
352}
353[dir=rtl] #dokuwiki__pagetools ul li a.revert:hover,
354[dir=rtl] #dokuwiki__pagetools ul li a.revert:active,
355[dir=rtl] #dokuwiki__pagetools ul li a.revert:focus,
356[dir=rtl] .mode_revert #dokuwiki__pagetools ul li a.revert {
357    background-position: left -495px;
358}
359
360#dokuwiki__pagetools ul li a.subscribe {
361    background-position: right -720px;
362}
363#dokuwiki__pagetools ul li a.subscribe:before {
364    margin-top: -720px;
365}
366#dokuwiki__pagetools ul li a.subscribe:hover,
367#dokuwiki__pagetools ul li a.subscribe:active,
368#dokuwiki__pagetools ul li a.subscribe:focus,
369.mode_subscribe #dokuwiki__pagetools ul li a.subscribe {
370    background-position: right -765px;
371}
372.mode_subscribe #dokuwiki__pagetools ul li a.subscribe:before {
373    margin-top: -765px;
374}
375[dir=rtl] #dokuwiki__pagetools ul li a.subscribe {
376    background-position: left -720px;
377}
378[dir=rtl] #dokuwiki__pagetools ul li a.subscribe:hover,
379[dir=rtl] #dokuwiki__pagetools ul li a.subscribe:active,
380[dir=rtl] #dokuwiki__pagetools ul li a.subscribe:focus,
381[dir=rtl] .mode_subscribe #dokuwiki__pagetools ul li a.subscribe {
382    background-position: left -765px;
383}
384
385#dokuwiki__pagetools ul li a.mediaManager {
386    background-position: right -900px;
387}
388#dokuwiki__pagetools ul li a.mediaManager:before {
389    margin-top: -900px;
390}
391#dokuwiki__pagetools ul li a.mediaManager:hover,
392#dokuwiki__pagetools ul li a.mediaManager:active,
393#dokuwiki__pagetools ul li a.mediaManager:focus {
394    background-position: right -945px;
395}
396[dir=rtl] #dokuwiki__pagetools ul li a.mediaManager {
397    background-position: left -900px;
398}
399[dir=rtl] #dokuwiki__pagetools ul li a.mediaManager:hover,
400[dir=rtl] #dokuwiki__pagetools ul li a.mediaManager:active,
401[dir=rtl] #dokuwiki__pagetools ul li a.mediaManager:focus {
402    background-position: left -945px;
403}
404
405#dokuwiki__pagetools ul li a.back {
406    background-position: right -990px;
407}
408#dokuwiki__pagetools ul li a.back {
409    margin-top: -990px;
410}
411#dokuwiki__pagetools ul li a.back:hover,
412#dokuwiki__pagetools ul li a.back:active,
413#dokuwiki__pagetools ul li a.back:focus {
414    background-position: right -1035px;
415}
416[dir=rtl] #dokuwiki__pagetools ul li a.back {
417    background-position: left -990px;
418}
419[dir=rtl] #dokuwiki__pagetools ul li a.back:hover,
420[dir=rtl] #dokuwiki__pagetools ul li a.back:active,
421[dir=rtl] #dokuwiki__pagetools ul li a.back:focus {
422    background-position: left -1035px;
423}
424
425
426#dokuwiki__pagetools ul li a.print:before {
427    margin-top: -1080px;
428}
429#dokuwiki__pagetools ul li a.print{
430    background-position: right -1080px;
431}
432#dokuwiki__pagetools ul li a.print:hover,
433#dokuwiki__pagetools ul li a.print:active,
434#dokuwiki__pagetools ul li a.print:focus {
435    background-position: right -1125px;
436}
437
438/* start 14_recent css definition */
439#dokuwiki__pagetools ul li a.media {
440    background-position: right -1170px;
441}
442#dokuwiki__pagetools ul li a.media:before {
443    margin-top: -1170px;
444}
445#dokuwiki__pagetools ul li a.media:hover,
446#dokuwiki__pagetools ul li a.media:active,
447#dokuwiki__pagetools ul li a.media:focus,
448.mode_media #dokuwiki__pagetools ul li a.media {
449    background-position: right -1215px;
450}
451.mode_media #dokuwiki__pagetools ul li a.media:before {
452    margin-top: -1215px;
453}
454[dir=rtl] #dokuwiki__pagetools ul li a.media {
455    background-position: left -1170px;
456}
457[dir=rtl] #dokuwiki__pagetools ul li a.media:hover,
458[dir=rtl] #dokuwiki__pagetools ul li a.media:active,
459[dir=rtl] #dokuwiki__pagetools ul li a.media:focus,
460[dir=rtl] .mode_media #dokuwiki__pagetools ul li a.media {
461    background-position: left -1215px;
462}
463/* exit 14_recent css definition */
464
465/* start 15_recent css definition */
466#dokuwiki__pagetools ul li a.recent {
467    background-position: right -1260px;
468}
469#dokuwiki__pagetools ul li a.recent:before {
470    margin-top: -1260px;
471}
472#dokuwiki__pagetools ul li a.recent:hover,
473#dokuwiki__pagetools ul li a.recent:active,
474#dokuwiki__pagetools ul li a.recent:focus,
475.mode_recent #dokuwiki__pagetools ul li a.recent {
476    background-position: right -1305px;
477}
478.mode_recent #dokuwiki__pagetools ul li a.recent:before {
479    margin-top: -1305px;
480}
481[dir=rtl] #dokuwiki__pagetools ul li a.recent {
482    background-position: left -1260px;
483}
484[dir=rtl] #dokuwiki__pagetools ul li a.recent:hover,
485[dir=rtl] #dokuwiki__pagetools ul li a.recent:active,
486[dir=rtl] #dokuwiki__pagetools ul li a.recent:focus,
487[dir=rtl] .mode_recent #dokuwiki__pagetools ul li a.recent {
488    background-position: left -1305px;
489}
490/* exit 15_recent css definition */
491
492/* start 16_index css definition */
493#dokuwiki__pagetools ul li a.index {
494    background-position: right -1350px;
495}
496#dokuwiki__pagetools ul li a.index:before {
497    margin-top: -1350px;
498}
499#dokuwiki__pagetools ul li a.index:hover,
500#dokuwiki__pagetools ul li a.index:active,
501#dokuwiki__pagetools ul li a.index:focus,
502.mode_index #dokuwiki__pagetools ul li a.index {
503    background-position: right -1395px;
504}
505.mode_index #dokuwiki__pagetools ul li a.index:before {
506    margin-top: -1395px;
507}
508[dir=rtl] #dokuwiki__pagetools ul li a.index {
509    background-position: left -1350px;
510}
511[dir=rtl] #dokuwiki__pagetools ul li a.index:hover,
512[dir=rtl] #dokuwiki__pagetools ul li a.index:active,
513[dir=rtl] #dokuwiki__pagetools ul li a.index:focus,
514[dir=rtl] .mode_index #dokuwiki__pagetools ul li a.index {
515    background-position: left -1395px;
516}
517/* exit 16_index css definition */
518
519/* start 17_feedback css definition */
520#dokuwiki__pagetools ul li a.feedback {
521    background-position: right -1440px;
522}
523#dokuwiki__pagetools ul li a.feedback:before {
524    margin-top: -1440px;
525}
526#dokuwiki__pagetools ul li a.feedback:hover,
527#dokuwiki__pagetools ul li a.feedback:active,
528#dokuwiki__pagetools ul li a.feedback:focus,
529.mode_feedback #dokuwiki__pagetools ul li a.feedback {
530    background-position: right -1485px;
531}
532.mode_feedback #dokuwiki__pagetools ul li a.feedback:before {
533    margin-top: -1485px;
534}
535[dir=rtl] #dokuwiki__pagetools ul li a.feedback {
536    background-position: left -1440px;
537}
538[dir=rtl] #dokuwiki__pagetools ul li a.feedback:hover,
539[dir=rtl] #dokuwiki__pagetools ul li a.feedback:active,
540[dir=rtl] #dokuwiki__pagetools ul li a.feedback:focus,
541[dir=rtl] .mode_feedback #dokuwiki__pagetools ul li a.feedback {
542    background-position: left -1485px;
543}
544/* exit 17_feedback css definition */
545
546/* start 18_login css definition */
547#dokuwiki__pagetools ul li a.login {
548    background-position: right -1530px;
549}
550#dokuwiki__pagetools ul li a.login:before {
551    margin-top: -1530px;
552}
553#dokuwiki__pagetools ul li a.login:hover,
554#dokuwiki__pagetools ul li a.login:active,
555#dokuwiki__pagetools ul li a.login:focus,
556.mode_login #dokuwiki__pagetools ul li a.login {
557    background-position: right -1575px;
558}
559.mode_login #dokuwiki__pagetools ul li a.login:before {
560    margin-top: -1575px;
561}
562[dir=rtl] #dokuwiki__pagetools ul li a.login {
563    background-position: left -1530px;
564}
565[dir=rtl] #dokuwiki__pagetools ul li a.login:hover,
566[dir=rtl] #dokuwiki__pagetools ul li a.login:active,
567[dir=rtl] #dokuwiki__pagetools ul li a.login:focus,
568[dir=rtl] .mode_login #dokuwiki__pagetools ul li a.login {
569    background-position: left -1575px;
570}
571/* exit 18_login css definition */
572
573/* start 19_logout css definition - always show blue-hovermode icon*/
574#dokuwiki__pagetools ul li a.logout {
575    background-position: right -1665px;
576}
577#dokuwiki__pagetools ul li a.logout:before {
578    margin-top: -1665px;
579}
580#dokuwiki__pagetools ul li a.logout:hover,
581#dokuwiki__pagetools ul li a.logout:active,
582#dokuwiki__pagetools ul li a.logout:focus,
583.mode_logout #dokuwiki__pagetools ul li a.logout {
584    background-position: right -1665px;
585}
586.mode_logout #dokuwiki__pagetools ul li a.logout:before {
587    margin-top: -1665px;
588}
589[dir=rtl] #dokuwiki__pagetools ul li a.logout {
590    background-position: left -1665px;
591}
592[dir=rtl] #dokuwiki__pagetools ul li a.logout:hover,
593[dir=rtl] #dokuwiki__pagetools ul li a.logout:active,
594[dir=rtl] #dokuwiki__pagetools ul li a.logout:focus,
595[dir=rtl] .mode_logout #dokuwiki__pagetools ul li a.logout {
596    background-position: left -1665px;
597}
598/* exit 19_logout css definition */
599
600/* start 20_admin css definition */
601#dokuwiki__pagetools ul li a.admin {
602    background-position: right -1710px;
603}
604#dokuwiki__pagetools ul li a.admin:before {
605    margin-top: -1710px;
606}
607#dokuwiki__pagetools ul li a.admin:hover,
608#dokuwiki__pagetools ul li a.admin:active,
609#dokuwiki__pagetools ul li a.admin:focus,
610.mode_admin #dokuwiki__pagetools ul li a.admin {
611    background-position: right -1755px;
612}
613.mode_admin #dokuwiki__pagetools ul li a.admin:before {
614    margin-top: -1755px;
615}
616[dir=rtl] #dokuwiki__pagetools ul li a.admin {
617    background-position: left -1710px;
618}
619[dir=rtl] #dokuwiki__pagetools ul li a.admin:hover,
620[dir=rtl] #dokuwiki__pagetools ul li a.admin:active,
621[dir=rtl] #dokuwiki__pagetools ul li a.admin:focus,
622[dir=rtl] .mode_admin #dokuwiki__pagetools ul li a.admin {
623    background-position: left -1755px;
624}
625/* exit 20_admin css definition */
626
627/* start 21_profile css definition */
628#dokuwiki__pagetools ul li a.profile {
629    background-position: right -1800px;
630}
631#dokuwiki__pagetools ul li a.profile:before {
632    margin-top: -1800px;
633}
634#dokuwiki__pagetools ul li a.profile:hover,
635#dokuwiki__pagetools ul li a.profile:active,
636#dokuwiki__pagetools ul li a.profile:focus,
637.mode_profile #dokuwiki__pagetools ul li a.profile {
638    background-position: right -1845px;
639}
640.mode_profile #dokuwiki__pagetools ul li a.profile:before {
641    margin-top: -1845px;
642}
643[dir=rtl] #dokuwiki__pagetools ul li a.profile {
644    background-position: left -1800px;
645}
646[dir=rtl] #dokuwiki__pagetools ul li a.profile:hover,
647[dir=rtl] #dokuwiki__pagetools ul li a.profile:active,
648[dir=rtl] #dokuwiki__pagetools ul li a.profile:focus,
649[dir=rtl] .mode_profile #dokuwiki__pagetools ul li a.profile {
650    background-position: left -1845px;
651}
652/* exit 21_profile css definition */
653
654/* start 22_save css definition */
655#dokuwiki__pagetools ul li a.save {
656    background-position: right -1890px;
657}
658#dokuwiki__pagetools ul li a.save:before {
659    margin-top: -1890px;
660}
661#dokuwiki__pagetools ul li a.save:hover,
662#dokuwiki__pagetools ul li a.save:active,
663#dokuwiki__pagetools ul li a.save:focus,
664.mode_save #dokuwiki__pagetools ul li a.save {
665    background-position: right -1935px;
666}
667.mode_save #dokuwiki__pagetools ul li a.save:before {
668    margin-top: -1935px;
669}
670[dir=rtl] #dokuwiki__pagetools ul li a.save {
671    background-position: left -1890px;
672}
673[dir=rtl] #dokuwiki__pagetools ul li a.save:hover,
674[dir=rtl] #dokuwiki__pagetools ul li a.save:active,
675[dir=rtl] #dokuwiki__pagetools ul li a.save:focus,
676[dir=rtl] .mode_save #dokuwiki__pagetools ul li a.save {
677    background-position: left -1935px;
678}
679/* exit 22_save css definition */