From 5e7b489dd9a8677177ca25629d40532d3d5f9d4c Mon Sep 17 00:00:00 2001 From: Gunther Brunner Date: Mon, 9 Mar 2015 17:38:13 +0900 Subject: [PATCH] Fix scrolling behaviour change of overflow: auto; introduced in Chrome 41 (only reproducible with a Trackpad). --- res/app/layout/stf-styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/res/app/layout/stf-styles.css b/res/app/layout/stf-styles.css index 40d1d480..80a9a211 100644 --- a/res/app/layout/stf-styles.css +++ b/res/app/layout/stf-styles.css @@ -431,3 +431,12 @@ fieldset[disabled] input[type="text"].form-control { cursor: text; } + +/* + Fix scrolling behaviour change of overflow: auto; introduced in Chrome 41. + It prevented the y-scrolling of the parent while the mouse is positioned on + the child element. +*/ +.pane-center { + overflow: inherit !important; +}