aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-05 04:52:29 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2023-08-05 04:52:29 +0000
commit22ecb78b51f7e6f0234cbc0efbde4ee9a2dc466f (patch)
tree69e3bf4d53f4113f192116c252a2e410bb5b1f90 /style.css
parent390bffa81b747a7eb38ac7a0cd6dfb9fcc388151 (diff)
parent0ae2767ae6bb775de448b0d8cda1806edb2aef67 (diff)
downloadstable-diffusion-webui-gfx803-22ecb78b51f7e6f0234cbc0efbde4ee9a2dc466f.tar.gz
stable-diffusion-webui-gfx803-22ecb78b51f7e6f0234cbc0efbde4ee9a2dc466f.tar.bz2
stable-diffusion-webui-gfx803-22ecb78b51f7e6f0234cbc0efbde4ee9a2dc466f.zip
Merge branch 'dev' into multiple_loaded_models
Diffstat (limited to 'style.css')
-rw-r--r--style.css29
1 files changed, 27 insertions, 2 deletions
diff --git a/style.css b/style.css
index 6c92d6e7..14e6c011 100644
--- a/style.css
+++ b/style.css
@@ -8,6 +8,7 @@
--checkbox-label-gap: 0.25em 0.1em;
--section-header-text-size: 12pt;
--block-background-fill: transparent;
+
}
.block.padded:not(.gradio-accordion) {
@@ -42,7 +43,8 @@ div.form{
.block.gradio-radio,
.block.gradio-checkboxgroup,
.block.gradio-number,
-.block.gradio-colorpicker
+.block.gradio-colorpicker,
+div.gradio-group
{
border-width: 0 !important;
box-shadow: none !important;
@@ -133,6 +135,15 @@ a{
cursor: pointer;
}
+div.styler{
+ border: none;
+ background: var(--background-fill-primary);
+}
+
+.block.gradio-textbox{
+ overflow: visible !important;
+}
+
/* general styled components */
@@ -164,7 +175,7 @@ a{
.checkboxes-row > div{
flex: 0;
white-space: nowrap;
- min-width: auto;
+ min-width: auto !important;
}
button.custom-button{
@@ -388,6 +399,7 @@ div#extras_scale_to_tab div.form{
#quicksettings > div, #quicksettings > fieldset{
max-width: 24em;
min-width: 24em;
+ width: 24em;
padding: 0;
border: none;
box-shadow: none;
@@ -972,3 +984,16 @@ div.block.gradio-box.edit-user-metadata {
.edit-user-metadata-buttons{
margin-top: 1.5em;
}
+
+
+
+
+div.block.gradio-box.popup-dialog, .popup-dialog {
+ width: 56em;
+ background: var(--body-background-fill);
+ padding: 2em !important;
+}
+
+div.block.gradio-box.popup-dialog > div:last-child, .popup-dialog > div:last-child{
+ margin-top: 1em;
+}