diff options
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_tables.scss | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss index 90a5e69bb..8b1f551a0 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -92,12 +92,9 @@ // Exact selectors below required to override `.table-striped` and prevent // inheritance to nested tables. -// Generate the contextual variants -@include table-row-variant(active, $table-active-bg); -@include table-row-variant(success, $state-success-bg); -@include table-row-variant(info, $state-info-bg); -@include table-row-variant(warning, $state-warning-bg); -@include table-row-variant(danger, $state-danger-bg); +@each $color, $value in $theme-colors { + @include table-row-variant($color, theme-color-level($color, -9)); +} // Inverse styles |
