mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
markdown: add interlace color for tables #648
This commit is contained in:
parent
7622913ac2
commit
38e0285061
2 changed files with 5 additions and 0 deletions
|
@ -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}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue