Created by: iamandrewluca
Temporary workaround
$table-striped-order: even !default;
.table-striped {
// reset
// :not(:hover) for table-hover override
tbody tr:nth-of-type(odd):not(:hover) {
background-color: transparent;
}
// :not(:hover) for table-hover override
tbody tr:nth-of-type(#{$table-striped-order}):not(:hover) {
background-color: $table-accent-bg;
}
}