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