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