1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-18 11:52:11 +01:00

Fix - CSS: compact style could have the column title overlapping the sorting indicator

Fixes DataTables/DataTables #527
This commit is contained in:
Allan Jardine 2015-04-03 09:51:11 +01:00
parent 294a32f8d0
commit 7c4bf3e3b8
3 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
3c9c817646eb9ffb39d92055d975aa224a9fc023
f63c84b3937618cfaedc8f5b36bbfd43c450b888

View File

@ -211,15 +211,15 @@ table.dataTable.nowrap th, table.dataTable.nowrap td {
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
padding: 5px 9px;
padding: 4px 17px 4px 4px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
padding: 5px 9px 3px 9px;
padding: 4px;
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
padding: 4px 5px;
padding: 4px;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {

File diff suppressed because one or more lines are too long