From 0e2799edbf1e7f89b7fba5f57162d23590376c97 Mon Sep 17 00:00:00 2001 From: MDLeom <2809763-curben@users.noreply.gitlab.com> Date: Fri, 6 Mar 2020 07:32:53 +0000 Subject: [PATCH] fix(css): alternating colour rows - https://www.textfixer.com/tutorials/css-table-alternating-rows.php --- themes/chameleon/source/css/chameleon.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/themes/chameleon/source/css/chameleon.css b/themes/chameleon/source/css/chameleon.css index cf69991..7577751 100644 --- a/themes/chameleon/source/css/chameleon.css +++ b/themes/chameleon/source/css/chameleon.css @@ -181,7 +181,9 @@ th { } table th, -th { +th, +table tr:nth-child(even), +tr:nth-child(even) { background: var(--alt-bg-color); }