Skip to content

Commit

Permalink
fix bootstrap issue : twbs/bootstrap#35158
Browse files Browse the repository at this point in the history
  • Loading branch information
tjustino committed Oct 19, 2021
1 parent 10653e1 commit 322626e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vendor/assets/stylesheets/bootstrap/_tables.scss
Expand Up @@ -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);
}
Expand All @@ -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);
}
Expand Down

0 comments on commit 322626e

Please sign in to comment.