From 57ed36dc6a2761e302020ca1e890fd1ac1776d6b Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Fri, 24 Feb 2023 06:34:44 +0000 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E5=8D=95=E8=BE=93=E5=85=A5=E6=A1=86?= =?UTF-8?q?=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 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/assets/theme/red.scss b/src/assets/theme/red.scss index e59c8d6..952babd 100644 --- a/src/assets/theme/red.scss +++ b/src/assets/theme/red.scss @@ -260,4 +260,30 @@ body[data-theme='red'] { } } } + + .ant-input{ + border-radius: 20px; + &:hover{ + border-color: $linx-red-theme; + } + &:focus{ + border-color: $linx-red-theme; + box-shadow: 0 0 0 2px $linx-red-theme-rgb; + } + } + .ant-input-number{ + border-radius: 20px; + &:hover{ + border-color: $linx-red-theme; + } + &:focus{ + border-color: $linx-red-theme; + box-shadow: 0 0 0 2px $linx-red-theme-rgb; + } + .ant-input-number-handler-wrap{ + border-radius: 0 20px 20px 0; + } + } + + } -- Gitee