diff options
author | Artur Signell <artur@vaadin.com> | 2012-12-14 15:28:17 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-12-17 21:46:54 +0200 |
commit | b7aa5ead03310a45587284b3cfec64f56613fbd6 (patch) | |
tree | 8e66eba1be016c6527b2c1501fc1eca1862489b4 /WebContent/VAADIN/themes/base/common | |
parent | 95d9349d2381b751526c6617f4d0d9d13fac18d3 (diff) | |
download | vaadin-framework-b7aa5ead03310a45587284b3cfec64f56613fbd6.tar.gz vaadin-framework-b7aa5ead03310a45587284b3cfec64f56613fbd6.zip |
Fixed IE scrollbar issues for most if not all components
Fixed by defining font-size:0 and line-height:normal for all v-scrollable elements. A font-size is defined using $font-size for all themes and this is reset in v-widget. Similarly for $line-height.
Should fix at least #9004, #9552, #9572
Change-Id: I78da2c2ce497a0a22962644c9c97df5a0e41e056
Diffstat (limited to 'WebContent/VAADIN/themes/base/common')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss index ac9154d2dc..fd4625606a 100644 --- a/WebContent/VAADIN/themes/base/common/common.scss +++ b/WebContent/VAADIN/themes/base/common/common.scss @@ -219,6 +219,8 @@ body &.v-app-loading { .v-scrollable { overflow: auto; + font-size: 0; + line-height: normal; } /* Enable kinetic scrolling on Mobile Safari 6 */ |