From 4c5405284bf7caa5e885587429c7169a0d54af32 Mon Sep 17 00:00:00 2001 From: Teppo Kurki Date: Tue, 9 Jun 2015 15:18:10 +0300 Subject: [PATCH] Quick fix for non-visible datefield buttons in IE8 (#17915) This concerns Grid Editor with themes other than Valo. Also fixes the same issue for ComboBox. Change-Id: Ia9856333272f2c98683e290699f03f78d4561c5c --- WebContent/VAADIN/themes/base/grid/grid.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/WebContent/VAADIN/themes/base/grid/grid.scss b/WebContent/VAADIN/themes/base/grid/grid.scss index 21ed1ed8d2..1653032703 100644 --- a/WebContent/VAADIN/themes/base/grid/grid.scss +++ b/WebContent/VAADIN/themes/base/grid/grid.scss @@ -366,6 +366,18 @@ $v-grid-details-border-bottom-stripe: 1px solid darken($v-grid-row-background-co min-height: 100%; max-height: 100%; } + + .v-datefield-button { + .v-ie8 & { + margin-left: -30px; + } + } + + .v-filterselect-button { + .v-ie8 & { + margin-left: -27px; + } + } .v-select, .v-select-select { -- 2.39.5