diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 15:21:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 15:21:28 +0000 |
commit | b615a2ed11b4d8f9345ae89c3e65c3fe5b24b244 (patch) | |
tree | d7cf112e8c6f0df2fb4646d8953e80fcb0812d4f /style.css | |
parent | 103fc062a5edb8e5a8e79099cc3f80c75c4158af (diff) | |
parent | eabecc21ecd240b63cd4b3996286b74e794ddcea (diff) | |
download | stable-diffusion-webui-gfx803-b615a2ed11b4d8f9345ae89c3e65c3fe5b24b244.tar.gz stable-diffusion-webui-gfx803-b615a2ed11b4d8f9345ae89c3e65c3fe5b24b244.tar.bz2 stable-diffusion-webui-gfx803-b615a2ed11b4d8f9345ae89c3e65c3fe5b24b244.zip |
Merge pull request #9108 from AUTOMATIC1111/img2img-scale-by
add "resize by" and "resize to" tabs to img2img
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -293,7 +293,12 @@ button.custom-button{ margin-left: -0.75em
}
-#txtimg_hr_finalres .resolution{
+#img2img_scale_resolution_preview.block{
+ display: flex;
+ align-items: end;
+}
+
+#txtimg_hr_finalres .resolution, #img2img_scale_resolution_preview .resolution{
font-weight: bold;
}
@@ -337,6 +342,18 @@ div#extras_scale_to_tab div.form{ overflow-wrap: break-word;
}
+#img2img_column_batch{
+ align-self: end;
+ margin-bottom: 0.9em;
+}
+
+#img2img_unused_scale_by_slider{
+ visibility: hidden;
+ width: 0.5em;
+ max-width: 0.5em;
+ min-width: 0.5em;
+}
+
/* settings */
#quicksettings {
width: fit-content;
|