dataTables.fixedColumns.css 517 B

123456789101112131415161718192021222324
  1. /* Block out what is behind the fixed column's header and footer */
  2. table.DTFC_Cloned thead,
  3. table.DTFC_Cloned tfoot {
  4. background-color: white;
  5. }
  6. /* Block out the gap above the scrollbar on the right, when there is a fixed
  7. * right column
  8. */
  9. div.DTFC_Blocker {
  10. background-color: white;
  11. }
  12. div.DTFC_LeftWrapper table.dataTable,
  13. div.DTFC_RightWrapper table.dataTable {
  14. margin-bottom: 0;
  15. }
  16. div.DTFC_LeftWrapper table.dataTable.no-footer,
  17. div.DTFC_RightWrapper table.dataTable.no-footer {
  18. border-bottom: none;
  19. }