From 9e5d30ba5c028637a8113605ef0f1d8aee61204d Mon Sep 17 00:00:00 2001 From: gapnav Date: Mon, 1 Jun 2020 17:36:20 +0300 Subject: [PATCH] fix syntax for updated sass.gem --- assets/stylesheets/bootstrap/mixins/_table-row.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/stylesheets/bootstrap/mixins/_table-row.scss b/assets/stylesheets/bootstrap/mixins/_table-row.scss index 136795081e..1d4bb91af1 100644 --- a/assets/stylesheets/bootstrap/mixins/_table-row.scss +++ b/assets/stylesheets/bootstrap/mixins/_table-row.scss @@ -6,8 +6,8 @@ .table > thead > tr, .table > tbody > tr, .table > tfoot > tr { - > td.#{$state}, - > th.#{$state}, + & > td.#{$state}, + & > th.#{$state}, &.#{$state} > td, &.#{$state} > th { background-color: $background; @@ -17,8 +17,8 @@ // Hover states for `.table-hover` // Note: this is not available for cells or rows within `thead` or `tfoot`. .table-hover > tbody > tr { - > td.#{$state}:hover, - > th.#{$state}:hover, + & > td.#{$state}:hover, + & > th.#{$state}:hover, &.#{$state}:hover > td, &:hover > .#{$state}, &.#{$state}:hover > th {