1/** 2 * This file provides styles for "edittable plugin" 3 */ 4 5 6/* + + + + + global + + + + + */ 7 8#dokuwiki__content.main-content { 9 div.editbutton_table { 10 position: relative; // for IE 11 float: left; 12 margin-top: -1.4em !important; // overwrite inline styles 13 14 form div.no { 15 button, 16 input.button { 17 min-height: 1rem; 18 background-color: @ini_background; 19 border-top: solid 1px @ini_button_background; 20 border-color: @ini_border; 21 border-radius: 0 0 @fix_border-radius @fix_border-radius; 22 color: @ini_existing; 23 font-size: @font-size-small; 24 margin-top: -1px; // for best position of edit-tab beneath table 25 padding-right: .3em; 26 transition: @transition background-color, @transition border-color, @transition color; 27 28 &:hover, 29 &:focus, 30 &:active { 31 background-color: @ini_existing; 32 border-color: @ini_existing; 33 color: @ini_background; 34 } 35 } 36 } 37 38 + * { 39 clear: left; 40 } 41 42 + div.editbutton_table { 43 clear: none; 44 } 45 } 46} 47