diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-21 06:48:38 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-21 06:58:57 +0000 |
commit | 184e23eb89c198b42f351a4d5ff862ee64917619 (patch) | |
tree | 9949eaedfc1a281ab8a2d39a7c7ec2290ca6c85e /style.css | |
parent | 6d805b669e86233432f56ee1892d062103abe501 (diff) | |
download | stable-diffusion-webui-gfx803-184e23eb89c198b42f351a4d5ff862ee64917619.tar.gz stable-diffusion-webui-gfx803-184e23eb89c198b42f351a4d5ff862ee64917619.tar.bz2 stable-diffusion-webui-gfx803-184e23eb89c198b42f351a4d5ff862ee64917619.zip |
relocate tool buttons next to generate button
prevent extra network tabs from putting images into wrong prompts
prevent settings leaking into prompt
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 18 |
1 files changed, 7 insertions, 11 deletions
@@ -124,15 +124,12 @@ height: 100%;
}
-#roll_col{
- min-width: unset !important;
- flex-grow: 0 !important;
- padding: 0 1em 0 0;
+#txt2img_actions_column, #img2img_actions_column{
gap: 0;
}
-#roll_col > button {
- margin: 0.1em 0;
+#txt2img_tools, #img2img_tools{
+ gap: 0.4em;
}
#interrogate_col{
@@ -153,7 +150,6 @@ #txt2img_styles_row, #img2img_styles_row{
gap: 0.25em;
- margin-top: 0.5em;
}
#txt2img_styles_row > button, #img2img_styles_row > button{
@@ -164,6 +160,10 @@ padding: 0;
}
+#txt2img_styles > label > div, #img2img_styles > label > div{
+ min-height: 3.2em;
+}
+
#txt2img_styles ul, #img2img_styles ul{
max-height: 35em;
z-index: 2000;
@@ -770,10 +770,6 @@ footer { line-height: 2.4em;
}
-#txt2img_extra_networks, #img2img_extra_networks{
- margin-top: -1em;
-}
-
.extra-networks > div > [id *= '_extra_']{
margin: 0.3em;
}
|