From: Dylan William Hardison Date: Wed, 10 Jan 2018 16:11:29 +0000 (-0500) Subject: Bug 1429398 - Scrolling down with keyboard no longer works correctly in at least... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d65339b1a1a066a53aa93a98ed08afabe1dc672;p=thirdparty%2Fbugzilla.git Bug 1429398 - Scrolling down with keyboard no longer works correctly in at least Firefox Note that kohei actually fixed this. --- diff --git a/skins/standard/global.css b/skins/standard/global.css index 051cd864d..39e6e4654 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -69,6 +69,13 @@ width: 100%; height: 100%; } + + #bugzilla-body { + overflow-x: auto; + overflow-y: scroll; + -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */ + scroll-behavior: smooth; + } } /* fixed global header (end) */ @@ -1277,10 +1284,6 @@ hr { position: relative; outline: none; padding: 0 15px; - overflow-x: auto; - overflow-y: scroll; - -webkit-overflow-scrolling: touch; /* Enable lazy scrolling on iOS */ - scroll-behavior: smooth; } #main-inner {