summaryrefslogtreecommitdiffstats
path: root/WebContent
diff options
context:
space:
mode:
authorJohannes Dahlström <johannes.dahlstrom@vaadin.com>2012-09-04 11:14:09 +0000
committerJohannes Dahlström <johannes.dahlstrom@vaadin.com>2012-09-04 11:14:09 +0000
commit8b1e5a2d314ae89d96f38f2d09517bb2a45705dd (patch)
tree8006d38be8103acc807e59215ce5f27994d0017b /WebContent
parent079a5cbd4b98c457756d26f693c20bd2b8f7ccec (diff)
downloadvaadin-framework-8b1e5a2d314ae89d96f38f2d09517bb2a45705dd.tar.gz
vaadin-framework-8b1e5a2d314ae89d96f38f2d09517bb2a45705dd.zip
Enable (hopefully this time for real) native touch scrolling on Mobile Safari 6+ (#8792)
svn changeset:24300/svn branch:6.8
Diffstat (limited to 'WebContent')
-rw-r--r--WebContent/VAADIN/themes/base/common/common.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.css b/WebContent/VAADIN/themes/base/common/common.css
index 74ed21bd1a..4dbe35704c 100644
--- a/WebContent/VAADIN/themes/base/common/common.css
+++ b/WebContent/VAADIN/themes/base/common/common.css
@@ -233,4 +233,8 @@ div.v-app-loading {
.v-scrollable {
overflow: auto;
-} \ No newline at end of file
+}
+/* Enable kinetic scrolling on Mobile Safari 6 */
+.v-ios.v-sa6 .v-scrollable {
+ -webkit-overflow-scrolling: touch;
+} \ No newline at end of file