common.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .fl {
  2. float: left;
  3. }
  4. /*列表上方操作按钮区域*/
  5. .ant-card-body .table-operator {
  6. margin-bottom: 18px;
  7. }
  8. /** Button按钮间距 */
  9. .table-operator .ant-btn {
  10. margin: 8px 8px 0 0;
  11. }
  12. /*列表td的padding设置 可以控制列表大小*/
  13. .ant-table-tbody .ant-table-row td {
  14. padding-top: 15px;
  15. padding-bottom: 15px;
  16. }
  17. /*列表页面弹出modal*/
  18. .ant-modal-cust-warp {
  19. height: 100%;
  20. }
  21. /*弹出modal Y轴滚动条*/
  22. .ant-modal-cust-warp .ant-modal-body {
  23. height: calc(100% - 110px) !important;
  24. overflow-y: auto;
  25. }
  26. /*弹出modal 先有content后有body 故滚动条控制在body上*/
  27. .ant-modal-cust-warp .ant-modal-content {
  28. height: 90% !important;
  29. overflow-y: hidden;
  30. }
  31. /*列表中有图片的加这个样式 参考用户管理*/
  32. .anty-img-wrap {
  33. height: 25px;
  34. position: relative;
  35. }
  36. .anty-img-wrap > img {
  37. max-height: 100%;
  38. }
  39. /*列表中范围查询样式*/
  40. .query-group-cust {
  41. width: calc(50% - 10px);
  42. }
  43. .query-group-split-cust:before {
  44. content: '~';
  45. width: 20px;
  46. display: inline-block;
  47. text-align: center;
  48. }
  49. /*erp风格子表外框padding设置*/
  50. .ant-card-wider-padding.cust-erp-sub-tab > .ant-card-body {
  51. padding: 5px 12px;
  52. }
  53. .delRed {
  54. color: red;
  55. }
  56. .sendGr {
  57. color: green;
  58. }
  59. a {
  60. text-decoration: none !important;
  61. }