v3.2.4
Run react-bootstrap-typeahead in Internet Explorer (11) / Microsoft Edge browser
The flickering should not show up in IE / Edge - it appears smooth, with no flickering on both Chrome and Firefox.
Flickering/ intermittent flashing of the background showing up in both IE (11) and Edge.
This can be seen on the Live Examples page.
@jtmunn - I was able to work around this same issue by overriding the css class in the following manner:
.rbt-menu.dropdown-menu.show {
transform: none !important;
}
Overriding the transform alone causes another issue. Since the inline transform provided pushes the dropdown down, overriding it causes it to block the input. This is what I did to address this issue
.rbt-menu.dropdown-menu.show {
transform: none !important;
top: auto !important;
}
Those work arounds doesnt work properly when bodyContainer prop is set to true. Menu is rendered at the end of body container.
Most helpful comment
Those work arounds doesnt work properly when bodyContainer prop is set to true. Menu is rendered at the end of body container.