CHANGELOG 2.0.17
- Applying color helper on field element
- You can apply specific color helper on elements inside field too
- We not recommend to apply color helper on input, because this can hide some elements
Before
<div class="field label suffix">
<input class="yellow black-text" />
<label class="black-text">Label</label>
<i class="front black-text">search</i>
</div>
After
<div class="field label suffix yellow black-text">
<input />
<label>Label</label>
<i>search</i>
</div>