From f332f498eaee1788ebd426cafe5271c3140937d6 Mon Sep 17 00:00:00 2001 From: zsmj Date: Tue, 9 Aug 2022 11:41:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=20=E8=A7=A3=E5=86=B3Safari?= =?UTF-8?q?=E4=B8=8Ainput=E5=92=8Ctextarea=E5=A1=AB=E5=85=85=E6=96=87?= =?UTF-8?q?=E5=AD=97=E9=A2=9C=E8=89=B2=E9=80=8F=E6=98=8E=E5=BA=A6=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/less/core/utils/common.less | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/less/core/utils/common.less b/src/less/core/utils/common.less index 036778c59..76a93b316 100644 --- a/src/less/core/utils/common.less +++ b/src/less/core/utils/common.less @@ -3,12 +3,17 @@ .base-disabled { cursor: not-allowed !important; color: @color-bi-text-disabled !important; + & .bi-input { color: @color-bi-text-disabled !important; + -webkit-text-fill-color: @color-bi-text-disabled; } + & .bi-textarea { color: @color-bi-text-disabled !important; + -webkit-text-fill-color: @color-bi-text-disabled; } + & .b-font:before { color: @color-bi-icon-disabled !important; } @@ -17,12 +22,17 @@ .bi-theme-dark { .base-disabled { color: @color-bi-text-disabled-theme-dark !important; + & .bi-input { color: @color-bi-text-disabled-theme-dark !important; + -webkit-text-fill-color: @color-bi-text-disabled-theme-dark; } + & .bi-textarea { color: @color-bi-text-disabled-theme-dark !important; + -webkit-text-fill-color: @color-bi-text-disabled-theme-dark; } + & .b-font:before { color: @color-bi-icon-disabled-theme-dark !important; }