summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss')
-rw-r--r--WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss b/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss
index a001605f27..6fcb3d1705 100644
--- a/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss
+++ b/WebContent/VAADIN/themes/base/tabsheet/tabsheet.scss
@@ -125,4 +125,16 @@
height: 0;
}
+/*
+ * 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. Doing this for
+ * all browsers for consistency.
+ */
+.#{$name} .v-scrollable > .v-widget {
+ display: block;
+}
+
+
+
} \ No newline at end of file