MultipleSelectTable.less 605 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import "~antd/lib/style/themes/default.less";
  2. .container {
  3. .tableWrapper {
  4. }
  5. .buttonWrapper {
  6. height: 50px;
  7. line-height: 50px;
  8. text-align: center;
  9. vertical-align: middle;
  10. border-top: 2px dashed #eee;
  11. margin-top: 10px;
  12. }
  13. }
  14. .table {
  15. :global {
  16. .ant-table-wrapper {
  17. height: 300px;
  18. }
  19. .ant-table-tbody > tr > td {
  20. padding: 5px;
  21. }
  22. .ant-table-thead > tr > th {
  23. padding: 10px 5px;
  24. }
  25. .ant-table-footer {
  26. height: 46px;
  27. padding: 5px;
  28. }
  29. .ant-table-row {
  30. &:hover {
  31. cursor: pointer;
  32. }
  33. }
  34. }
  35. }