How can I change the color of the icons on the right side of this table?
http://bulma.io/documentation/elements/table/
produces black
produces primary
but modifier classes like "is-danger" don't have any effect
changing colors with modifiers
modifier classes have no effect
If you looking to the raw bulma css file. You'll realise that some modifiers is only work for some other class especially. For example .button.is-danger / .hero.is-danger. So .is-danger standalone is not working.
I dont know it's bug or they design that way because some modifier can use by standalone class some is not.
@jgthms I believe you can close this... with bulma you can use has-text-danger now is possible to do something like:
<span class="has-text-danger icon">
<i class="fa fa-home"></i> // -> or if you want only the icon, you can use it here instead
</span>
@AlgusDark Good shout.
Most helpful comment
@jgthms I believe you can close this... with bulma you can use
has-text-dangernow is possible to do something like: