|
@@ -2,25 +2,25 @@
|
|
|
// --------------------------
|
|
|
|
|
|
.#{$fa-css-prefix}-spin {
|
|
|
- -webkit-animation: spin 2s infinite linear;
|
|
|
- -moz-animation: spin 2s infinite linear;
|
|
|
- -o-animation: spin 2s infinite linear;
|
|
|
- animation: spin 2s infinite linear;
|
|
|
+ -webkit-animation: fa-spin 2s infinite linear;
|
|
|
+ -moz-animation: fa-spin 2s infinite linear;
|
|
|
+ -o-animation: fa-spin 2s infinite linear;
|
|
|
+ animation: fa-spin 2s infinite linear;
|
|
|
}
|
|
|
|
|
|
-@-moz-keyframes spin {
|
|
|
+@-moz-keyframes fa-spin {
|
|
|
0% { -moz-transform: rotate(0deg); }
|
|
|
100% { -moz-transform: rotate(359deg); }
|
|
|
}
|
|
|
-@-webkit-keyframes spin {
|
|
|
+@-webkit-keyframes fa-spin {
|
|
|
0% { -webkit-transform: rotate(0deg); }
|
|
|
100% { -webkit-transform: rotate(359deg); }
|
|
|
}
|
|
|
-@-o-keyframes spin {
|
|
|
+@-o-keyframes fa-spin {
|
|
|
0% { -o-transform: rotate(0deg); }
|
|
|
100% { -o-transform: rotate(359deg); }
|
|
|
}
|
|
|
-@keyframes spin {
|
|
|
+@keyframes fa-spin {
|
|
|
0% {
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
transform: rotate(0deg);
|