1/** 2 * This file provides styles for the edit view (?do=edit), preview 3 * and section edit buttons. 4 */ 5 6/* edit view 7********************************************************************/ 8 9.dokuwiki div.editBox { 10} 11 12.dokuwiki div.editBox button { 13 border: #666 solid 1px; 14 border-radius: 0; 15 padding: 3pt 6pt; 16} 17 18#edbtn__save { 19 background-color: #15395B; 20 color: #FFF; 21} 22 23/*____________ toolbar ____________*/ 24 25.dokuwiki div.toolbar { 26 display: inline-block; 27} 28#draft__status { 29 float: right; 30 color: @ini_text_alt; 31 background-color: inherit; 32} 33[dir=rtl] #draft__status { 34 float: left; 35} 36#tool__bar { 37 float: left; 38} 39[dir=rtl] #tool__bar { 40 float: right; 41} 42 43/* buttons inside of toolbar */ 44.dokuwiki div.toolbar button.toolbutton { 45 margin: 0 1pt; 46} 47/* picker popups (outside of .dokuwiki) */ 48div.picker { 49 width: 300px; 50 border: 1px solid #CCC; 51 background-color: #EEE; 52 color: inherit; 53} 54/* picker for headlines */ 55div.picker.pk_hl { 56 width: auto; 57} 58 59/* buttons inside of picker */ 60div.picker button.pickerbutton, 61div.picker button.toolbutton { 62 padding: .1em .35em; 63 border-width: 0; 64} 65 66/*____________ edit textarea ____________*/ 67 68.dokuwiki textarea.edit { 69 width: 100%; 70 margin-bottom: .5em; 71 background-color: #EEE; 72 font-family: 'Source Code Pro',Menlo,Consolas,'Courier New',Courier,monospace; 73 font-size: 12pt; 74 line-height: 17pt; 75} 76 77/*____________ below the textarea ____________*/ 78 79.dokuwiki div.editBar { 80 overflow: hidden; 81 margin-bottom: .5em; 82} 83 84/* size and wrap controls */ 85#size__ctl { 86 float: right; 87} 88[dir=rtl] #size__ctl { 89 float: left; 90} 91#size__ctl img { 92 cursor: pointer; 93} 94 95/* edit buttons */ 96.dokuwiki .editBar .editButtons { 97 display: inline; 98 margin-right: 1em; 99} 100[dir=rtl] .dokuwiki .editBar .editButtons { 101 margin-right: 0; 102 margin-left: 1em; 103} 104.dokuwiki .editBar .editButtons button { 105} 106 107/* summary input and minor changes checkbox */ 108.dokuwiki .editBar .summary { 109 display: inline; 110} 111.dokuwiki .editBar .summary label { 112 vertical-align: middle; 113 white-space: nowrap; 114} 115.dokuwiki .editBar .summary label span { 116 vertical-align: middle; 117} 118.dokuwiki .editBar .summary input { 119} 120/* change background colour if summary is missing */ 121.dokuwiki .editBar .summary input.missing { 122 color: @ini_text; 123 background-color: #ffcccc; 124} 125 126/* preview 127********************************************************************/ 128 129.dokuwiki div.preview { 130 border: dotted #CCC; 131 border-width: .2em 0; 132 padding: 1.4em 0; 133 margin-bottom: 1.4em; 134} 135 136/* section edit buttons 137********************************************************************/ 138 139/* .dokuwiki .secedit { 140 float: right; 141 margin-top: -1.4em; 142} */ 143[dir=rtl] .dokuwiki .secedit { 144 float: left; 145} 146/*.dokuwiki .secedit button { 147 font-size: 75%; 148}*/ 149 150/* style for section highlighting 151.dokuwiki div.section_highlight { 152 margin: 0 -1em; 153 padding: 0 .5em; 154 border: solid @ini_background_alt; 155 border-width: 0 .5em; 156} */ 157