Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webui1.3.0更新后如果设置中附加网络选择thumbs就无法显示按钮。 #180

Closed
marksong233 opened this issue May 28, 2023 · 14 comments

Comments

@marksong233
Copy link

webui1.3.0更新后如果设置中附加网络选择thumbs就无法显示按钮。
只有那些有缩略图的lora无法显示按钮,那些没有缩略图的就可以显示,怀疑是被图片覆盖了按钮。
另外如果选择cards就可以正常显示。
webui版本:20ae71f
微信图片编辑_20230529031022

@ColorfanXP
Copy link

I had the same issue since the update to automatic1111 came out yesterday. The Civitai Helper icons wont appear on the loras/etc that have a thumbnail image, but will on those that dont.

@mikheys
Copy link

mikheys commented May 29, 2023

I confirm. I have the same problem.

@Deckard9999
Copy link

me too. glad to know is not me...

@Eurkidu
Copy link

Eurkidu commented May 30, 2023

AUTOMATIC1111/stable-diffusion-webui#10639
因为这个修改,图片被添加了 position: absolute,导致了层级覆盖

可以在项目根目录的 style.css 中添加如下代码,重新启动后,即可解决问题

.extra-network-thumbs .actions .additional {
    position: relative;
}

@marksong233
Copy link
Author

AUTOMATIC1111/stable-diffusion-webui#10639 因为这个修改,图片被添加了 position: absolute,导致了层级覆盖

可以在项目根目录的 style.css 中添加如下代码,重新启动后,即可解决问题

.extra-network-thumbs .actions .additional {
    position: relative;
}

可用

@Deckard9999
Copy link

it works. thank you very very much. I really apreciate your work.

@UriahKong
Copy link

AUTOMATIC1111/stable-diffusion-webui#10639 因为这个修改,图片被添加了 position: absolute,导致了层级覆盖

可以在项目根目录的 style.css 中添加如下代码,重新启动后,即可解决问题

.extra-network-thumbs .actions .additional {
    position: relative;
}

哥们你真吊
this code works so well ,everbody check this out and try to apply it ,but I believe this error will be no longer fixed by official civitai,cheers
问题上一大堆这个bug就你这个解决办法能行啊

@liulsg
Copy link

liulsg commented Jun 1, 2023

复制上述代码还是不能出现四个按钮。只能回退稳定版了。

@liulsg
Copy link

liulsg commented Jun 1, 2023

AUTOMATIC1111/stable-diffusion-webui#10639 因为这个修改,图片被添加了 position: absolute,导致了层级覆盖
可以在项目根目录的 style.css 中添加如下代码,重新启动后,即可解决问题

.extra-network-thumbs .actions .additional {
    position: relative;
}

哥们你真吊 this code works so well ,everbody check this out and try to apply it ,but I believe this error will be no longer fixed by official civitai,cheers 问题上一大堆这个bug就你这个解决办法能行啊

AUTOMATIC1111/stable-diffusion-webui#10639 因为这个修改,图片被添加了 position: absolute,导致了层级覆盖
可以在项目根目录的 style.css 中添加如下代码,重新启动后,即可解决问题

.extra-network-thumbs .actions .additional {
    position:relative;
}

哥们你真吊 这段代码工作得很好,everbody检查并尝试应用它,但我相信这个错误将不再被官方civitai修复,干杯 问题上一大堆这个bug就你这个解决办法能行啊

应该会修复的,不然后面ui升级到最新版的人,还不知道有多少出现这个问题呢。

@YujoeChiu
Copy link

太牛逼了哥们,给你大拇哥!

@wmlqk
Copy link

wmlqk commented Jun 8, 2023

I added the following code in the style.css file in the root directory of the project. After restarting, why hasn't this problem been solved? I feel so sad.
.extra-network-thumbs .actions .additional {
position: relative;
}

@lookas231
Copy link

I added the following code in the style.css file in the root directory of the project. After restarting, why hasn't this problem been solved? I feel so sad. .extra-network-thumbs .actions .additional { position: relative; }

I identified a conflict with the Latent Couple extension. Turning off that extension along with the above solution solved the problem.

@aomaoyyw
Copy link

thx, the code worked.
你最好直接粘贴在css文档内容的最后,而不要去改它里面原有的内容,即便里面有类似的代码。
You'd better paste it directly at the end of the css document instead of changing the original content in it, even if there is similar code in it.

@butaixianran
Copy link
Owner

Done, check new version.
Also there is a fork keeps catching up with latest sd webui.
https://github.com/zixaphir/Stable-Diffusion-Webui-Civitai-Helper

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests