| 123456789101112131415161718192021 |
- /* 覆盖ant-design-vue 样式 **/
- .ant-input-number-disabled,
- .ant-radio-disabled,
- .ant-select-disabled,
- .ant-input[disabled] {
- color: rgba(0, 0, 0, 0.85) !important;
- }
- .ant-radio-disabled .ant-radio-inner::after {
- background-color: rgba(0, 0, 0, 0.6) !important;
- }
- .ant-select-disabled .ant-select-selection {
- background: #f9f9f9;
- cursor: not-allowed;
- }
- .ant-input-number-disabled .ant-input-number-input {
- cursor: not-allowed;
- }
|