Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2020-08-09 11:11:29 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2020-08-09 11:11:29 +0300
commit7a49218515236263500473bae362eecfd8884435 (patch)
tree118d4156ec0ee3b9699964d4e8c28b088a487aff /assets/stylesheets/bootstrap/mixins/_table-row.scss
parent43f87174d8d3a9b473c12fd807511b46bf7b4bd4 (diff)
rake update[a1708ec2a38d331c4c9eacac08ce9c9839649476]
Diffstat (limited to 'assets/stylesheets/bootstrap/mixins/_table-row.scss')
-rw-r--r--assets/stylesheets/bootstrap/mixins/_table-row.scss39
1 files changed, 0 insertions, 39 deletions
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;
- }
- }
- }
- }
-}