Browse Source

Restrict old IE fix to IE <= 10 (#17002)

Change-Id: Iab4ecf3ef0616471743874531264f2fe6868f133
tags/7.6.0.alpha4
Artur Signell 8 years ago
parent
commit
3951ba9c2d
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      client/src/com/vaadin/client/ui/VFilterSelect.java

+ 2
- 1
client/src/com/vaadin/client/ui/VFilterSelect.java View File

@@ -612,7 +612,8 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
menuFirstChild.getStyle().setWidth(100, Unit.PCT);
}

if (BrowserInfo.get().isIE()) {
if (BrowserInfo.get().isIE()
&& BrowserInfo.get().getBrowserMajorVersion() < 11) {
// Must take margin,border,padding manually into account for
// menu element as we measure the element child and set width to
// the element parent

Loading…
Cancel
Save