From 7a49218515236263500473bae362eecfd8884435 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 9 Aug 2020 09:11:29 +0100 Subject: rake update[a1708ec2a38d331c4c9eacac08ce9c9839649476] --- .../stylesheets/bootstrap/mixins/_table-row.scss | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 assets/stylesheets/bootstrap/mixins/_table-row.scss (limited to 'assets/stylesheets/bootstrap/mixins/_table-row.scss') diff --git a/assets/stylesheets/bootstrap/mixins/_table-row.scss b/assets/stylesheets/bootstrap/mixins/_table-row.scss deleted file mode 100644 index 1ccde6b..0000000 --- a/assets/stylesheets/bootstrap/mixins/_table-row.scss +++ /dev/null @@ -1,39 +0,0 @@ -// Tables - -@mixin table-row-variant($state, $background, $border: null) { - // Exact selectors below required to override `.table-striped` and prevent - // inheritance to nested tables. - .table-#{$state} { - &, - > th, - > td { - background-color: $background; - } - - @if $border != null { - th, - td, - thead th, - tbody + tbody { - border-color: $border; - } - } - } - - // Hover states for `.table-hover` - // Note: this is not available for cells or rows within `thead` or `tfoot`. - .table-hover { - $hover-background: darken($background, 5%); - - .table-#{$state} { - @include hover() { - background-color: $hover-background; - - > td, - > th { - background-color: $hover-background; - } - } - } - } -} -- cgit v1.2.3