1/** 2 * This file provides styles for old data plugin 3 * after importing struct data this can be deleted 4 */ 5 6 7/* + + + + + global + + + + + */ 8 9#dokuwiki__content { 10 .dataplugin_entry { 11 dl { 12 margin-left: 0; 13 margin-right: 0; 14 } 15 16 + .secedit.editbutton_plugin_data { 17 position: relative; 18 top: -1em; // as margin after DL 19 float: left; 20 font-size: @font-size-small; // for right position 21 margin-top: 0; 22 23 form { 24 button { 25 min-height: 1rem; 26 height: 1.8em; 27 background-color: @ini_background; 28 border-top: solid 1px @ini_button_background; 29 border-color: @ini_border; 30 border-radius: 0 0 @fix_border-radius @fix_border-radius; 31 color: @ini_existing; 32 font-size: @font-size-small; 33 line-height: 1.8em; 34 margin-top: -1px; // for right position 35 margin-left: .6em; 36 padding: 0 .3em; 37 transition: @transition background-color, @transition border-color, @transition color; 38 39 &:hover, 40 &:focus, 41 &:active { 42 background-color: @ini_existing; 43 border-color: @ini_existing; 44 color: @ini_background; 45 } 46 } 47 } 48 } 49 } 50} 51