Fix - integration: Border width on footer cells was incorrect when using `table-bordered` in Bootstrap

Fixes DataTables/DataTables #505
pull/183/head 1.10.6
Allan Jardine 10 years ago
parent 91f1cb79ea
commit 838d8df9c6

@ -178,6 +178,11 @@ table.table-bordered tbody td {
border-left-width: 0; border-left-width: 0;
border-bottom-width: 0; border-bottom-width: 0;
} }
table.table-bordered tfoot th,
table.table-bordered tfoot td {
border-left-width: 0;
border-bottom-width: 0;
}
table.table-bordered th:last-child, table.table-bordered th:last-child,
table.table-bordered td:last-child { table.table-bordered td:last-child {
border-right-width: 0; border-right-width: 0;

Loading…
Cancel
Save