diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2013-08-06 13:59:33 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2013-08-06 14:00:45 +0300 |
commit | 16d17f9824dfac7e55e3ca98444f9da3205c0336 (patch) | |
tree | 55f98ec2c284c02eefaa82da51ee45152d4f9641 /WebContent/VAADIN | |
parent | 2ff71f623495995e83c71227630140f6609a13c4 (diff) | |
download | vaadin-framework-16d17f9824dfac7e55e3ca98444f9da3205c0336.tar.gz vaadin-framework-16d17f9824dfac7e55e3ca98444f9da3205c0336.zip |
Fix native scrolling regression in iOS 6 homescreen apps (#12295)
Change-Id: Ie225663ebc2a9ffe4b481a49e34e9dcf79b064b2
Diffstat (limited to 'WebContent/VAADIN')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss index c32116cda8..cb3645c9d8 100644 --- a/WebContent/VAADIN/themes/base/common/common.scss +++ b/WebContent/VAADIN/themes/base/common/common.scss @@ -228,8 +228,8 @@ input::-ms-clear { line-height: normal; } -/* Enable kinetic scrolling on Mobile Safari 6 */ -.v-ios.v-sa6 & .v-scrollable { +/* Enable kinetic scrolling on iOS 6 */ +.v-ios6.v-webkit & .v-scrollable { -webkit-overflow-scrolling: touch; } |