diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2013-02-11 16:03:21 +0200 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2013-02-11 16:03:21 +0200 |
commit | 5f402ff7f4ebc646a247f1a9f3dfef6cc9580840 (patch) | |
tree | 1a3e19d698696931627806fdfb4693515ad8e48e /WebContent | |
parent | 91a04460db80dc505730c0deb5ac451235ace54e (diff) | |
download | vaadin-framework-5f402ff7f4ebc646a247f1a9f3dfef6cc9580840.tar.gz vaadin-framework-5f402ff7f4ebc646a247f1a9f3dfef6cc9580840.zip |
Set the overlay container width and height to zero (#10860)
* Fix body scrolling in touch devices that do not honor overflow: hidden
Change-Id: Ia444d3c222094b9aa83ba31d5710eed9d9e549cc
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss index fd4625606a..e7fdd3fe84 100644 --- a/WebContent/VAADIN/themes/base/common/common.scss +++ b/WebContent/VAADIN/themes/base/common/common.scss @@ -225,7 +225,12 @@ body &.v-app-loading { /* Enable kinetic scrolling on Mobile Safari 6 */ .v-ios.v-sa6 & .v-scrollable { - -webkit-overflow-scrolling: touch; + -webkit-overflow-scrolling: touch; +} + +&.v-overlay-container { + width: 0; + height: 0; } }
\ No newline at end of file |