blob: b619b7f778ff673240b392912f1cc6befd8f9159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* www.kucharkaprodceru.cz - Scrolling up triggers pull-refresh
* Bug #1849388 - https://bugzilla.mozilla.org/show_bug.cgi?id=1849388
* WebCompat issue #123452 - https://github.com/webcompat/web-bugs/issues/123452
*
* The site uses older version of jquery.nicescroll.js which adds
* overflow-y: auto to the body element only in Firefox. Resetting
* makes the scrolling work as expected
*/
body {
overflow-y: auto !important;
}
|