diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-16 13:53:13 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-16 13:53:13 +0000 |
commit | cd12256575dcce325519ef674323d953fbce252c (patch) | |
tree | 61cb8998f8971cbdbd3302ff1b7edda6e2737b99 /style.css | |
parent | c3facab495e6bb29b5e0b16d064b44851a733a95 (diff) | |
parent | 5e80d9ee99c5899e5e2b130408ffb65a0585a62a (diff) | |
download | stable-diffusion-webui-gfx803-cd12256575dcce325519ef674323d953fbce252c.tar.gz stable-diffusion-webui-gfx803-cd12256575dcce325519ef674323d953fbce252c.tar.bz2 stable-diffusion-webui-gfx803-cd12256575dcce325519ef674323d953fbce252c.zip |
Merge branch 'dev' into test-fp8
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -204,6 +204,11 @@ div.block.gradio-accordion { padding: 8px 8px;
}
+input[type="checkbox"].input-accordion-checkbox{
+ vertical-align: sub;
+ margin-right: 0.5em;
+}
+
/* txt2img/img2img specific */
@@ -291,6 +296,13 @@ div.block.gradio-accordion { min-height: 4.5em;
}
+#txt2img_generate, #img2img_generate {
+ min-height: 4.5em;
+}
+.generate-box-compact #txt2img_generate, .generate-box-compact #img2img_generate {
+ min-height: 3em;
+}
+
@media screen and (min-width: 2500px) {
#txt2img_gallery, #img2img_gallery {
min-height: 768px;
@@ -398,6 +410,15 @@ div#extras_scale_to_tab div.form{ min-width: 0.5em;
}
+div.toprow-compact-stylerow{
+ margin: 0.5em 0;
+}
+
+div.toprow-compact-tools{
+ min-width: fit-content !important;
+ max-width: fit-content;
+}
+
/* settings */
#quicksettings {
align-items: end;
@@ -520,7 +541,8 @@ table.popup-table .link{ height: 20px;
background: #b4c0cc;
border-radius: 3px !important;
- top: -20px;
+ top: -14px;
+ left: 0px;
width: 100%;
}
@@ -818,6 +840,10 @@ footer { /* extra networks UI */
+.extra-page .prompt{
+ margin: 0 0 0.5em 0;
+}
+
.extra-network-cards{
height: calc(100vh - 24rem);
overflow: clip scroll;
|