Merge pull request #11796 from alexanderzobnin/fix-11710

scroll: fix scrolling on mobile Chrome
This commit is contained in:
Daniel Lee 2018-05-03 15:18:29 +02:00 committed by GitHub
commit 7db9cc3bf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,8 @@ div.flot-text {
padding: $panel-padding; padding: $panel-padding;
height: calc(100% - 27px); height: calc(100% - 27px);
position: relative; position: relative;
overflow: hidden; // Fixes scrolling on mobile devices
overflow: auto;
} }
.panel-title-container { .panel-title-container {