Changement de style pour les input[type=file]
Firefox 22 amène un changement sur le style des input type file
by oilvier
HTML
<form>
<p><input type="file"></p>
</form>
<form>
<p><input type="file" class="custom"></p>
</form>
CSS
p {padding:5px; background:lightgray;}
.custom {font-family:Verdana; font-size: 18px; color: firebrick; background:beige; height:50px; width:100%;}