summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2012-10-04 14:12:38 +0300
committerJohn Ahlroos <john@vaadin.com>2012-10-04 16:51:40 +0300
commitca22b194e4b768944e88b231c9a8674dd372d470 (patch)
tree13483d0e9856fe6a67f555e0d0c607aa19bd3a7d /WebContent/VAADIN
parentfacd94111590d9fe7b8b5ceffe3f7d0db0024948 (diff)
downloadvaadin-framework-ca22b194e4b768944e88b231c9a8674dd372d470.tar.gz
vaadin-framework-ca22b194e4b768944e88b231c9a8674dd372d470.zip
Added IE8 HTML5 doctype fix for removing unneeded scrollbars in splitpanel #9552
Change-Id: I2d9abc2add60809412a8625d4b4753aca408c7cd
Diffstat (limited to 'WebContent/VAADIN')
-rw-r--r--WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss b/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss
index 2c3e578b0b..b22ebe2569 100644
--- a/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss
+++ b/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss
@@ -32,4 +32,14 @@
cursor: default;
}
+/*
+ * In IE8 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.
+ */
+.v-ie8 .v-splitpanel-first-container > .v-widget,
+.v-ie8 .v-splitpanel-second-container > .v-widget{
+ display:block;
+}
+
} \ No newline at end of file