diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-18 14:56:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-18 14:56:47 +0000 |
commit | abd5cc6b2b2aa48e304f4fff3c8259137ad187ca (patch) | |
tree | 1f5089f9bd1164923a06430a4e2b71805f9a67d0 /style.css | |
parent | cf651a5e23ad11b961f5e72b4999cf8633bbdf68 (diff) | |
parent | a96076f49ce7755ebdf3cad588b5c0d2f1f93035 (diff) | |
download | stable-diffusion-webui-gfx803-abd5cc6b2b2aa48e304f4fff3c8259137ad187ca.tar.gz stable-diffusion-webui-gfx803-abd5cc6b2b2aa48e304f4fff3c8259137ad187ca.tar.bz2 stable-diffusion-webui-gfx803-abd5cc6b2b2aa48e304f4fff3c8259137ad187ca.zip |
Merge pull request #585 from JohanAR/ui_seed_changes
Polish seed UI options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 26 |
1 files changed, 24 insertions, 2 deletions
@@ -43,9 +43,31 @@ margin-right: auto;
}
+#random_seed, #random_subseed, #reuse_seed, #reuse_subseed{
+ min-width: auto;
+ flex-grow: 0;
+ padding-left: 0.25em;
+ padding-right: 0.25em;
+}
+
+#seed_row, #subseed_row{
+ gap: 0.5rem;
+}
+
+#subseed_show_box{
+ min-width: auto;
+ flex-grow: 0;
+}
+
+#subseed_show_box > div{
+ border: 0;
+ height: 100%;
+}
+
#subseed_show{
- min-width: 6em;
- max-width: 6em;
+ min-width: auto;
+ flex-grow: 0;
+ padding: 0;
}
#subseed_show label{
|