From 322626ebac25e3c3e994705af9d635aafceaaf88 Mon Sep 17 00:00:00 2001 From: tjustino Date: Tue, 19 Oct 2021 13:27:15 +0200 Subject: [PATCH] fix bootstrap issue : https://github.com/twbs/bootstrap/issues/35158 --- vendor/assets/stylesheets/bootstrap/_tables.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/assets/stylesheets/bootstrap/_tables.scss b/vendor/assets/stylesheets/bootstrap/_tables.scss index e10e4c4..7859fa0 100644 --- a/vendor/assets/stylesheets/bootstrap/_tables.scss +++ b/vendor/assets/stylesheets/bootstrap/_tables.scss @@ -102,7 +102,7 @@ // Default zebra-stripe styles (alternating gray and transparent backgrounds) .table-striped { - > tbody > tr:nth-of-type(#{$table-striped-order}) > * { + > tbody > tr:nth-of-type(#{$table-striped-order}) { --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-striped-bg); color: var(--#{$variable-prefix}table-striped-color); } @@ -122,7 +122,7 @@ // Placed here since it has to come after the potential zebra striping .table-hover { - > tbody > tr:hover > * { + > tbody > tr:hover { --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg); color: var(--#{$variable-prefix}table-hover-color); }