Looks like core-dialog is not working properly in Safari 12. Seems as though both elements gets z-index: 0.
let zIndex = window.getComputedStyle(this).getPropertyValue('z-index')
if (zIndex === 'auto' && this.style.zIndex === '') { // Place this dialog over uppermost dialog if not controlled in CSS or JS
Since zIndex is 0, my guess is that core-dialog should not update the z-index because it is set, and not to auto.
Makes sense, but maybe it also makes sense to check if zIndex === '0'?
Looks like core-dialog is not working properly in Safari 12. Seems as though both elements gets
z-index: 0
.Since
zIndex
is0
, my guess is that core-dialog should not update the z-index because it is set, and not toauto
. Makes sense, but maybe it also makes sense to check ifzIndex === '0'
?Caused by #445