diff options
author | butaixianran <butaixianran@qq.com> | 2023-03-11 10:42:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 10:42:14 +0000 |
commit | 946797b01de3671c9969f6f7d55e35ef1adaa6e6 (patch) | |
tree | b950b78b5987c41ebf717dc239ac3c09bcec9844 | |
parent | 3531a50080e63197752dd4d9b49f0ac34a758e12 (diff) | |
download | stable-diffusion-webui-gfx803-946797b01de3671c9969f6f7d55e35ef1adaa6e6.tar.gz stable-diffusion-webui-gfx803-946797b01de3671c9969f6f7d55e35ef1adaa6e6.tar.bz2 stable-diffusion-webui-gfx803-946797b01de3671c9969f6f7d55e35ef1adaa6e6.zip |
update "replace preview" link button's css
modify css
`.extra-network-thumbs .card:hover .additional a` 's value from `block` to `inline-block`.
So, extensions can add more buttons to extra network's thumbnail card.
-rw-r--r-- | style.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -856,7 +856,7 @@ footer { }
.extra-network-thumbs .card:hover .additional a {
- display: block;
+ display: inline-block;
}
.extra-network-thumbs .actions .additional a {
|