fix(Field): disabled cursor should be not-allowed (#11800)

This commit is contained in:
neverland 2023-05-02 10:36:03 +08:00 committed by GitHub
parent f9cd6b979f
commit da138d5321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,6 +92,10 @@
color: var(--van-field-placeholder-text-color);
}
&:read-only {
cursor: default;
}
&:disabled {
color: var(--van-field-input-disabled-text-color);
cursor: not-allowed;
@ -100,10 +104,6 @@
-webkit-text-fill-color: var(--van-field-input-disabled-text-color);
}
&:read-only {
cursor: default;
}
&--center {
justify-content: center;
text-align: center;