I faced the problem with calendar fields, that the Icon Font for the next-/previous-Arrows were not loaded:

I could fix it with this small CSS code, which might help other people struggling with that:
I could fix it with this small CSS code, which might help other people struggling with that:
i.icon.chevron::before {
font-family: Icons;
}
what if you test the new v7, same issue ?
Hi Max,
yes, same issue - and same solution. BUT! I just made a little deeper investigation. The issue is produced by the icon font being used - might however concern others too. I am using the Ultimate pack of IcoMoon
https://icomoon.io/preview-ultimate.html
In the ultimate.css this CSS rule evokes the error:
.icon {
font-family: 'ultimate' !important;
}
In HTML it also uses
<i class="icon" ...
as in Semantic UI
<i class="icon calendar" ...
Probably my workaround with the custom CSS in the form is the best solution here (?).
yes, same issue - and same solution. BUT! I just made a little deeper investigation. The issue is produced by the icon font being used - might however concern others too. I am using the Ultimate pack of IcoMoon
https://icomoon.io/preview-ultimate.html
In the ultimate.css this CSS rule evokes the error:
.icon {
font-family: 'ultimate' !important;
}
In HTML it also uses
<i class="icon" ...
as in Semantic UI
<i class="icon calendar" ...
Probably my workaround with the custom CSS in the form is the best solution here (?).
since both icons css use the same class then there will be a conflict for sure, your fix should be ok!
maybe try this:
.ui.form i.icon{
font-family:Icons;
}
maybe try this:
.ui.form i.icon{
font-family:Icons;
}
This topic is locked and no more replies can be posted.