Skip to content

Commit

Permalink
fix Inpaint Image Appears Behind Some UI Elements #206
Browse files Browse the repository at this point in the history
  • Loading branch information
anapnoe committed Dec 7, 2023
1 parent da22a58 commit 74027b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions extensions-builtin/anapnoe-sd-uiux/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion extensions-builtin/canvas-zoom-and-pan/javascript/zoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
Expand Down

0 comments on commit 74027b4

Please sign in to comment.