In my form, there are single and multiple dropdown selects. To keep things simple, I use the selectpicker
class for both types. However, I want to customize the default grey color for Bootstrap 4 Dropdown with the selectpicker
class to a clear color. Which specific part of the CSS file do I need to adjust for the .bootstrap-select
class?
Current Appearance (though not disabled, it looks like it is) https://i.sstatic.net/Y4Oyr.jpg
Desired Look (trying to achieve a clear color using the custom-select2
class as an example)
https://i.sstatic.net/veXRb.jpg
HTML
<div class="form-group">
<select id="region" class="font-14 selectpicker form-control">
<option value="">-- REGION --</option>
<option value="allregions" id="allregions">All Regions</option>
</select>
</div>