xref: /template/sprintdoc/css/area_nav-pagetools.less (revision 18001ee40cbb40ea84e28598d96ce6253db4ba76)
1/**
2 * This file provides the design styles for the page specific tool bar.
3 *
4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de>
5 */
6
7nav#dokuwiki__pagetools{
8
9    ul {
10        li {
11            font-size: .8rem;
12            line-height: 100%;
13
14            *{
15                font-size: .8rem;
16            }
17
18            a.backlink{
19                .hide-text-show-after();
20                .fontello();
21                line-height: 100%;
22                box-sizing: border-box;
23                border: 1px solid red;
24                font-size: 0;
25                &:before{
26                    font-size: 1rem;
27                    float: right;
28                    line-height: 1.2em;
29                    .btn-default-size();
30                    margin: .1rem auto 0;
31                    border: 1px solid blue;
32                }
33                &:hover, &:active, &:focus {
34                    padding: 0;
35                }
36            }
37
38            a.backlink{
39                .icon-link();
40            }
41
42        }
43    }
44
45    &:hover{
46         ul{
47             background-color: #fff;
48             box-shadow: @box-shadow-offset;
49             li{
50                 a.backlink{
51                     padding: 0;
52                 }
53             }
54         }
55     }
56
57
58}
59