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 padding-top: 0 !important; // heredity 13 } 14 15 .secedit button { 16 clear: both; 17 font-size: 100%; 18 margin-top: .5rem; 19 margin-bottom: .5rem; 20 } 21 22 div.editBox { 23 background-color: #FFF; 24 border: solid 2px #FFF; 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.mode_edit { 41 .content { 42 .msg-area { 43 display: block; 44 margin-bottom: 1.5rem; 45 clear: both; 46 } 47 48 #spr__meta-box { 49 display: none; 50 } 51 } 52} 53