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 width: 2rem; 19 height: 3.1rem; 20 background-color: #F6F6F6; 21 border: solid 1px @color-border; 22 border-radius: 2px 0 0 2px; 23 text-align: center; 24 padding-top: .9em; 25 transition: @transition color, @transition background-color, @transition border-color; 26 27 &:hover, 28 &:focus, 29 &:active { 30 background-color: @button_background; 31 border-color: @button_background; 32 color: @button_color; 33 text-decoration: none; 34 35 * { 36 color: inherit; 37 } 38 } 39 } 40 } 41} 42 43/* + + + + + + + + + + + + + + + + + + + + + + + + + + */ 44/* min-width: 1440px */ 45 46@media @screen_min-xlg { 47 #dokuwiki__content .togglelink { 48 49 } 50} 51 52 53/* + + + + + + + + + + + + + + + + + + + + + + + + + + */ 54/* max-width: 1199px */ 55 56@media @screen_max-xlg { 57 #dokuwiki__content .togglelink { 58 59 } 60} 61