antui-reset.less 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .operation-cell {
  2. .ant-btn-link {
  3. padding: 0;
  4. height: auto;
  5. border: none;
  6. + .ant-btn-link {
  7. margin-left: 12px;
  8. }
  9. }
  10. }
  11. // ant-modal
  12. .ant-modal {
  13. .ant-modal-content {
  14. padding: 0;
  15. }
  16. .ant-modal-close {
  17. top: 13px;
  18. color: @text-color2;
  19. }
  20. .ant-modal-header {
  21. padding: 12px 20px;
  22. height: 48px;
  23. background: linear-gradient(180deg, #ffffff 0%, #f2f3f5 100%);
  24. border-bottom: 1px solid @border-color1;
  25. margin: 0;
  26. }
  27. .ant-modal-title {
  28. font-weight: 500;
  29. font-size: 16px;
  30. color: @text-color1;
  31. line-height: 24px;
  32. }
  33. .ant-modal-body {
  34. padding: 20px;
  35. }
  36. .ant-modal-footer {
  37. margin: 0;
  38. padding: 0 20px 20px;
  39. }
  40. }
  41. // .ant-btn
  42. .ant-btn-success {
  43. color: #fff;
  44. background-color: @success-color;
  45. box-shadow: 0 2px 0 rgba(5, 115, 255, 0.1);
  46. &:hover {
  47. opacity: 0.8;
  48. }
  49. }