narqo / react-islands

react-islands Components Library
MIT License
120 stars 13 forks source link

Modal overlaps select's popup #123

Closed maxkoshel closed 8 years ago

maxkoshel commented 8 years ago

Incorrect z-index of select inside modal. Modal has z-index 20001 by default, select's popup — 1001.

zIndexGroupLevel that is set in Modal, isn't inherited by Select.

<Modal zIndexGroupLevel={10}>
  <Select>
  </Select>
</Modal>