fix Inpaint Image Appears Behind Some UI Elements #206

This commit is contained in:
anapnoe
2023-12-07 08:12:43 +02:00
parent da22a58aae
commit 74027b4ea8
2 changed files with 4 additions and 1 deletions
@@ -3337,6 +3337,9 @@ input[type="checkbox"] {
.default-mobile .template > .full-height {
padding: var(--ae-panel-padding);
}
#img2img_params_tabitem .tabitem > .gap{
overflow:hidden;
}
@media (max-width: 768px) {
.xtabs-tab span {
@@ -367,7 +367,7 @@ onUiLoaded(async() => {
const img = targetElement.querySelector(`${elemId} img`);
if (img && img.style.display !== "none") {
img.style.display = "none";
//img.style.display = "none";
img.style.visibility = "hidden";
}
}