IsolationWorkListTable.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* 隔离作业模块下各列表:隔行 #f0f0f0(Ant Design Table 需覆盖 td) */
  2. .isolation-work-list-table .ant-table-tbody > tr.isolation-work-list-row-alt > td {
  3. background-color: #f0f0f0 !important;
  4. }
  5. .isolation-work-list-table .ant-table-tbody > tr.isolation-work-list-row-alt:hover > td {
  6. background-color: #e8e8e8 !important;
  7. }
  8. /* 列表表格:统一更紧凑的间距(钥匙管理等使用) */
  9. .isolation-work-list-table .ant-table {
  10. font-size: 14px;
  11. }
  12. .isolation-work-list-table .ant-table-thead > tr > th {
  13. padding: 10px 12px !important;
  14. line-height: 1.25 !important;
  15. vertical-align: middle !important;
  16. }
  17. .isolation-work-list-table .ant-table-tbody > tr > td {
  18. padding: 10px 12px !important;
  19. line-height: 1.25 !important;
  20. vertical-align: middle !important;
  21. }
  22. /* 选择框列和操作列更居中一些 */
  23. .isolation-work-list-table .ant-table-selection-column,
  24. .isolation-work-list-table .ant-table-selection-column .ant-checkbox-wrapper,
  25. .isolation-work-list-table .ant-table-cell-fix-right {
  26. vertical-align: middle !important;
  27. }
  28. /* 系统管理:shadcn Table 隔行(背景需落在 td 上) */
  29. .system-mgmt-shadcn-table [data-slot="table-body"] > [data-slot="table-row"].system-mgmt-row-alt > [data-slot="table-cell"] {
  30. background-color: #f0f0f0 !important;
  31. }
  32. .system-mgmt-shadcn-table [data-slot="table-body"] > [data-slot="table-row"].system-mgmt-row-alt:hover > [data-slot="table-cell"] {
  33. background-color: #e8e8e8 !important;
  34. }
  35. .system-mgmt-shadcn-table [data-slot="table-body"] > [data-slot="table-row"]:not(.system-mgmt-row-alt) > [data-slot="table-cell"] {
  36. background-color: #ffffff !important;
  37. }
  38. .system-mgmt-shadcn-table [data-slot="table-body"] > [data-slot="table-row"]:not(.system-mgmt-row-alt):hover > [data-slot="table-cell"] {
  39. background-color: #f9fafb !important;
  40. }