blob: 15a7fe1484108fca53a46a98fe969e425f3ba47d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* mail.google.com - The HTML email view does not allow horizontal scrolling
* on Firefox mobile due to a missing CSS rule which is only served to Chrome.
* Bug #1561371 - https://bugzilla.mozilla.org/show_bug.cgi?id=1561371
*
* HTML emails may sometimes contain content that does not wrap, yet the
* CSS served to Firefox Mobile does not permit scrolling horizontally.
* To prevent this UX frustration, we enable horizontal scrolling.
*/
body > #views {
overflow: auto;
}
|