How I do to jQuery MiniColors respect the class I specify? By example:
<div class="form-group">
<label class="control-label col-sm-2" for="Name">Name</label>
<div class="col-sm-4">
<input class="form-control" type="text" id="Name" name="Name" value="" />
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2">Color</label>
<div class="col-sm-4">
<input type='text' class='form-control color-picker' id="Color">
</div>
</div>
I expect the two INPUTS be the same style (form-control), but minicolors mess all the style:
I think is something do with "theme" option, but I"m unsure about how I do to fix, because I'm using the default "form-control" class from Bootstrap 3.
Someone please, can tell whats I'm doing wrong or how I do to fix it?
