Hey,
since updating to ArcGIS 4.29 (I came from version 4.27 before), I've noticed that the titles of my action buttons in the popups disappear if the image area falls narrower than a specific value.
So far we have been able to counteract the responsive behavior with the following global CSS:
.esri-view-width-less-than-large .esri-popup__action-text {
display: flex !important;
}
This no longer works with the new update, which is a pity, the title even disappears if only the standard zoom action button is there, although there would definitely be enough space to render the title.
Question: How can I reactivate the titles? (My screen will never be “too narrow” for my use case)
Additional info:
- I use Angular version 17 with the NPM package @ArcGIS/core@4.29.10
- I usually work with popup templates in feature layers
Thanks