Allow to change `.table-striped` `odd` or `even` (#25333)

This commit is contained in:
Andrew Luca 2018-01-19 19:34:49 +02:00 committed by XhmikosR
parent 0f53402fc0
commit 2b8b062540
2 changed files with 3 additions and 1 deletions

View File

@ -68,7 +68,7 @@
// Default zebra-stripe styles (alternating gray and transparent backgrounds) // Default zebra-stripe styles (alternating gray and transparent backgrounds)
.table-striped { .table-striped {
tbody tr:nth-of-type(odd) { tbody tr:nth-of-type(#{$table-striped-order}) {
background-color: $table-accent-bg; background-color: $table-accent-bg;
} }
} }

View File

@ -317,6 +317,8 @@ $table-dark-hover-bg: rgba($white, .075) !default;
$table-dark-border-color: lighten($gray-900, 7.5%) !default; $table-dark-border-color: lighten($gray-900, 7.5%) !default;
$table-dark-color: $body-bg !default; $table-dark-color: $body-bg !default;
$table-striped-order: odd !default;
// Buttons + Forms // Buttons + Forms
// //