common.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*列表上方操作按钮区域*/
  2. .ant-card-body .table-operator {
  3. margin-bottom: 18px;
  4. }
  5. /** Button按钮间距 */
  6. .table-operator .ant-btn {
  7. margin-right: 6px
  8. }
  9. /*列表td的padding设置 可以控制列表大小*/
  10. .ant-table-tbody .ant-table-row td {
  11. padding-top: 15px;
  12. padding-bottom: 15px;
  13. }
  14. /*列表页面弹出modal*/
  15. .ant-modal-cust-warp {
  16. height: 100%
  17. }
  18. /*弹出modal Y轴滚动条*/
  19. .ant-modal-cust-warp .ant-modal-body {
  20. height: calc(100% - 110px) !important;
  21. overflow-y: auto
  22. }
  23. /*弹出modal 先有content后有body 故滚动条控制在body上*/
  24. .ant-modal-cust-warp .ant-modal-content {
  25. height: 90% !important;
  26. overflow-y: hidden
  27. }
  28. /*列表中有图片的加这个样式 参考用户管理*/
  29. .anty-img-wrap {
  30. height: 25px;
  31. position: relative;
  32. }
  33. .anty-img-wrap > img {
  34. max-height: 100%;
  35. }
  36. /*列表中范围查询样式*/
  37. .query-group-cust {
  38. width: calc(50% - 10px)
  39. }
  40. .query-group-split-cust:before {
  41. content: "~";
  42. width: 20px;
  43. display: inline-block;
  44. text-align: center
  45. }