We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using variants of Material Icons, like Outlined for instance, icons won't work because explicitly references 'Material Icons' family font:
.custom-checkbox .custom-control-label::after { ... font-family: 'Material Icons'; ... }
So, when including <link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
you should use:
.custom-checkbox .custom-control-label::after { ... font-family: 'Material Icons', 'Material Icons Outlined'; ... }
My proposal is to include all possible variants of https://material.io/resources/icons/ in 'font-family'.
The text was updated successfully, but these errors were encountered:
Good point.
I'll try to do it soon.
But I think I'd rather throw Material icons dependencies and switch to pure svg.
Sorry, something went wrong.
Hi, try my new build from my fork : https://github.com/djibe/material/tree/master/css
Insert a stylesheet like or Outlined or Two Tone or Rounded.
All the stuff will be converted to this icon set.
You can even keep the default markup <i class="material-icons">account_box</i> without using specific ones (like material-icons-sharp).
<i class="material-icons">account_box</i>
Tell me if you experience bugs.
@ovicrisan @sesemaya Hi, is the documentation OK for you ? https://djibe.github.io/material/docs/4.5/material/icons/
No branches or pull requests
When using variants of Material Icons, like Outlined for instance, icons won't work because explicitly references 'Material Icons' family font:
.custom-checkbox .custom-control-label::after {
...
font-family: 'Material Icons';
... }
So, when including
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
you should use:
.custom-checkbox .custom-control-label::after {
...
font-family: 'Material Icons', 'Material Icons Outlined';
... }
My proposal is to include all possible variants of https://material.io/resources/icons/ in 'font-family'.
The text was updated successfully, but these errors were encountered: