From 838d8df9c6b5a045a654d49214a8833eccb4ee92 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Fri, 3 Apr 2015 09:59:21 +0100 Subject: [PATCH] Fix - integration: Border width on footer cells was incorrect when using `table-bordered` in Bootstrap Fixes DataTables/DataTables #505 --- integration/bootstrap/3/dataTables.bootstrap.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/integration/bootstrap/3/dataTables.bootstrap.css b/integration/bootstrap/3/dataTables.bootstrap.css index df9b7f5..2ccacaf 100644 --- a/integration/bootstrap/3/dataTables.bootstrap.css +++ b/integration/bootstrap/3/dataTables.bootstrap.css @@ -178,6 +178,11 @@ table.table-bordered tbody td { border-left-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 td:last-child { border-right-width: 0;