From f17b0b1c8254d7f4c8d2c17adc3edc942c1bd23e Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Mon, 27 Feb 2023 03:16:08 +0000 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89loading=E7=BB=84?= =?UTF-8?q?=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 | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/assets/theme/red.scss b/src/assets/theme/red.scss index bcce6b1..02f24b2 100644 --- a/src/assets/theme/red.scss +++ b/src/assets/theme/red.scss @@ -492,4 +492,34 @@ body[data-theme='red'] { } } +.ant-dropdown-menu{ +.ant-dropdown-menu-item{ + &:hover{ + background-color: $linx-red-theme-rgb; + } +} +} + @keyframes loading { + 0%{ + transform: scaleZ(0deg); + } + 50%{ + transform: scaleZ(180deg); + } + 100%{ + transform: rotateZ(360deg); + } + } + .ant-spin{ + .ant-spin-dot-spin{ + background: url('./images/logo_small.png') no-repeat; + background-size: cover; + animation: loading 1.5s; + animation-iteration-count: infinite; + i{ + // display: none; + background: transparent; + } + } + } } -- Gitee