MIMSoftware / haste-server

Customizations made to seejohnrun/haste-server
7 stars 11 forks source link

Dragging file onto page when not in edit mode won't accept the drop #24

Closed neandrake closed 9 years ago

neandrake commented 9 years ago

I think this is because of how the body tag works. When in edit mode a textarea component is taking up the full dimension of the page. When not in edit mode the body tag is only the size of the text pasted.

Might be fixed with adding:

html {overflow-y:hidden; height: 100%;}
body {overflow-y:auto; height: 100%;}