1/** 2 * This file provides styles for the edit view (?do=edit), preview 3 * and "section edit button" and "editbutton_table edit button". 4 */ 5 6/* + + + + + edit view + + + + + */ 7#dokuwiki__content { 8 div.section_highlight { 9 clear: right; 10 background: repeating-linear-gradient( 11 -45deg, 12 @highlight-odd-ini_text, 13 @highlight-odd-ini_text 10px, 14 @highlight-even-ini_text 10px, 15 @highlight-even-ini_text 20px, 16 ); 17 border-color: @ini_background_page_header; 18 padding-top: 0 !important; // heredity 19 } 20 21 // "section edit button" and "editbutton_table edit button" 22 .secedit button { 23 clear: both; 24 font-size: 100%; 25 margin-top: .5rem; 26 margin-bottom: .5rem; 27 } 28 29 div.editBox { 30 background-color: #FFF; 31 border: solid 2px #FFF; 32 33 .editButtons { 34 display: inline-block; 35 padding-bottom: 1rem; 36 } 37 38 @media @screen_max-xs { 39 div.summary { 40 label[for=edit__summary] { 41 white-space: normal; 42 display: block; 43 width: 100%; 44 span { 45 display: inline-block; 46 padding-bottom: .4rem; 47 } 48 input#edit__summary{ 49 max-width: 100%; 50 box-sizing: border-box; 51 } 52 } 53 } 54 } 55 } 56} 57 58.mode_edit { 59 .content { 60 .msg-area { 61 display: block; 62 margin-bottom: 1.5rem; 63 clear: both; 64 } 65 66 #spr__meta-box { 67 display: none; 68 } 69 } 70} 71