
When form is too large modal backdrop is being cut, it's max height is 100%
Tried to make a PR to fix this issue changing scss like so
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
opacity: 0.6;
}
But then scrolling on backdrop does not work. I'll leave it to you
Hi @thiag0coelho
I haven't seen any problem.
Which version of @abp/ng.theme.shared is installed in your application?
The current version is 1.1.1 and .modal-backdrop聽styles like this:
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
width: calc(100% - 7px);
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 1040;
}
Currently using 1.1.1. Uploaded a gif to help reproduce the issue. You have to decrease the screen size enough until the scroll appears..
Hope that helps


We tried reproducing the problem, it is working fine in the latest version. You can remove node_modules folder and yarn.lock file and re-install packages to get the latest version.
Also did some changes, it will be available in next version: 4b5c6a28b75d2ceb88888ee49f33c5b22ac47700
That worked. Thanks!
Most helpful comment
We tried reproducing the problem, it is working fine in the latest version. You can remove
node_modulesfolder andyarn.lockfile and re-install packages to get the latest version.Also did some changes, it will be available in next version: 4b5c6a28b75d2ceb88888ee49f33c5b22ac47700