diff options
author | Henrik Paul <henrik@vaadin.com> | 2014-03-18 16:20:22 +0200 |
---|---|---|
committer | Henrik Paul <henrik@vaadin.com> | 2014-04-10 15:06:31 +0300 |
commit | 27e65d32145f0010f5cb459d4032209e33166a23 (patch) | |
tree | 9bce27ec25d1e04b29c6941501b74fd4791464f1 /WebContent/VAADIN | |
parent | f0d60095d0ba48e81944e4ef62195b876df8bfd3 (diff) | |
download | vaadin-framework-27e65d32145f0010f5cb459d4032209e33166a23.tar.gz vaadin-framework-27e65d32145f0010f5cb459d4032209e33166a23.zip |
Fixes a few Escalator regressions relating to IE8 and IE9 (#13334)
Change-Id: I3446d1f781f5aa5e3262a20f51999b0a52d48dd3
Diffstat (limited to 'WebContent/VAADIN')
-rw-r--r-- | WebContent/VAADIN/themes/base/escalator/escalator.scss | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/WebContent/VAADIN/themes/base/escalator/escalator.scss b/WebContent/VAADIN/themes/base/escalator/escalator.scss index 6f85a541ee..c6438ac9cc 100644 --- a/WebContent/VAADIN/themes/base/escalator/escalator.scss +++ b/WebContent/VAADIN/themes/base/escalator/escalator.scss @@ -67,15 +67,18 @@ $border-color: #aaa; .#{$primaryStyleName}-row { display: block; - .v-ie8 & { - /* IE8 doesn't let table rows be longer than body only with display block. Moar hax. */ + .v-ie8 &, .v-ie9 & { + /* + * Neither IE8 nor IE9 let table rows be longer than tbody, with only + * "display: block". Moar hax. + */ float: left; clear: left; /* - * The inline style of margin-top from the <tbody> to offset the header's dimension is, - * for some strange reason, inherited into each contained <tr>. - * We need to cancel it: + * The inline style of margin-top from the <tbody> to offset the + * header's dimension is, for some strange reason, inherited into each + * contained <tr>. We need to cancel it: */ margin-top: 0; } |