markdown: add interlace color for tables #648

This commit is contained in:
Sören Weber 2023-09-24 00:59:25 +02:00
parent 7622913ac2
commit 38e0285061
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 5 additions and 0 deletions

View file

@ -38,6 +38,8 @@ This document shows you what's new in the latest release. For a detailed list of
- {{% badge style="info" icon="plus-circle" title=" " %}}New{{% /badge %}} The output of the dedicated search page now displays the result's breadcrumb.
- {{% badge style="info" icon="plus-circle" title=" " %}}New{{% /badge %}} Table rows now change their background color on every even row.
---
## 5.21.0 (2023-09-18) {#5210}

View file

@ -826,6 +826,9 @@ td {
border: 1px solid rgba( 134, 134, 134, .333 );
padding: 0.5rem;
}
tbody > tr:nth-child(even) > td {
background-color: rgba( 134, 134, 134, .045 );
}
.tooltipped {
position: relative;