diff options
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.scss | 14 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/base/widget/widget.scss | 5 |
2 files changed, 18 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss index 7fd4d2cc32..59f840d73f 100644 --- a/WebContent/VAADIN/themes/base/common/common.scss +++ b/WebContent/VAADIN/themes/base/common/common.scss @@ -257,4 +257,18 @@ div.v-app-loading { -webkit-overflow-scrolling: touch; } +/* Workaround for scrollbar issues in IE8+ */ +.v-ie { + .v-splitpanel-first-container.v-scrollable, + .v-splitpanel-second-container.v-scrollable, + .v-panel-content.v-scrollable, + .v-view.v-scrollable, + .v-tabsheet-tabsheetpanel > .v-scrollable, + .v-accordion-item-content.v-scrollable, + .v-gridlayout.v-layout, + .v-verticallayout.v-layout, + .v-horizontallayout.v-layout { + font-size: 0px; + } +} }
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/base/widget/widget.scss b/WebContent/VAADIN/themes/base/widget/widget.scss index a632e20d09..4717569545 100644 --- a/WebContent/VAADIN/themes/base/widget/widget.scss +++ b/WebContent/VAADIN/themes/base/widget/widget.scss @@ -7,7 +7,10 @@ text-align: left; display: inline-block; white-space: normal; - vertical-align: top; + + /* Workaround for scrollbar issues in IE8+ */ + vertical-align: bottom; + font-size: 12px; } }
\ No newline at end of file |