1/* =Admin (Backend) 2----------------------------------------------- */ 3 4.dokuwiki fieldset { 5 width: auto; 6} 7 8.dokuwiki #edit__summary { 9 width: auto; 10} 11 12#config__manager { 13 fieldset { 14 margin: 0 0 20px; 15 } 16 fieldset td.value, 17 .selectiondefault { 18 width: auto; 19 } 20 .selectiondefault input { 21 margin: 0 3px; 22 } 23 fieldset td.value div.input { 24 // Fix overflowing width of some input types 25 width: 100%; 26 // Fix a background color would sometimes applied to the div.input 27 background-color: transparent; 28 } 29 fieldset td.value div.selectiondefault { 30 // Fix a background color would sometimes applied to the div.input 31 background-color: transparent; 32 } 33 // Fix Dokuwiki's backlink showing on top of dropdowns 34 td.label span.outkey { 35 z-index: auto; 36 } 37} 38 39#media__popup_content label { 40 display: block; 41} 42 43div.toolbar { 44 margin-top: 8px; 45} 46div.toolbar,div.picker { 47 border-radius: 8px; 48 background-color: @ini_background_neu; 49 padding: 4px; 50 border: 3px solid @ini_theme_color; 51 background-position: center center; 52 53 button,button.toolbutton,button.pickerbutton { 54 padding: 4px 8px; 55 border-radius: 0px; 56 background-color: transparent; 57 transition: all 0.25s ease-in-out; 58 border-radius: 4px; 59 color: @ini_text_neu; 60 vertical-align: middle; 61 text-align: center; 62 } 63 64 button:hover,button.toolbutton:hover,button.pickerbutton:hover { 65 background-color: @ini_background_alt; 66 } 67} 68 69/* undo "clever" styling from fileuploader.js */ 70.qq-upload-button { 71 cursor: inherit !important; 72 direction: inherit !important; 73} 74.qq-upload-button input { 75 font-family: inherit !important; 76 font-size: 1em !important; 77 margin: inherit !important; 78 opacity: 1 !important; 79 padding: inherit !important; 80 position: static !important; 81} 82 83#plugin__styling.ispopup { 84 margin-top: -40px; 85 padding: 10px; 86 background-color: @ini_background; 87} 88