Files
dokuwiki-plugin-struct/print.less
Eric Guirbal ea169a9fce Fix a whitespace issue in aggregation table in print version
In a cell with data of type wiki, the first (resp. the last) element
could have a non-zero top-margin (resp. bottom-margin) and this creates
unpleasant whitespaces.

This fixes #661 in print stylesheet.
2023-08-13 01:53:18 +02:00

37 lines
544 B
Plaintext

.dokuwiki .structaggregation {
table {
th.action,
td.action,
tr.dataflt {
display: none;
}
}
}
.dokuwiki .structaggregation.listaggregation > ul li div {
display: inline;
p {
display: inline;
margin: 0;
}
}
.dokuwiki .struct_entry_form {
display: none;
}
.dokuwiki .structaggregation {
&.structaggregationtable, &.structaggregationeditortable {
table.inline td {
& > *:last-child {
margin-bottom: 0;
}
& > *:first-child {
margin-top: 0;
}
}
}
}