If I add the class .form-group-lg to an input-filed (ex. type=text), the class overwrites the label-color from any kind of .has-* class.
Example<div class="form-group label-floating has-error"> => label-color is red (because of the "has-error")
<div class="form-group form-group-lg label-floating has-error"> => label-color is gray but should be red as well
If I add the class
.form-group-lg
to an input-filed (ex. type=text), the class overwrites the label-color from any kind of.has-*
class.Example
<div class="form-group label-floating has-error">
=> label-color is red (because of the "has-error")<div class="form-group form-group-lg label-floating has-error">
=> label-color is gray but should be red as well