xref: /template/sprintdoc/css/area_togglelink.less (revision 5584fcd5ad446e6875ef5184c3a22b6d310737eb)
1/**
2 * This file provides the design styles for the sidebar (navmain).
3 *
4 * @author Jana Deutschlaender <deutschlaender@cosmocode.de>
5 */
6
7
8#dokuwiki__content {
9    overflow: visible;
10
11    .togglelink {
12        &.page_main-content {
13            position: absolute;
14            top: -1px;
15            left: -2rem;
16            z-index: 1;
17
18            a {
19                display: block;
20                width: 2rem;
21                height: 3.1rem;
22                background-color: #F6F6F6;
23                border: solid 1px @color-border;
24                border-radius: 2px 0 0 2px;
25                text-decoration: none;
26                text-align: center;
27                padding-top: .9em;
28                transition: @transition color, @transition background-color, @transition border-color;
29
30                &:hover,
31                &:focus,
32                &:active {
33                    background-color: @button_background;
34                    border-color: @button_background;
35                    color: @button_color;
36                    text-decoration: none;
37
38                    * {
39                        color: inherit;
40                        text-decoration: none;
41                    }
42                }
43            }
44        }
45    }
46}
47
48/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
49/* min-width: 1440px */
50
51@media @screen_min-xlg {
52    #dokuwiki__content .togglelink {
53
54    }
55}
56
57
58/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
59/* max-width: 1199px */
60
61@media @screen_max-xlg {
62    #dokuwiki__content .togglelink {
63
64    }
65}
66