christiangenco / dbinbox

an inbox for your Dropbox
dbinbox.com
MIT License
285 stars 42 forks source link

Screen width below 785px causes upload/text button to become inactive #41

Closed ahallora closed 11 years ago

ahallora commented 11 years ago

When resizing the screen width below 785px, and the mediaquery kicks in, the "Choose files" and "Send message" buttons is no longer clickable. It is due to the fileupload-progress div which is overflowing the floating buttons.

The fix is simply to add a z-index to the inputs in question, so the buttons float on top the fileupload-progress div. You might also want to clear the upload-progress so it doesn't flow on top now we're at it:

#show_send_message,
#upload_button {
   float: right;
   z-index: 2;
}

.file-upload-progress {
  clear: both;
}

It would be awesome if you could fix this, so dbInbox would also work on smartphones. :)

Thank you for a very nice web service. :)

christiangenco commented 11 years ago

Ahh brilliant! I couldn't figure out why this was happening on my girlfriend's laptop but not mine.