|
- /**
- * This file provides styles for "data plugin"
- * after importing struct data this can be deleted
- */
-
- /* + + + + + global + + + + + */
- #dokuwiki__content {
- .dataplugin_entry {
- dl {
- margin-left: 0;
- margin-right: 0;
- }
- }
-
- .editbutton_plugin_data {
- position: relative;
- top: -1em; // as margin after DL
- float: left;
- font-size: @font-size-small; // for right position
- margin-top: 0;
-
- form {
- button {
- min-height: 1rem;
- height: 1.8em;
- background-color: @ini_background;
- border-top: solid 1px @ini_button_background;
- border-color: @ini_border;
- border-radius: 0 0 @fix_border-radius @fix_border-radius;
- color: @ini_existing;
- font-size: @font-size-small;
- line-height: 1.8em;
- margin-top: -1px; // for right position
- margin-left: .6em;
- padding: 0 .3em;
- transition: @transition background-color, @transition border-color, @transition color;
-
- &:hover,
- &:focus,
- &:active {
- background-color: @ini_existing;
- border-color: @ini_existing;
- color: @ini_background;
- }
- }
- }
- }
- }
|