Is it possible to change the color of a select (from data-toggle
select, including options) of Flat-UI by CSS without using less
?.
In this FIDDLE that @dHEKU posted in the comments, the color of select
default has already been modified, but the options
, mostly is missing the color of the option
that appears when select
is opened.
I have tried in some ways:
.select .select-primary {
background-color: #000066;
}
select {
background-color: #000066;
}
But it did not work. The HTML looks like this:
<label class="control-label" for="select">
<select id="select" name="selectname" class="form-control select select-primary" data-toggle="select">
<option>1</option>
<option>2</option>
<option>3</option>
</select></label>