]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1429398 - Scrolling down with keyboard no longer works correctly in at least...
authorDylan William Hardison <dylan@hardison.net>
Wed, 10 Jan 2018 16:11:29 +0000 (11:11 -0500)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2018 16:11:29 +0000 (11:11 -0500)
Note that kohei actually fixed this.

skins/standard/global.css

index 051cd864debea4917b66e51c16803d9cab79efb9..39e6e465422ffa42d9b13dc438ea9dcaec6fae4e 100644 (file)
             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 {