From 4820ef0fe7aa8f0dc36f671f2014f2a92c2bcdb5 Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Tue, 14 Feb 2023 02:52:49 +0000 Subject: [PATCH] =?UTF-8?q?=E8=BE=93=E5=85=A5=E6=A1=86=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E5=99=A8=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F=E7=9A=84=E5=AE=9A?= =?UTF-8?q?=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 | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/src/assets/theme/blue.scss b/src/assets/theme/blue.scss index ce42f57..2ef490a 100644 --- a/src/assets/theme/blue.scss +++ b/src/assets/theme/blue.scss @@ -182,5 +182,61 @@ body[data-theme='blue'] { } } + .ant-pagination{ + .ant-pagination-item-link { + border-radius: 20px; + &:hover { + border-color: $blue-theme; + } + } + .ant-pagination-item,.ant-pagination-prev,.ant-pagination-next{ + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + a{ + &:hover{ + color: $blue-theme; + } + } + } + .ant-pagination-item-active{ + border-color: $blue-theme; + a{ + color: $blue-theme; + } + } + .ant-select-selection { + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + } + } + + .ant-input{ + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + &:focus{ + border-color: $blue-theme; + box-shadow: 0 0 0 2px $blue-theme-rgb; + } + } + .ant-input-number{ + border-radius: 20px; + &:hover{ + border-color: $blue-theme; + } + &:focus{ + border-color: $blue-theme; + box-shadow: 0 0 0 2px $blue-theme-rgb; + } + .ant-input-number-handler-wrap{ + border-radius: 0 20px 20px 0; + } + } + } \ No newline at end of file -- Gitee