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; +}