1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-11-28 10:24:10 +01:00

Fix: Bootstrap 4 table-bordered class could have a missing border on header cells which used a colspan/rowspan

DD-1012
This commit is contained in:
Allan Jardine 2020-05-21 09:59:13 +00:00
parent 411da6edba
commit c44e99c4eb
3 changed files with 6 additions and 3 deletions

View File

@ -1 +1 @@
6d28eaa95b3b54ae6f28bbd11a2404d737b5e31b
0d1104cd17bff11c770f016d454a6f5cbd09b254

View File

@ -180,6 +180,9 @@ table.dataTable.table-sm .sorting_desc:after {
top: 5px;
}
table.table-bordered.dataTable {
border-right-width: 0;
}
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
border-left-width: 0;
@ -187,7 +190,7 @@ table.table-bordered.dataTable td {
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
border-right-width: 0;
border-right-width: 1px;
}
table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {

File diff suppressed because one or more lines are too long