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_content; 20 border-top: solid 1px @ini_button_background; 21 border-color: @ini_border; 22 color: @ini_existing; 23 font-size: @font-size-small; 24 margin-top: 0; 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_content; 34 } 35 } 36 } 37 38 + * { 39 clear: left; 40 } 41 42 + div.editbutton_table { 43 clear: none; 44 } 45 } 46} 47