Missing a vertical scroll in a new Popup (4.28)

604
4
Jump to solution
10-24-2023 04:03 AM
MatejVrtich
Esri Contributor

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:

MatejVrtich_0-1698145327425.png

MatejVrtich_1-1698145340476.png

Regards,

Matej

 

1 Solution

Accepted Solutions
AnneFitz
Esri Regular Contributor

We have fixed this bug in a patch for 4.28. If you're using @ArcGIS/core - this bug fix is available on version 4.28.1. The CDN should be updated in a few hours. Thanks! 

View solution in original post

4 Replies
JonathanDawe3
New Contributor

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;
}
MatejVrtich
Esri Contributor

Thanks for sharing, however this is not applicable for ArcGIS apps using the Popup widget, like Map Viewer, Dashboards, etc.

 

Justin_Greco
Occasional Contributor II

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;
}

 

AnneFitz
Esri Regular Contributor

We have fixed this bug in a patch for 4.28. If you're using @ArcGIS/core - this bug fix is available on version 4.28.1. The CDN should be updated in a few hours. Thanks!