From 0d65339b1a1a066a53aa93a98ed08afabe1dc672 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Wed, 10 Jan 2018 11:11:29 -0500 Subject: Bug 1429398 - Scrolling down with keyboard no longer works correctly in at least Firefox Note that kohei actually fixed this. --- skins/standard/global.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'skins') 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 { -- cgit v1.2.3-24-g4f1b