Commit 2b8b0625 authored by Andrew Luca's avatar Andrew Luca Committed by XhmikosR
Browse files

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

parent 0f53402f
Showing with 3 additions and 1 deletion
+3 -1
......@@ -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
//
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment