1
2
3#edittable__editor {
4    margin-bottom: 1.4em;
5    height: 400px;
6    width: 100%;
7    display: block;
8    overflow: hidden;
9
10    table {
11
12        td.right {
13            text-align: right;
14            float: none; // fix incompatibility with some templates (like ICKE)
15        }
16
17        td.center {
18            text-align: center;
19        }
20
21        td.header {
22            font-weight: bold;
23            background-color: @ini_background_alt;
24            background-image: none;
25        }
26
27    }
28}
29
30.a() when (@ini_site_width) {
31    #edittable__editor {
32        width: @ini_site_width;
33    }
34}
35
36// add a z-index to DokuWiki's toolbar pickers
37div.picker {
38    z-index: 500;
39}
40
41#link__wiz {
42    z-index: 103; // the highest relevant z-index of edittable elements seems to be 103
43}
44