Javascript API, CSS - PopUp viewport to expand down entire container? Using 4.15 or 4.16

777
2
Jump to solution
09-02-2020 09:24 AM
MattDriscoll1
New Contributor II

How do I either change the height of the feature-menu-viewport to match the main-container, or have it automatically fill it in?

I tried:

.esri-popup__main-container.esri-widget {
              width: 500px !important;
              height: 800px !important;
            }

            .esri-popup__feature-menu-viewport {
              
              height: 800px !important;
            }‍‍‍‍‍‍‍‍‍

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Here is what you need:

.esri-popup__feature-menu-viewport {
    max-height: none !important;
    height: 600px !important;
}

View solution in original post

0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus

Here is what you need:

.esri-popup__feature-menu-viewport {
    max-height: none !important;
    height: 600px !important;
}
0 Kudos
MattDriscoll1
New Contributor II

Thank you!

0 Kudos