xref: /template/sprintdoc/css/plugins/data.less (revision 72166b7941a75a535d86f35171a05d4fd2953004)
1/**
2 * This file provides styles for "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
17    .editbutton_plugin_data {
18        position: relative;
19        top: -1em; // as margin after DL
20        float: left;
21        font-size: @font-size-small; // for right position
22        margin-top: 0;
23
24        form {
25            button {
26                min-height: 1rem;
27                height: 1.8em;
28                background-color: @ini_background;
29                border-top: solid 1px @ini_button_background;
30                border-color: @ini_border;
31                border-radius: 0 0 @fix_border-radius @fix_border-radius;
32                color: @ini_existing;
33                font-size: @font-size-small;
34                line-height: 1.8em;
35                margin-top: -1px; // for right position
36                margin-left: .6em;
37                padding: 0 .3em;
38                transition: @transition background-color, @transition border-color, @transition color;
39
40                &:hover,
41                &:focus,
42                &:active {
43                    background-color: @ini_existing;
44                    border-color: @ini_existing;
45                    color: @ini_background;
46                }
47            }
48        }
49    }
50}
51