From 8d0af447aa1b8245341b28f8d1d2091a35dc9966 Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Tue, 14 Feb 2023 02:48:12 +0000 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E8=A1=A8=E6=A0=BC=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E6=A0=B7=E5=BC=8F=E7=9A=84=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 | 59 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/src/assets/theme/blue.scss b/src/assets/theme/blue.scss index e70ba0d..ce42f57 100644 --- a/src/assets/theme/blue.scss +++ b/src/assets/theme/blue.scss @@ -124,4 +124,63 @@ body[data-theme='blue'] { } } + .ant-table { + .ant-table-header { + thead { + tr { + th { + background: $blue-theme-rgb; + font-weight: bold; + border-right: 1px solid #eee; + &:hover { + background: $blue-theme-rgb; + } + } + } + } + } + .ant-table-body { + tbody { + tr { + th { + border-right: 1px solid #dcdfe6; + } + } + } + } + } + .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td { + background-color: $blue-theme-rgb1; + } + .ant-table{ + .ant-table-content{ + thead{ + tr{ + th{ + background-color: $blue-theme-rgb !important; + } + } + } + tbody{ + tr{ + td:last-child{ + .ant-btn.ant-btn-link{ + margin-right: 0; + &[disabled]{ + i{ + color: $blue-gray-color !important; + } + } + } + i{ + font-size: 18px; + color: $blue-info-color; + } + } + } + } + } + } + + } \ No newline at end of file -- Gitee