diff options
author | Teppo Kurki <teppo.kurki@vaadin.com> | 2015-06-10 17:55:03 +0300 |
---|---|---|
committer | Teppo Kurki <teppo.kurki@vaadin.com> | 2015-06-10 17:55:03 +0300 |
commit | 2578c72006f2b36676a429be69b60e65df826289 (patch) | |
tree | 6480f5101a95056c58ee2ad2ac921d44cbae8c52 | |
parent | 4bc734e56af463d657044b48aef58859786c81dd (diff) | |
download | vaadin-framework-2578c72006f2b36676a429be69b60e65df826289.tar.gz vaadin-framework-2578c72006f2b36676a429be69b60e65df826289.zip |
Fixes grid editor datefield/combobox IE8/Valo (#17915)
Change-Id: I4413303e0fc23fbeeabb22ebca20332419363f6b
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_grid.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_grid.scss b/WebContent/VAADIN/themes/valo/components/_grid.scss index c7a3def042..27d421b9f2 100644 --- a/WebContent/VAADIN/themes/valo/components/_grid.scss +++ b/WebContent/VAADIN/themes/valo/components/_grid.scss @@ -146,6 +146,18 @@ $v-grid-details-border-bottom-stripe: $v-grid-cell-horizontal-border !default; @include box-shadow(none); } } + + .v-datefield-button { + .v-ie8 & { + margin-left: 0px; + } + } + + .v-filterselect-button { + .v-ie8 & { + margin-left: 0px; + } + } .v-textfield-focus, .v-datefield .v-textfield-focus, |