Add alternating row colors

This commit is contained in:
Edgar P. Burkhart 2023-12-30 09:12:03 +01:00
parent 5013df903f
commit aeb22521f3
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 6 additions and 0 deletions

View File

@ -78,6 +78,9 @@ table.full-width col.bar {
background: var(--bg-01);
}
.calendar tbody tr {
background: initial;
}
.calendar {
margin-top: var(--gap);
}

View File

@ -25,6 +25,9 @@ tr {
height: 2rem;
line-height: 2rem;
}
tbody tr:nth-of-type(even) {
background: #eeeeff;
}
td,
th {
padding: 0 var(--gap);