diff --git a/client/assets/styles/instance.less b/client/assets/styles/instance.less index 151443c1..05952fc7 100644 --- a/client/assets/styles/instance.less +++ b/client/assets/styles/instance.less @@ -361,12 +361,16 @@ // } .equipping, .receiving { - transition: border-color 0.5s ease-in; - transition-duration: 0.25s; - transition-delay: 0; - transition-timing-function: ease; + animation: eq 0.75s cubic-bezier(0, 0, 1, 1) 0s infinite alternate; +} - border: 2px dashed @gray-hint; +@keyframes eq { + from { + background: @black; + } + to { + background: @gray; + } } .thresholds {