1/* the section edit button */ 2.dokuwiki div.editbutton_table { 3 margin-top: -1.7em; // this is correct for dokuwiki template, but we adjust it via JS later 4 float: none; 5 display: none; // we make it visible by JavaScript 6 margin-bottom: 1em; 7 8 form div.no button, 9 form div.no input.button { 10 margin-left: 0.6em; 11 padding: 0 0.3em; 12 background-image: none; 13 border-top: none; 14 float: none; 15 16 line-height: 1.8em; 17 height: 1.8em; 18 19 20 border-top-right-radius: 0; 21 -moz-border-radius-topright: 0; 22 -webkit-border-top-right-radius: 0; 23 24 border-top-left-radius: 0; 25 -moz-border-radius-topleft: 0; 26 -webkit-border-top-left-radius: 0; 27 28 border-bottom-right-radius: 0.5em; 29 -moz-border-radius-bottomright: 0.5em; 30 -webkit-border-bottom-right-radius: 0.5em; 31 32 border-bottom-left-radius: 0.5em; 33 -moz-border-radius-bottomleft: 0.5em; 34 -webkit-border-bottom-left-radius: 0.5em; 35 } 36} 37