Closed
Description
When clicked outside modal i.e on overlay modal is not getting closed
<Modal
isOpen={this.state.openDialog}
contentLabel="Modal"
shouldCloseOnOverlayClick={true}
style={this.modalClass}>
<h2>Hello</h2>
<div>I am a modal</div>
</Modal>
this.modalClass = {
overlay: {
position: 'fixed',
top: 0,
left: 0,
right: 0,
bottom: 0,
backgroundColor: 'rgba(0, 0, 0, 0.3)',
zIndex:999
},
content: {
position: 'absolute',
top: '40px',
left: '40px',
right: '40px',
bottom: '40px',
border: '1px solid #ccc',
background: '#fff',
overflow: 'auto',
WebkitOverflowScrolling: 'touch',
borderRadius: '4px',
outline: 'none',
padding: '20px',
zIndex:9999
}
};
Expected behavior: Should close when clicked outside modal
Additional Information: I have another overlay with zIndex '3' on a background image. With more z-index I'm able to see the modal on top of everything, but not getting closed
Metadata
Metadata
Assignees
Labels
No labels