Skip to content

Commit

Permalink
Fix z-index of KQL Suggestions dropdown (elastic#79184) (elastic#79203)
Browse files Browse the repository at this point in the history
Fix from elastic#4084
  • Loading branch information
cchaos authored Oct 1, 2020
1 parent fb88696 commit a797d62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class SuggestionsComponent extends Component<Props> {
const StyledSuggestionsListDiv = styled.div`
${(props: { queryBarRect: DOMRect; verticalListPosition: string }) => `
position: absolute;
z-index: 999;
z-index: 4001;
left: ${props.queryBarRect.left}px;
width: ${props.queryBarRect.width}px;
${props.verticalListPosition}`}
Expand Down

0 comments on commit a797d62

Please sign in to comment.