Skip to content

Commit 71da437

Browse files
author
Phil Filippak
authored
Merge pull request #427 from wavesplatform/client-337-loader-fix
Client 337 loader fix
2 parents 6e873dc + 3bcc65c commit 71da437

1 file changed

Lines changed: 3 additions & 21 deletions

File tree

src/modules/ui/directives/loader/loader.less

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,45 +38,27 @@ md-dialog .preloader-holder {
3838
height: @preloader-size;
3939
content: '';
4040
position: absolute;
41-
-webkit-animation-fill-mode: both;
4241
animation-fill-mode: both;
43-
animation: animationFrames 1.8s infinite ease-in-out;
44-
-webkit-animation: animationFrames 1.8s infinite ease-in-out;
45-
-moz-animation: animationFrames 1.8s infinite ease-in-out;
42+
animation: animationFrames 1.6s infinite ease-in-out;
4643
display: inline-block;
47-
4844
}
4945

5046
&:first-child + i::before {
51-
-webkit-animation-delay: 0.16s;
5247
animation-delay: 0.16s;
5348
}
5449

5550
&:last-child::before {
56-
-webkit-animation-delay: 0.32s;
5751
animation-delay: 0.32s;
5852
}
59-
60-
}
61-
62-
}
63-
64-
@-webkit-keyframes animationFrames {
65-
0%,
66-
80%,
67-
100% {
68-
box-shadow: 0 15px 0 0 @color-submit-400;
69-
}
70-
40% {
71-
box-shadow: 0 15px 0 -15px @color-submit-400;
7253
}
7354
}
7455

7556
@keyframes animationFrames {
7657
0%,
7758
80%,
7859
100% {
79-
box-shadow: 0 15px 0 0 @color-submit-400;
60+
box-shadow: 0 15px 0 0 @color-submit-400,
61+
0 17px 0 0 transparent;
8062
}
8163
40% {
8264
box-shadow: 0 15px 0 -15px @color-submit-400;

0 commit comments

Comments
 (0)