diff options
author | John Ahlroos <john@vaadin.com> | 2012-10-09 10:20:10 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-10-09 12:16:40 +0300 |
commit | 1a7e5ea52e3f5bf371b24254f1a12bb641c55969 (patch) | |
tree | 2496b28f1825aaf8c3666137754b1332f956b7fb /WebContent | |
parent | 5060adb19b22435addbc34fcad6e7ca9e67c273c (diff) | |
download | vaadin-framework-1a7e5ea52e3f5bf371b24254f1a12bb641c55969.tar.gz vaadin-framework-1a7e5ea52e3f5bf371b24254f1a12bb641c55969.zip |
Applied splitpanel scrollbar fix for IE9 as well #9552
Change-Id: Ife96da6315796548c9aeab34b6f307a70e80ef36
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss b/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss index 11b4da48d8..b29f596e36 100644 --- a/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss +++ b/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss @@ -33,13 +33,14 @@ } /* - * In IE8 we need to do magic things to avoid scrollbars since it does not completely + * In IE8 and IE9 we need to do magic things to avoid scrollbars since it does not completely * support the HTML5 doctype. Changing the contained element to a block element will not add - * magical bottom paddings to the contained element and cause scrollbars. + * magical bottom paddings to the contained element and cause scrollbars. Doing this for all + * browsers for consistency. */ -.v-ie8 .v-splitpanel-first-container > .v-widget, -.v-ie8 .v-splitpanel-second-container > .v-widget{ +.v-splitpanel-first-container > .v-widget, +.v-splitpanel-second-container > .v-widget{ display:block; } - + }
\ No newline at end of file |