summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-01-10 17:11:29 +0100
committerGitHub <noreply@github.com>2018-01-10 17:11:29 +0100
commit0d65339b1a1a066a53aa93a98ed08afabe1dc672 (patch)
treebcb8d973340b7f2cf0dfb1099fe79ee850840b13 /skins
parentacc2405e992d927cbfed9b368a08f0bb8fcd9e41 (diff)
downloadbugzilla-0d65339b1a1a066a53aa93a98ed08afabe1dc672.tar.gz
bugzilla-0d65339b1a1a066a53aa93a98ed08afabe1dc672.tar.xz
Bug 1429398 - Scrolling down with keyboard no longer works correctly in at least Firefox
Note that kohei actually fixed this.
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/global.css11
1 files changed, 7 insertions, 4 deletions
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 {