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/runo | |
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/runo')
-rw-r--r-- | WebContent/VAADIN/themes/runo/accordion/accordion.scss | 2 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/runo/runo.scss | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/runo/accordion/accordion.scss b/WebContent/VAADIN/themes/runo/accordion/accordion.scss index f85a1dadab..69a52dd22a 100644 --- a/WebContent/VAADIN/themes/runo/accordion/accordion.scss +++ b/WebContent/VAADIN/themes/runo/accordion/accordion.scss @@ -3,12 +3,12 @@ .#{$primaryStyleName}-item-caption { height: 31px; background: #edf0f0 url(img/bg.png); - font-size: 15px; color: #656d73; border: none; border-top: 1px solid #c8cccd; } .#{$primaryStyleName}-item-caption .v-caption { + font-size: 15px; padding: 7px 0 4px 31px; background: transparent url(img/collapsed-icon.png) no-repeat 18px 55%; } diff --git a/WebContent/VAADIN/themes/runo/runo.scss b/WebContent/VAADIN/themes/runo/runo.scss index 395f4d0b1b..6e88b14eb4 100644 --- a/WebContent/VAADIN/themes/runo/runo.scss +++ b/WebContent/VAADIN/themes/runo/runo.scss @@ -32,6 +32,9 @@ background: #e9eced; } +$font-size: 13px; +$line-height: 18px; + @mixin runo { // TODO move? @include base; |