1/** 2 * This file provides styles for the edit view (?do=edit), preview 3 * and section edit buttons. 4 */ 5 6 7/* + + + + + edit view + + + + + */ 8 9#dokuwiki__content { 10 div.section_highlight { 11 clear: right; 12 } 13 14 .secedit button { 15 clear: both; 16 font-size: 100%; 17 margin-top: .5rem; 18 margin-bottom: .5rem; 19 } 20 21 div.editBox { 22 background-color: #FFF; 23 border: solid 2px #FFF; 24 border-radius: @ini_default_border_radius; 25 26 .editButtons { 27 display: inline-block; 28 padding-bottom: 1rem; 29 } 30 31 * { 32 &:not(button) { 33 color: @color-editBox; 34 } 35 } 36 } 37 38} 39 40 41.mode_edit { 42 .content { 43 .msg-area { 44 display: block; 45 margin-bottom: 1.5rem; 46 clear: both; 47 } 48 49 #spr__meta-box { 50 display: none; 51 } 52 } 53} 54