Fix scrolling behaviour change of overflow: auto; introduced in Chrome 41 (only reproducible with a Trackpad).

This commit is contained in:
Gunther Brunner
2015-03-09 17:38:13 +09:00
parent 958a3bcfb9
commit 5e7b489dd9

View File

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