diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 20:16:02 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 20:16:02 +0000 |
commit | 86867e153f4449167e3489323df35cf04f1fffa0 (patch) | |
tree | 735b7311b84136c87ac17472ed464d1d7fb6759f /style.css | |
parent | d714ea4c41e4e7c0dc4730d9ea137d134691c0a2 (diff) | |
download | stable-diffusion-webui-gfx803-86867e153f4449167e3489323df35cf04f1fffa0.tar.gz stable-diffusion-webui-gfx803-86867e153f4449167e3489323df35cf04f1fffa0.tar.bz2 stable-diffusion-webui-gfx803-86867e153f4449167e3489323df35cf04f1fffa0.zip |
support for prompt styles
fix broken prompt matrix
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -19,6 +19,18 @@ max-width: 4em;
}
+#style_index{
+ min-width: 9em;
+ max-width: 9em;
+ padding-left: 0;
+ padding-right: 0;
+}
+
+#component-1 div{
+ border: none;
+ gap: 0;
+}
+
#resize_mode{
flex: 1.5;
}
@@ -28,9 +40,12 @@ button{ }
#img2img_prompt, #txt2img_prompt, #img2img_negative_prompt, #txt2img_negative_prompt{
- padding: 0;
border: none !important;
}
+#img2img_prompt textarea, #txt2img_prompt textarea, #img2img_negative_prompt textarea, #txt2img_negative_prompt textarea{
+ border: none !important;
+}
+
#img2maskimg .h-60{
height: 30rem;
|