Skip to content

Commit

Permalink
Fix z-index of KQL Suggestions dropdown (#79184)
Browse files Browse the repository at this point in the history
Fix from #4084
  • Loading branch information
cchaos authored Oct 1, 2020
1 parent 12d0125 commit d0f8e5c
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 d0f8e5c

Please sign in to comment.