fix: text-fill-color may affect child element

This commit is contained in:
陈嘉涵 2020-02-10 10:58:48 +08:00
parent 1fe96f3edc
commit e17a4a2499
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@
&:disabled {
color: @field-input-disabled-text-color;
-webkit-text-fill-color: @field-input-disabled-text-color; // fix disabled color in iOS
-webkit-text-fill-color: currentColor; // fix disabled color in iOS
background-color: transparent;
cursor: not-allowed;
opacity: 1;
@ -148,7 +148,7 @@
&,
&::placeholder {
color: @field-input-error-text-color;
-webkit-text-fill-color: @field-input-error-text-color;
-webkit-text-fill-color: currentColor;
}
}
}

View File

@ -86,7 +86,7 @@
&:disabled {
color: @stepper-input-disabled-text-color;
background-color: @stepper-input-disabled-background-color;
-webkit-text-fill-color: @stepper-input-disabled-text-color; // fix disabled color in iOS
-webkit-text-fill-color: currentColor; // fix disabled color in iOS
opacity: 1;
}