MultipleSelectTable.less 583 B

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