dataTables.fixedColumns.css 530 B

12345678910111213141516171819202122232425
  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. z-index: 2;
  16. }
  17. div.DTFC_LeftWrapper table.dataTable.no-footer,
  18. div.DTFC_RightWrapper table.dataTable.no-footer {
  19. border-bottom: none;
  20. }