[Infra + Logs UI] Fix autocomplete overflow in Safari browser (#36820)

This prevents the autocompletion suggestions from overflowing the dropdown in the Infra UI and Logs UI query bar.
This commit is contained in:
Felix Stürmer 2019-05-22 13:55:33 -04:00 committed by GitHub
parent 83b7ea76b0
commit d8c2757cb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -308,7 +308,8 @@ const SuggestionsPanel = euiStyled(EuiPanel).attrs({
position: absolute;
width: 100%;
margin-top: 2px;
overflow: hidden scroll;
overflow-x: hidden;
overflow-y: scroll;
z-index: ${props => props.theme.eui.euiZLevel1};
max-height: 322px;
`;