1/* the section edit button */
2.dokuwiki div.svgprintbutton_table {
3    display: block;
4    margin-bottom: 1em;
5
6    button,
7    input.button {
8        margin-left: 0.6em;
9        padding: 0 0.3em;
10        background-image: none;
11        border-top: none;
12        float: none;
13
14        line-height: 1.8em;
15        height: 1.8em;
16
17
18        border-top-right-radius: 0;
19        -moz-border-radius-topright: 0;
20        -webkit-border-top-right-radius: 0;
21
22        border-top-left-radius: 0;
23        -moz-border-radius-topleft: 0;
24        -webkit-border-top-left-radius: 0;
25
26        border-bottom-right-radius: 0.5em;
27        -moz-border-radius-bottomright: 0.5em;
28        -webkit-border-bottom-right-radius: 0.5em;
29
30        border-bottom-left-radius: 0.5em;
31        -moz-border-radius-bottomleft: 0.5em;
32        -webkit-border-bottom-left-radius: 0.5em;
33    }
34}
35