@appscode/design-system 1.0.43-alpha.202 → 1.0.43-alpha.204
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -513,9 +513,38 @@ li {
|
|
|
513
513
|
transform: scale(0.8);
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
|
+
&.is-refresh.spin {
|
|
517
|
+
i {
|
|
518
|
+
animation: spin 1s linear infinite;
|
|
519
|
+
}
|
|
520
|
+
}
|
|
516
521
|
}
|
|
517
522
|
}
|
|
518
523
|
|
|
524
|
+
@-moz-keyframes spin {
|
|
525
|
+
from {
|
|
526
|
+
-moz-transform: rotate(0deg);
|
|
527
|
+
}
|
|
528
|
+
to {
|
|
529
|
+
-moz-transform: rotate(360deg);
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
@-webkit-keyframes spin {
|
|
533
|
+
from {
|
|
534
|
+
-webkit-transform: rotate(0deg);
|
|
535
|
+
}
|
|
536
|
+
to {
|
|
537
|
+
-webkit-transform: rotate(360deg);
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
@keyframes spin {
|
|
541
|
+
from {
|
|
542
|
+
transform: rotate(0deg);
|
|
543
|
+
}
|
|
544
|
+
to {
|
|
545
|
+
transform: rotate(360deg);
|
|
546
|
+
}
|
|
547
|
+
}
|
|
519
548
|
// has info button end
|
|
520
549
|
|
|
521
550
|
// dark theme start
|