Anyway to move the basemap toggle widget down in the visual hierarchy in js 4.5? It currently sits above the popup when docked. I'm assuming this can be modified in the css but can't find out how.
Scott
Solved! Go to Solution.
Adding this CSS rule works for me:
.esri-popup .esri-popup__position-container {
z-index: 3;
}
Off the top of my head I don't think this will break anything but you should keep an eye out in case it does.
Adding this CSS rule works for me:
.esri-popup .esri-popup__position-container {
z-index: 3;
}
Off the top of my head I don't think this will break anything but you should keep an eye out in case it does.
Yep, looks good. I'll let you know if it breaks anything. Thanks.