Added Zu-/Abschläge to Delivery Note

This commit is contained in:
2023-08-14 23:51:34 +02:00
parent c871dea873
commit 84edec2b54
3 changed files with 65 additions and 11 deletions

View File

@ -83,6 +83,11 @@ address {
font-style: normal;
}
table td,
table th {
padding: 0.5mm 1mm;
}
aside {
height: 40mm;
width: 75mm;
@ -110,7 +115,6 @@ aside table thead th {
aside table tbody th,
aside table tbody td {
padding: 0.5mm 1mm;
text-align: left;
font-size: 10pt;
}
@ -220,6 +224,27 @@ table.delivery tr.main td {
padding-top: 2mm;
}
table.delivery tbody tr:not(.main) td {
font-size: 8pt;
}
table.delivery tr.tight:not(.first) td {
padding-top: 0;
padding-bottom: 0;
}
table.delivery tr.tight.first td {
padding-bottom: 0;
}
table.delivery tr.tight:has(+ tr:not(.tight)) td {
padding-bottom: 0.5mm !important;
}
table.delivery tr.sum {
border-top: 1pt solid black;
}
.hidden {
visibility: hidden;
}