1.dokuwiki .struct_status {
2    border: 1px solid @ini_border;
3    border-radius: 3px;
4    white-space: nowrap;
5    display: inline-block;
6    padding: 0 0.2em;
7    margin: 0 0.2em 0.2em 0;
8    font-size: 90%;
9
10    svg {
11        width: 14px;
12        height: 14px;
13        vertical-align: middle;
14        margin-right: 0.2em;
15    }
16}
17
18.dokuwiki div.structstatus-full {
19    @factor: 1.4;
20
21    font-size: (100% * @factor);
22
23    button.struct_status {
24        display: block;
25        width: 100%;
26        text-align: left;
27        background: inherit;
28
29        svg {
30            width: (14px * @factor);
31            height: (14px * @factor);
32        }
33    }
34
35    button.struct_status.disabled {
36        filter: grayscale(100%);
37        opacity: 0.2;
38    }
39
40    button.struct_status.disabled:hover {
41        opacity: 0.6;
42    }
43}
44