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

Backports the following commits to 7.2:
 - [Infra + Logs UI] Fix autocomplete overflow in Safari browser  (#36820)
This commit is contained in:
Felix Stürmer 2019-05-23 15:35:36 -04:00 committed by GitHub
parent 5d4807f4ab
commit e92604d84c
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;
`;