Page 1 of 1

fa-spin doesn't work (not animated)

Posted: 28 Jul 2016, 05:09
by AndrewGr
Hi there,

I have an issue with ajax indicator: it just showed as static, without any animation (in any browser).
Image

Any ideas how to fix it?

Thank you!

Re: fa-spin doesn't work (not animated)

Posted: 28 Jul 2016, 14:01
by mert.sincan
Please remove comments in fa class;
in font-awesome.css

Code: Select all

.fa {
  display: inline-block; /* removed comment */
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
OR

please use;

Code: Select all

.fa {
   display: inline-block;
}

Re: fa-spin doesn't work (not animated)

Posted: 29 Jul 2016, 08:03
by AndrewGr
Thank you, that worked for me! Issue solved!

Re: fa-spin doesn't work (not animated)

Posted: 29 Jul 2016, 08:22
by mert.sincan
Glad to hear, thanks for the update! I'll add this fix to next release.