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