Skip to content

Commit ea169a9

Browse files
committed
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.
1 parent e9c7072 commit ea169a9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

print.less

+14
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,17 @@
2020
.dokuwiki .struct_entry_form {
2121
display: none;
2222
}
23+
24+
.dokuwiki .structaggregation {
25+
&.structaggregationtable, &.structaggregationeditortable {
26+
table.inline td {
27+
& > *:last-child {
28+
margin-bottom: 0;
29+
}
30+
& > *:first-child {
31+
margin-top: 0;
32+
}
33+
}
34+
}
35+
}
36+

0 commit comments

Comments
 (0)