The following code to style / hide an input type file is working in all browsers but Chrome.
<h5>Artikelliste hochladen:</h5>
<label for="uploadSkus">
<button class="btn" id="add-article-list">
<i class="icon icon-folder-open"></i> Liste auswählen
</button>
</label>
<input type="file"
name="uploadSkus" id="uploadSkus"
class="articles-upload" style="display: none;">
Demo JSFiddle here.
I'm stuck on which minor detail is preventing Chrome from letting this work.
Tried playing arround with the display: none;
without success. No errors or warnings in the console. Any idea ?