diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-12 14:46:13 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-12 14:46:13 +0000 |
commit | f0b72b81211881e083c84cff585380bb70d17271 (patch) | |
tree | 5da3afb6c761ed98d33a67701144b6b4fb2a3de8 /style.css | |
parent | 6aa26a26d5beb317d708c4fa85c38056347ea5d3 (diff) | |
download | stable-diffusion-webui-gfx803-f0b72b81211881e083c84cff585380bb70d17271.tar.gz stable-diffusion-webui-gfx803-f0b72b81211881e083c84cff585380bb70d17271.tar.bz2 stable-diffusion-webui-gfx803-f0b72b81211881e083c84cff585380bb70d17271.zip |
move seed, variation seed and variation seed strength to a single row, dump resize seed from UI
add a way for scripts to register a callback for before/after just a single component's creation
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -222,14 +222,18 @@ div.block.gradio-accordion { padding: 0.1em 0.75em;
}
+[id$=_seed], [id$=_subseed]{
+ max-width: 10em;
+}
+
[id$=_subseed_show]{
min-width: auto !important;
flex-grow: 0 !important;
display: flex;
}
-[id$=_subseed_show] label{
- margin-bottom: 0.5em;
+[id$=_subseed_show] .label-wrap{
+ margin: 0 0 0 0.5em;
align-self: end;
}
@@ -1028,5 +1032,6 @@ div.accordions{ div.accordions > div.input-accordion.input-accordion-open{
flex: 1 auto;
+ flex-flow: column;
}
|