common.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. .ant-drawer-open {
  22. z-index: 99999999999999999999999;
  23. }
  24. .ant-modal-wrap {
  25. z-index: 99999999999999999999999;
  26. }
  27. /*弹出modal Y轴滚动条*/
  28. .ant-modal-cust-warp .ant-modal-body {
  29. height: calc(100% - 110px) !important;
  30. overflow-y: auto;
  31. }
  32. /*弹出modal 先有content后有body 故滚动条控制在body上*/
  33. .ant-modal-cust-warp .ant-modal-content {
  34. height: 90% !important;
  35. overflow-y: hidden;
  36. }
  37. /*列表中有图片的加这个样式 参考用户管理*/
  38. .anty-img-wrap {
  39. height: 25px;
  40. position: relative;
  41. }
  42. .anty-img-wrap > img {
  43. max-height: 100%;
  44. }
  45. /*列表中范围查询样式*/
  46. .query-group-cust {
  47. width: calc(50% - 10px);
  48. }
  49. .query-group-split-cust:before {
  50. content: '~';
  51. width: 20px;
  52. display: inline-block;
  53. text-align: center;
  54. }
  55. /*erp风格子表外框padding设置*/
  56. .ant-card-wider-padding.cust-erp-sub-tab > .ant-card-body {
  57. padding: 5px 12px;
  58. }
  59. .delRed {
  60. color: red;
  61. }
  62. .sendGr {
  63. color: green;
  64. }
  65. a {
  66. text-decoration: none !important;
  67. }