Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fixedcolumns.bootstrap5.scss 715B

12345678910111213141516171819202122232425262728293031
  1. @import "../../scss/_bootstrap-extended/include";
  2. @import "datatables.net-fixedcolumns-bs5/css/fixedColumns.bootstrap5";
  3. div.dt-container {
  4. div.dt-scroll-body thead tr {
  5. border-block-end-width: 0;
  6. border-block-start-width: 0;
  7. }
  8. table.dataTable {
  9. thead,
  10. tbody {
  11. tr > .dtfc-fixed-left,
  12. tr > .dtfc-fixed-right {
  13. background-color: var(--#{$prefix}paper-bg);
  14. }
  15. }
  16. thead th {
  17. text-align: center;
  18. }
  19. &.dtfc-scrolling-left tr > .dtfc-fixed-left,
  20. &.dtfc-scrolling-right tr > .dtfc-fixed-right {
  21. &::after {
  22. box-shadow: none;
  23. }
  24. }
  25. }
  26. div.dt-scroll div.dtfc-top-blocker {
  27. background-color: var(--#{$prefix}paper-bg);
  28. }
  29. }