common.less 447 B

123456789101112131415161718192021
  1. /* 覆盖ant-design-vue 样式 **/
  2. .ant-input-number-disabled,
  3. .ant-radio-disabled,
  4. .ant-select-disabled,
  5. .ant-input[disabled] {
  6. color: rgba(0, 0, 0, 0.85) !important;
  7. }
  8. .ant-radio-disabled .ant-radio-inner::after {
  9. background-color: rgba(0, 0, 0, 0.6) !important;
  10. }
  11. .ant-select-disabled .ant-select-selection {
  12. background: #f9f9f9;
  13. cursor: not-allowed;
  14. }
  15. .ant-input-number-disabled .ant-input-number-input {
  16. cursor: not-allowed;
  17. }