From bdee20e68fecb5ff809740f728854b4ee3f3de8f Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Tue, 14 Feb 2023 02:42:45 +0000 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E4=B8=8D=E5=90=8C=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E7=9A=84=E6=A0=87=E7=AD=BE=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dong Xia --- src/assets/theme/blue.scss | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/assets/theme/blue.scss b/src/assets/theme/blue.scss index 2b8f289..36584b8 100644 --- a/src/assets/theme/blue.scss +++ b/src/assets/theme/blue.scss @@ -55,4 +55,36 @@ body[data-theme='blue'] { } } + .ant-tag{ + &.info{ + background-color: #fff !important; + border-color: $blue-light-border-color; + } + &.success{ + background-color: $blue-success-color; + border-color: $blue-success-color; + color: #fff !important; + } + &.danger{ + background-color: $blue-danger-color; + border-color: $blue-danger-color; + color: #fff !important; + } + &.warning{ + background-color: $blue-warning-color; + border-color: $blue-warning-color; + color: #fff !important; + } + &.gray { + background-color: $blue-gray-color; + border-color: $blue-gray-color; + color: #fff !important; + } + &.dark { + background-color: $blue-dark-color; + border-color: $blue-dark-color; + color: #fff !important; + } + } + } \ No newline at end of file -- Gitee