1 2 3/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 4/* all media */ 5/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 6 7 8/* + + + + + + + + + + + + + + + + + + + + + + + */ 9/* magic matcher bar with form on top of page */ 10 11#dokuwiki_magic-matcher{ 12 13 position: fixed; 14 top:0; left: 0; 15 width: 100%; 16 #magicmatcher__context{ 17 box-sizing: border-box; 18 background-color: __nav_direct_background__; 19 box-shadow: __box_shadow__; 20 border-radius: 0 0 __default_border_radius__ __default_border_radius__; 21 position: relative; 22 z-index: 100; 23 width: 100%; 24 min-height: @height-context-bar; 25 padding: .8em 1em .5em; 26 margin-bottom: 0; 27 28 .chosen-container-single .chosen-single span{ 29 line-height: @line-height-bigger; 30 } 31 } 32} 33 34.no-js{ 35 #dokuwiki_magic-matcher{ 36 display: none; 37 } 38} 39 40 41/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 42/* print */ 43/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 44@media print{ 45 #dokuwiki_magic-matcher{ 46 display: none; 47 } 48} 49 50