1/**
2 * This file provides the styles for the page tools
3 * (fly out navigation beside the page to edit, etc).
4 *
5 * @author Anika Henke <anika@selfthinker.org>
6 * @author Andreas Gohr <andi@splitbrain.org>
7 */
8
9#dokuwiki__site > .site {
10    /* give space to the right so the tools won't disappear on smaller screens */
11    padding-right: 50px;
12    /* give the same space to the left to balance it out */
13    padding-left: 50px;
14}
15.dokuwiki div.page {
16    height: 190px;
17    min-height: 190px; /* 30 (= height of icons) x 6 (= maximum number of possible tools) + 2x5 */
18    height: auto;
19}
20
21#dokuwiki__pagetools ul {
22    margin: 0;
23    padding: 0;
24    z-index: 10;
25}
26[dir=rtl] #dokuwiki__pagetools ul {
27    right: auto;
28    left: 0;
29    text-align: left;
30}
31
32/*____________ page tools ____________*/
33
34#dokuwiki__pagetools {
35    padding-top: 5px;
36    position: fixed;
37    top: 0;
38    right: 0;
39    color: __pagetools__;
40    background-color: __pt_background__;
41    width: 40px;
42    height: 100%;
43    z-index: 10;
44}
45#dokuwiki__pagetools hr {
46	margin: 5px 0px;
47}
48#dokuwiki__pagetools ul li {
49    padding: 0;
50    margin: 0 5px;
51    list-style: none;
52    font-size: 0.875em;
53    text-align: center;
54}
55
56#dokuwiki__pagetools ul li a {
57	display: block;
58	white-space: nowrap;
59	width: 30px;
60	height: 30px;
61	overflow: hidden;
62  padding: 3px 0 0 0;
63}
64
65#dokuwiki__pagetools ul li a span {
66    display: none;
67}
68#dokuwiki__pagetools ul li a svg path {
69    fill: __pt_foreground__;
70}
71
72#dokuwiki__pagetools ul li a:hover {
73    background-color: __pt_rollover__;
74}
75#dokuwiki__pagetools ul li a:hover svg path {
76    fill: __rollover__;
77}
78#dokuwiki__pagetools ul.pagetools, #dokuwiki__pagetools ul.sitetools {
79    margin-top: 30px;
80}
81