1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .table {
- --#{$variable-prefix}table-bg: #{$table-bg-alt};
- --#{$variable-prefix}table-striped-color: #{$table-striped-color-alt};
- --#{$variable-prefix}table-striped-bg: #{$table-striped-bg-alt};
- --#{$variable-prefix}table-active-color: #{$table-active-color-alt};
- --#{$variable-prefix}table-active-bg: #{$table-active-bg-alt};
- --#{$variable-prefix}table-hover-color: #{$table-hover-color-alt};
- --#{$variable-prefix}table-hover-bg: #{$table-hover-bg-alt};
- color: $table-color-alt;
- border-color: $table-border-color-alt;
-
-
-
-
-
-
-
-
-
-
-
- }
- @each $color, $value in $table-variants-alt {
- @include table-variant-alt($color, $value);
- }
|