暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }