Add loading indicator to add torrents button

This commit is contained in:
John Furrow
2016-02-08 22:31:00 -08:00
parent 3d9a3dbf6b
commit a30f46292d
10 changed files with 170 additions and 6 deletions
+32
View File
@@ -1,3 +1,13 @@
@keyframes loading-indicator-dots-pulse {
0% {
fill-opacity: 0.2;
}
100% {
fill-opacity: 0.8;
}
}
.icon {
&--eta {
@@ -9,4 +19,26 @@
}
}
}
&--loading-indicator {
.loading-indicator {
&--dots {
&__dot {
animation: loading-indicator-dots-pulse 0.6s linear alternate infinite;
fill: $white;
&--center {
animation-delay: 0.2s;
}
&--right {
animation-delay: 0.4s;
}
}
}
}
}
}