mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-07-25 16:01:54 +00:00

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.
37 lines
544 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|