1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-20 18:54:15 +01:00

Fix - CSS: Bootstrap 4 needs border-spacing:0 if used with border-collapse and cellspacing isn't used in the HTML

This commit is contained in:
Allan Jardine 2018-06-14 11:13:22 +01:00
parent 9b95edf189
commit aee9a09035
3 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
d0690c4decfc39c04d055fd715e09e6ca2a309d1
2b0dce5b4e285e9c09b9c59293df363e99fffc76

View File

@ -4,6 +4,7 @@ table.dataTable {
margin-bottom: 6px !important;
max-width: none !important;
border-collapse: separate !important;
border-spacing: 0;
}
table.dataTable td,
table.dataTable th {

File diff suppressed because one or more lines are too long