pi-hole/web

After datatables update, tables are no longer striped

rdwebdesign opened this issue · 1 comments

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;
}

Should be fixed by #2874