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

Fix - Compact class would cause header centered text to be slightly off center

https://datatables.net/forums/discussion/52288/datatables-compact-class-prevents-centering-of-elements#latest
This commit is contained in:
Allan Jardine 2020-05-21 09:39:41 +00:00
parent 05acb1ba4f
commit 560dde4217
5 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
e2e28f03d36c2fe92e3eb0d031b3742eabca5bc0
941a2f037381bcd19e64f08c1bb766fc20497373

View File

@ -148,7 +148,7 @@ table.dataTable.nowrap th, table.dataTable.nowrap td {
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
padding: 4px 17px 4px 4px;
padding: 4px 17px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {

File diff suppressed because one or more lines are too long

View File

@ -175,7 +175,7 @@ table.dataTable.nowrap th, table.dataTable.nowrap td {
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
padding: 4px 17px 4px 4px;
padding: 4px 17px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {

File diff suppressed because one or more lines are too long