remove background color of alternating table rows

This commit is contained in:
Ed Silkworth 2023-02-06 14:41:00 -08:00
parent db0390ecd4
commit 9ad55971ec
No known key found for this signature in database
GPG Key ID: 26F260F04191F431
2 changed files with 6 additions and 1 deletions

View File

@ -27,4 +27,5 @@ Dec 12, 2022 · fixed monospace font to display SF Mono in Safari on macOS
Dec 19, 2022 · for clone url border, used same color as surrounding buttons' border
Dec 20, 2022 · ran `make generate-images` to generate logo
Dec 21, 2022 · regenerated images and pruned redundant ones
Jan 15, 2023 · removed little color preview squares
Jan 15, 2023 · removed little color preview squares
Feb 6, 2023 · removed background color of alternating table rows, since distracting if such rows contain codes

View File

@ -91,4 +91,8 @@ details {
.color-preview {
display: unset !important; /* remove little color preview square */
margin-left: unset !important; /* remove subsequently redundant margin */
}
.markup table tr:nth-child(2n) {
background-color: unset !important; /* remove background color of alternating table rows, since distracting if such rows contain codes */
}