diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-11-30 17:59:41 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-11-30 17:59:41 +0000 |
commit | c2ed4132037a32cda856e8ba6e2cda32b44b9784 (patch) | |
tree | d8753443c0c0730e6e44bc8b35689caf0a1183d5 | |
parent | f0f100e67b78f686dc73cf3c8cad422e45cc9b8a (diff) | |
download | stable-diffusion-webui-gfx803-c2ed4132037a32cda856e8ba6e2cda32b44b9784.tar.gz stable-diffusion-webui-gfx803-c2ed4132037a32cda856e8ba6e2cda32b44b9784.tar.bz2 stable-diffusion-webui-gfx803-c2ed4132037a32cda856e8ba6e2cda32b44b9784.zip |
add max-heigh/width to global-popup-inner
prevent the pop-up from being too big as to making exiting the pop-up impossible
-rw-r--r-- | style.css | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -646,6 +646,8 @@ table.popup-table .link{ margin: auto;
padding: 2em;
z-index: 1001;
+ max-height: 90%;
+ max-width: 90%;
}
/* fullpage image viewer */
|