Tweak steps animation style

This commit is contained in:
afc163 2017-03-18 15:32:29 +08:00
parent 3740fb7f3c
commit a10704bc44

View File

@ -90,8 +90,10 @@
.@{steps-prefix-cls}-tail > i:after {
width: 100%;
background: @finish-tail-color;
transition: all 0.6s;
transition: all .6s;
opacity: 1;
box-shadow: 0 0 0 0 @primary-color;
animation: tailEffect .4s;
}
.@{steps-prefix-cls}-title {
color: @finish-title-color;
@ -454,3 +456,9 @@
}
}
}
@keyframes tailEffect {
to {
box-shadow: 0 0 3px 3px transparent;
}
}