1/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 2/* all media */ 3/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 4 5 6/* + + + + + + + + + + + + + + + + + + + + + + + */ 7/* magic matcher bar with form on top of page */ 8 9#dokuwiki_magic-matcher { 10 position: fixed; 11 top: 0; 12 left: 0; 13 width: 100%; 14 15 #magicmatcher__context { 16 box-sizing: border-box; 17 background-color: __nav_direct_background__; 18 box-shadow: __box_shadow__; 19 border-radius: 0 0 __default_border_radius__ __default_border_radius__; 20 position: relative; 21 z-index: 100; 22 width: 100%; 23 min-height: @height-context-bar; 24 padding: .8em 1em .5em; 25 margin-bottom: 0; 26 27 .chosen-container-single { 28 .chosen-single span { 29 line-height: @line-height-bigger; 30 } 31 } 32 } 33} 34 35/* + + + + + in content + + + + + */ 36a.jiralink { 37 font-size: @font-size-default; 38 39 img { 40 float: left; 41 display: inline-block; 42 margin-top: 2px; 43 margin-right: 3px; 44 } 45 46 span.mm__status { 47 display: inline-block; 48 font-size: @font-size-default; 49 margin-left: 5px; 50 padding: 1px 4px; 51 } 52} 53 54 55/* + + + + + no js version + + + + + */ 56.no-js { 57 #dokuwiki_magic-matcher { 58 display: none; 59 } 60} 61 62 63/* + + + + + + + + + + + + + + + + + + + + + + + + + + */ 64/* max-width: 1023px */ 65 66@media @screen_max-lg { 67 #dokuwiki_magic-matcher { 68 #magicmatcher__context { 69 .chosen-container-single { 70 width: 20% !important; 71 72 + select + .chosen-container-single { 73 width: 58% !important; 74 } 75 } 76 } 77 } 78} 79 80 81 82/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 83/* print */ 84/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ 85 86@media print { 87 #dokuwiki_magic-matcher { 88 display: none; 89 } 90} 91 92