From 93caef5732686fbc1aea632234bc3516d774cdf8 Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Thu, 23 Feb 2023 07:02:47 +0000 Subject: [PATCH] =?UTF-8?q?=E7=BA=A2=E8=89=B2=E4=B8=BB=E9=A2=98=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F=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/red.scss | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/assets/theme/red.scss b/src/assets/theme/red.scss index f3750d3..b0b4484 100644 --- a/src/assets/theme/red.scss +++ b/src/assets/theme/red.scss @@ -102,5 +102,37 @@ body[data-theme='red'] { border: 1px solid $linx-red-theme; } } + +.ant-tag{ + &.info{ + background-color: #fff !important; + border-color: $linx-red-light-border-color; + } + &.success{ + background-color: $linx-red-success-color; + border-color: $linx-red-success-color; + color: #fff !important; + } + &.danger{ + background-color: $linx-red-danger-color; + border-color: $linx-red-danger-color; + color: #fff !important; + } + &.warning{ + background-color: $linx-red-warning-color; + border-color: $linx-red-warning-color; + color: #fff !important; + } + &.gray { + background-color: $linx-red-gray-color; + border-color: $linx-red-gray-color; + color: #fff !important; + } + &.dark { + background-color: $linx-red-dark-color; + border-color: $linx-red-dark-color; + color: #fff !important; + } + } } -- Gitee