This repository has been archived by the owner on May 22, 2021. It is now read-only.
Firefox Send website has awkward horizontal scrollbar/scrollability on Firefox for Android, due to unnecessary overflow:visible
on file input widget
#1295
Milestone
The https://send.firefox.com/ website is horizontally scrollable on Firefox for Android, for no good reason (there's nothing visible in the offscreen overflowed area).
See discussion/diagnosis in https://webcompat.com/issues/27624 and https://bugzilla.mozilla.org/show_bug.cgi?id=1542930
It turns out the culprit is an invisible 0-sized
<input type="file">
widget:That widget's contents are invisible but are present from a layout perspective, and they leak out and create scrollable overflow because Firefox Send has this odd CSS rule:
REQUEST: Could you get rid of that rule, or at least override it on this particular input element by giving this input
overflow:hidden
? (which is what it would have by default if Firefox Send didn't have the above-quoted CSS rule)The text was updated successfully, but these errors were encountered: