diff --git a/src/assets/theme/red.scss b/src/assets/theme/red.scss index bcce6b11501f4ee62f855d8a41b7be7fa6336d90..02f24b2720eb272751991cb6887489b561034daa 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; + } + } + } }