antd.table.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .ant-table {
  2. line-height: 1;
  3. .ant-table-cell {
  4. box-sizing: border-box;
  5. height: 34px;
  6. padding: 0;
  7. }
  8. .ant-table-container {
  9. .ant-table-thead {
  10. tr:first-child {
  11. .ant-table-cell {
  12. border: none;
  13. &:before {
  14. display: none;
  15. }
  16. &:first-child {
  17. border-radius: @border-radius-base 0 0 @border-radius-base;
  18. }
  19. &:last-child {
  20. border-radius: 0 @border-radius-base @border-radius-base 0;
  21. }
  22. }
  23. }
  24. }
  25. .ant-table-tbody {
  26. .ant-table-row {
  27. .ant-table-cell {
  28. border: none;
  29. font-weight: bold;
  30. color: @font-color;
  31. padding: 6px 15px;
  32. &:first-child {
  33. border-radius: @border-radius-base 0 0 @border-radius-base;
  34. }
  35. &:last-child {
  36. border-radius: 0 @border-radius-base @border-radius-base 0;
  37. }
  38. }
  39. &.table-striped {
  40. .ant-table-cell {
  41. background-color: @bg-color;
  42. }
  43. }
  44. }
  45. }
  46. }
  47. }