xref: /template/sprintdoc/css/plugins/edittable.less (revision 202ac8de1e786ed7d753c9cb9e5cb43b0727d172)
1/**
2 * Style Adjustments for the edittable plugin
3 */
4
5#dokuwiki__content.main-content {
6    div.editbutton_table {
7        position: relative; // for IE
8        z-index: 1; // for IE
9        margin-top: -1.46rem !important; // overwrite inline stales
10
11        form div.no {
12            button,
13            input.button {
14                min-height: 1rem;
15                // button - for inverted design: background-color: @ini_button_color; color: @ini_button_background;
16                font-size: @font-size-small;
17                margin-top: 0;
18            }
19        }
20
21        + * {
22            clear: left;
23        }
24
25        + div.editbutton_table {
26            clear: none;
27        }
28    }
29}
30