Hi,
regarding the Popup Design updates in version 4.28, if the content of the popup is higher than the map, there is no vertical scrolling in the popup.
Here is the comparison in 4.27 vs 4.28:
Regards,
Matej
Solved! Go to Solution.
Hi,
I've just spotted this as well. As a temporary fix add the following styling override in your application:
/* WARNING Required to fix broken Esri Styling */
.esri-features.esri-widget.esri-widget--panel {
overflow: hidden;
}
Thanks for sharing, however this is not applicable for ArcGIS apps using the Popup widget, like Map Viewer, Dashboards, etc.
Try adding this to your fix as well, that will make the popup content scrollable.
.esri-features.esri-widget.esri-widget--panel calcite-flow{
overflow: auto;
}