1/**
2 * This file provides styles for "edittable plugin"
3 */
4
5/* + + + + +  global  + + + + + */
6#dokuwiki__content.main-content {
7    div.editbutton_table {
8        position: relative; // for IE
9        float: left;
10        margin-top: -1.4em !important; // overwrite inline styles
11
12        form div.no {
13            button,
14            input.button {
15                min-height: 1rem;
16                background-color: @ini_background;
17                border-top: solid 1px @ini_button_background;
18                border-color: @ini_border;
19                border-radius: 0 0 @fix_border-radius @fix_border-radius;
20                color: @ini_existing;
21                font-size: @font-size-small;
22                margin-top: -1px; // for best position of edit-tab beneath table
23                padding-right: .3em;
24                transition: @transition background-color, @transition border-color, @transition color;
25
26                &:hover,
27                &:focus,
28                &:active {
29                    background-color: @ini_existing;
30                    border-color: @ini_existing;
31                    color: @ini_background;
32                }
33            }
34        }
35
36        + * {
37            clear: left;
38        }
39
40        + div.editbutton_table {
41            clear: none;
42        }
43    }
44}
45