From e17a4a24993822b0f35114dacbbb3bebc5b51a60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Mon, 10 Feb 2020 10:58:48 +0800 Subject: [PATCH] fix: text-fill-color may affect child element --- src/field/index.less | 4 ++-- src/stepper/index.less | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/field/index.less b/src/field/index.less index 43ea3a91f..d0ee6cd15 100644 --- a/src/field/index.less +++ b/src/field/index.less @@ -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; } } } diff --git a/src/stepper/index.less b/src/stepper/index.less index dcfdd6eee..0a537f56c 100644 --- a/src/stepper/index.less +++ b/src/stepper/index.less @@ -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; }