These icons don't work in V9 Build 3238:
far fa-clock
far fa-circle
far fa-user
I am wondering if all of the regular icons are broken? All i can see is a rectangle symbol.
They work in older AwareIM that uses the same bundled version of Font Awesome free (5.6.3).
Anyone else experiencing this problem?
missing fontawesome icons in V9
Re: missing fontawesome icons in V9
Some icons have a ”far” class in Font Awesome 5.x.
fa fa-circle = circle with a fill
far fa-circle = circle that does not have fill
R means ”regular”.
Example: https://fontawesome.com/v5/search?q=circle&o=r&m=free
https://fontawesome.com/v5/icons/circle ... &s=regular
fa fa-circle = circle with a fill
far fa-circle = circle that does not have fill
R means ”regular”.
Example: https://fontawesome.com/v5/search?q=circle&o=r&m=free
https://fontawesome.com/v5/icons/circle ... &s=regular
-
- Posts: 1472
- Joined: Tue Jan 24, 2017 5:51 am
- Location: 'Stralya
Re: missing fontawesome icons in V9
far is marked on the Font Awesome web site as a Pro font. https://fontawesome.com/v5/docs/web/reference-icons/
but on the link that you have included it is marked as a free font https://fontawesome.com/v5/search?q=circle&o=r&m=free
So FA have created some confusion as to what is what.
The aware.css file at /Tomcat/webapps/AwareIM/aware_kendo/resources/css controls this at
Move far from the pro to the free group.
but on the link that you have included it is marked as a free font https://fontawesome.com/v5/search?q=circle&o=r&m=free
So FA have created some confusion as to what is what.
The aware.css file at /Tomcat/webapps/AwareIM/aware_kendo/resources/css controls this at
Code: Select all
.fa, .fas, .fab {
font-family: 'Font Awesome 5 Free' !important;
}
.far, .fal, .fad {
font-family: 'Font Awesome 5 Pro' !important;
}
Re: missing fontawesome icons in V9
Thanks PointsWell!
This solves the issue. I am updating my documentation to make sure to fix this file after each upgrade.
My experience is that all icons listed on Fontawesome as "version 5.x" and "free" has worked perfectly in AwareIM since I started using it.
So I am very pleased that we can keep using them freely.
This solves the issue. I am updating my documentation to make sure to fix this file after each upgrade.
My experience is that all icons listed on Fontawesome as "version 5.x" and "free" has worked perfectly in AwareIM since I started using it.
So I am very pleased that we can keep using them freely.