I have problems with a comboBox , generated with ruby . I can not see why you are not taking the Bootstrap styles comboBox Brand .
The form is _form.html.erb
<%= form_with(model: cotizacion, scope: :cotizacion, local:true, class: "form-inline") do |form| %>
<div class="form-group">
<%= form.select :marca,
options_for_select([["SUBARU", "T"], ["KIA", "S"]],
class: "combobox form-control" %>
</div>
<div class="form-group">
<select class="combobox form-control" name="inline">
<option value="" selected="selected">Select a State</option>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
</select>
</div>
<% end %>
The difference in styles is reflected in the following image:
The idea is to get the same style of the comboBox Select State
and until now I get the style of comboBox Subaru
.
Thank you very much for your help !!!