Spalten der Versäumnistabelle kategorisiert

This commit is contained in:
2021-09-10 18:44:11 +02:00
parent 33d33fb38f
commit a75a870ca6
2 changed files with 26 additions and 10 deletions
+16 -4
View File
@@ -351,14 +351,26 @@ table tbody tr:nth-child(even) {
table th,
table td {
border-top: 1px solid var(--fg-main);
border-right: 1px dotted var(--fg-main);
border-bottom: 1px solid var(--fg-main);
border-left: 1px dotted var(--fg-main);
padding: 4px 6px;
}
table th {
border: 1px dotted var(--fg-main);
}
table td {
border-top: 1px solid var(--fg-main);
border-right: 1px dotted var(--fg-main);
border-bottom: 1px solid var(--fg-main);
border-left: 1px dotted var(--fg-main);
}
table td.first-in-category,
table th.first-in-category {
border-left: 1px solid var(--fg-main);
}
table thead {
background-color: var(--bg-tertiary);
border-bottom: 2px solid var(--fg-main);
}