mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Allow to change .table-striped
odd
or even
(#25333)
This commit is contained in:
parent
0f53402fc0
commit
2b8b062540
2 changed files with 3 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
||||
|
||||
.table-striped {
|
||||
tbody tr:nth-of-type(odd) {
|
||||
tbody tr:nth-of-type(#{$table-striped-order}) {
|
||||
background-color: $table-accent-bg;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -317,6 +317,8 @@ $table-dark-hover-bg: rgba($white, .075) !default;
|
|||
$table-dark-border-color: lighten($gray-900, 7.5%) !default;
|
||||
$table-dark-color: $body-bg !default;
|
||||
|
||||
$table-striped-order: odd !default;
|
||||
|
||||
|
||||
// Buttons + Forms
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue