You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I'm facing a problem with the FontAwesome icons, as I first mentioned at matplotlib/ipympl#274. But the issue is not related to ipympl but rather to ipywidgets. So, first of all, this is what the problem looks like when using the fontawesome icons:
After reading through past issues and the history of the developement I learned that there was a change in the FontAwesome version a few month ago, e.g. mentioned here #2848 by @martinRenou , but I couldn't track down the origin by myself. With the help from @Chaoste, we found the origin in the CSS class .fa. In the browser inspector it reads as follows:
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
but three style sections below (superseded by the one above) the font-family had a different name:
When we changed it in the top class it didn't immediately change, but with font: 900 normal normal 14px/1 "Font Awesome 5 Free"; the icon appeared:
According to this stack post it should be "Font Awesome 5 Free" isn't it? Or is a reference from "FontAwesome" to "Font Awesome 5 Free" somehow missing? I'm a little bit confused as I still don't know where to fix it permanently. Any help would be appreciated.
Describe the issue
Hello,
I'm facing a problem with the FontAwesome icons, as I first mentioned at matplotlib/ipympl#274. But the issue is not related to ipympl but rather to ipywidgets. So, first of all, this is what the problem looks like when using the fontawesome icons:
Output:
After reading through past issues and the history of the developement I learned that there was a change in the FontAwesome version a few month ago, e.g. mentioned here #2848 by @martinRenou , but I couldn't track down the origin by myself. With the help from @Chaoste, we found the origin in the CSS class
.fa
. In the browser inspector it reads as follows:but three style sections below (superseded by the one above) the font-family had a different name:
When we changed it in the top class it didn't immediately change, but with
font: 900 normal normal 14px/1 "Font Awesome 5 Free";
the icon appeared:According to this stack post it should be "Font Awesome 5 Free" isn't it? Or is a reference from "FontAwesome" to "Font Awesome 5 Free" somehow missing? I'm a little bit confused as I still don't know where to fix it permanently. Any help would be appreciated.
Versions
Output of
The text was updated successfully, but these errors were encountered: