diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-05 16:19:55 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-05 16:19:55 +0000 |
commit | 4d4a9e733219f8c065a4ab6c5ab42836db7330fe (patch) | |
tree | a7f84a72134f0a27a9e895a987dcf298be7472db /style.css | |
parent | d9499f4301018ebd2977685d098381aa4111d2ae (diff) | |
download | stable-diffusion-webui-gfx803-4d4a9e733219f8c065a4ab6c5ab42836db7330fe.tar.gz stable-diffusion-webui-gfx803-4d4a9e733219f8c065a4ab6c5ab42836db7330fe.tar.bz2 stable-diffusion-webui-gfx803-4d4a9e733219f8c065a4ab6c5ab42836db7330fe.zip |
added compact prompt option
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -296,6 +296,13 @@ input[type="checkbox"].input-accordion-checkbox{ 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;
@@ -403,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;
@@ -525,7 +541,8 @@ table.popup-table .link{ height: 20px;
background: #b4c0cc;
border-radius: 3px !important;
- top: -20px;
+ top: -14px;
+ left: 0px;
width: 100%;
}
@@ -823,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;
|