From 651e89ea5fdf8ce696bb07c9ffcf7e83b81ade3b Mon Sep 17 00:00:00 2001 From: Lucas Larroche Date: Sat, 15 Mar 2025 13:26:30 +0700 Subject: [PATCH] Revert "fix: don't count hidden rows in table stripes" This reverts commit 72e469942e8b4afeea3f5d753e4908431116194e. --- scss/content/_table.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/content/_table.scss b/scss/content/_table.scss index eb2a6f68..1239bc6f 100644 --- a/scss/content/_table.scss +++ b/scss/content/_table.scss @@ -52,8 +52,8 @@ @if enable-classes { #{$parent-selector} table { &.striped { - tbody tr:nth-child(odd of :not([hidden])) th, - tbody tr:nth-child(odd of :not([hidden])) td { + tbody tr:nth-child(odd) th, + tbody tr:nth-child(odd) td { background-color: var(#{$css-var-prefix}table-row-stripped-background-color); } }