2025-06-27 20:17:48 +02:00
|
|
|
table {
|
2025-04-22 15:08:16 +02:00
|
|
|
border-spacing: 0px;
|
|
|
|
}
|
|
|
|
thead {
|
|
|
|
display: table-header-group;
|
|
|
|
position: sticky;
|
|
|
|
}
|
|
|
|
|
|
|
|
tfoot {
|
|
|
|
display: table-footer-group;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
td, th {
|
|
|
|
padding: 0.25em;
|
2025-04-24 13:25:34 +02:00
|
|
|
font-size: 10px;
|
2025-04-22 15:08:16 +02:00
|
|
|
height: 30px;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2025-04-24 13:25:34 +02:00
|
|
|
tr th:first-of-type, tr td:first-of-type {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr th:last-of-type, tr td:last-of-type {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-04-22 15:08:16 +02:00
|
|
|
th {
|
|
|
|
padding: 0.25em;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
2025-04-22 20:36:41 +02:00
|
|
|
th:nth-child(3) {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-04-22 15:08:16 +02:00
|
|
|
td:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2025-04-22 20:36:41 +02:00
|
|
|
|
|
|
|
tr img {
|
|
|
|
max-height: 30px;
|
|
|
|
max-width: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-wide td, .table-wide th {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
2025-04-22 15:08:16 +02:00
|
|
|
div.table-wide table, table.table-wide, .table-inline {
|
|
|
|
width: calc(100% +var(--footnote-w)) !important;
|
|
|
|
margin-right: calc((var(--footnote-w) * -1));
|
|
|
|
border-collapse: collapse;
|
|
|
|
table-layout: fixed;
|
|
|
|
-fs-table-paginate: paginate;
|
2025-04-24 13:25:34 +02:00
|
|
|
page-break-inside: avoid;
|
2025-04-22 15:08:16 +02:00
|
|
|
clear: both;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
|
2025-04-24 13:25:34 +02:00
|
|
|
.table-wide {
|
|
|
|
page-break-before: page;
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
2025-04-22 15:08:16 +02:00
|
|
|
.table-wide td, .table-wide th, .table-inline td, .table-inline th {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-wide tr:last-child:not(:first-child) {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.table-wide tr, .table-wide table tr {
|
|
|
|
border-bottom: 1px dotted grey;
|
|
|
|
display: grid;
|
2025-04-24 13:25:34 +02:00
|
|
|
grid-template-columns: 90px 65px 3fr 3fr 45px;
|
2025-04-22 15:08:16 +02:00
|
|
|
width: calc(100% + var(--footnote-w));
|
|
|
|
min-height: 30px;
|
|
|
|
align-items: center;
|
|
|
|
max-width: calc(var(--pagedjs-pagebox-width) - var(--pagedjs-margin-right) - var(--pagedjs-margin-left))
|
|
|
|
}
|
2025-04-24 13:25:34 +02:00
|
|
|
|
|
|
|
.table-wide table {
|
|
|
|
margin-top: var(--header-offset) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
td > * {
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
.table-wide h2 {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
table mark {
|
|
|
|
background: none;
|
|
|
|
display: inline-flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
gap: .5rem;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
table mark:before {
|
|
|
|
font-weight: bold;
|
|
|
|
content: "•";
|
|
|
|
color: var(--accent);
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
colgroup {
|
|
|
|
display: none !important;
|
|
|
|
}
|