After datatables update, tables are no longer striped
rdwebdesign opened this issue · 1 comments
rdwebdesign commented
Tables lost the zebra-stripes effect.
The original bootstrap CSS:
.table-striped > tbody > tr:nth-of-type(2n+1) {
background-color: #f9f9f9;
}
Is overwritten by datatables CSS:
table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) {
background-color: transparent;
}