Abp: Angular template - modal backdrop is being cut if modal height is higher than 100%

Created on 28 Dec 2019  路  4Comments  路  Source: abpframework/abp

image
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

ui-angular

Most helpful comment

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

All 4 comments

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

Hpe065Orqj

image

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!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

derily picture derily  路  3Comments

hikalkan picture hikalkan  路  3Comments

hikalkan picture hikalkan  路  3Comments

leonkosak picture leonkosak  路  3Comments

wakuflair picture wakuflair  路  3Comments