How do I change colors from the "file input button"?
This is what I have:
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
And I tried the code below, but nothing happens:
#input[type=file]{
background: #000;
}
input{
background: #000;
}
How do I change the input file type color?