Hi,
In version 1.7.10, a dropdownselect list inside a short modal would work like the following screenshot, the lists' z-index being greater than of modals:
But with version 1.8.0, I see the following behaviour. The list of the dropdownselect doesn't overflow onto the modal, creating scroll both in itself and inside modal, thus being unusable:
I wanted to ask here whether this is expected before applying a CSS solution.
Thank you,
Ozan
I fixed this problem by removing the overflow-y property of .modal-content.
.modal-content { overflow-y: unset !important; }
The problem with that fix is that, if you have a lot more content in the modal, it no longer scrolls, making the extra content overflowing.