Fix draggable z-index issue from last merge from master (#35384)

This commit is contained in:
Frank Hassanabad 2019-04-20 10:57:02 -06:00 committed by Andrew Goldstein
parent 1fae72b272
commit ea5b009b72

View file

@ -29,6 +29,7 @@ export const ColumnHeaderResizeHandle = styled(CommonResizeHandle)`
export const TimelineResizeHandle = styled(CommonResizeHandle)<{ height: number }>`
border: ${TIMELINE_RESIZE_HANDLE_WIDTH}px solid ${props => props.theme.eui.euiColorLightShade};
z-index: 2;
height: ${({ height }) => `${height}px`};
position: absolute;
`;