From 5926efa9bd67cc317cddd1470aca770459004b24 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Tue, 2 Aug 2022 22:46:06 +0100 Subject: [PATCH] Avoid background-color override for instead, only do the stripes for rows in the tbody, not the thead. --- assets/scss/custom.scss | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 6dc4d820..512197a6 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -343,17 +343,13 @@ footer { } &.object-table, &.response-table { - caption, tr { + caption, tbody tr { background-color: $table-row-default; } - tr:nth-child(even) { + tbody tr:nth-child(even) { background-color: $table-row-alternate; } - - th { - background-color: $white; - } } &.basic-info, &.basic-info th, &.basic-info td {