Why does it block you to select a file when you click on the button? If you put a span or div in the label, they allow you to select a file when you click on them, but the button does not
<html>
<body>
  <label>
    <input type="file">
    <button class="upload" type="button"></button>
  </label>
</body>
<style>
  label {
    display: block;
    width: 100px;
    height: 54px;
    background: green;
  }
  input {
    display: none;
  }
  .upload {
    background: gold;
    height: 100%;
  }
</style>
</html> 
    