You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2021. It is now read-only.
This repository was 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
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).
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:
button,input {
overflow: visible;
}
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)