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

Fix - CSS: jQuery UI styling with cell-border class and scrolling enabled could have the columns looking like they are slightly misaligned (1px) due to an incorrect border assignment

- Need to have the border modification in the header match how the body
  works - i.e. on the left do the collpase
This commit is contained in:
Allan Jardine 2015-10-21 09:44:22 +01:00
parent 727937c836
commit b2f1dd5d99
3 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
d7173d0a233014a7791fdec0aee3c95e1965235b
66cd64544a62fdb2839dec62e9f82e4a3fdd446b

View File

@ -431,11 +431,11 @@ table.dataTable thead th div.DataTables_sort_wrapper span {
}
table.dataTable thead th.ui-state-default,
table.dataTable tfoot th.ui-state-default {
border-right-width: 0;
border-left-width: 0;
}
table.dataTable thead th.ui-state-default:last-child,
table.dataTable tfoot th.ui-state-default:last-child {
border-right-width: 1px;
table.dataTable thead th.ui-state-default:first-child,
table.dataTable tfoot th.ui-state-default:first-child {
border-left-width: 1px;
}
/*

File diff suppressed because one or more lines are too long