Files
edittable/less/editor.less
Michael Große 72a7d08b9c fix: keep the linkwizard in foreground
Some of the column/row-headers have z-indizes up to 103. The linkwizard
should be above those elements. Since it is appended to the end of the
page, it is enough if the z-index is equal to the previous one.
2017-08-15 17:41:15 +02:00

44 lines
783 B
Plaintext

#edittable__editor {
margin-bottom: 1.4em;
height: 400px;
width: 100%;
display: block;
overflow: hidden;
table {
td.right {
text-align: right;
float: none; // fix incompatibility with some templates (like ICKE)
}
td.center {
text-align: center;
}
td.header {
font-weight: bold;
background-color: @ini_background_alt;
background-image: none;
}
}
}
.a() when (@ini_site_width) {
#edittable__editor {
width: @ini_site_width;
}
}
// add a z-index to DokuWiki's toolbar pickers
div.picker {
z-index: 500;
}
#link__wiz {
z-index: 103; // the highest relevant z-index of edittable elements seems to be 103
}