diff options
author | pieresimakp <69743585+pieresimakp@users.noreply.github.com> | 2023-03-27 03:53:15 +0000 |
---|---|---|
committer | pieresimakp <69743585+pieresimakp@users.noreply.github.com> | 2023-03-27 03:53:15 +0000 |
commit | 68a5604cac50c27dbacf9775c9466600dc8bf789 (patch) | |
tree | e3cd120bb5321d2856ef0b51b244c3aa083e82c1 /style.css | |
parent | 774c691df8b99f5e24d3f41e451fe65f5b447952 (diff) | |
parent | 3b5a3fab91ff797b28239cda5b449aac1f85ad00 (diff) | |
download | stable-diffusion-webui-gfx803-68a5604cac50c27dbacf9775c9466600dc8bf789.tar.gz stable-diffusion-webui-gfx803-68a5604cac50c27dbacf9775c9466600dc8bf789.tar.bz2 stable-diffusion-webui-gfx803-68a5604cac50c27dbacf9775c9466600dc8bf789.zip |
Merge remote-tracking branch 'upstream/master' into pr-dev
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -7,7 +7,7 @@ --block-background-fill: transparent;
}
-.block.padded{
+.block.padded:not(.gradio-accordion) {
padding: 0 !important;
}
@@ -65,6 +65,19 @@ div.compact{ margin-bottom: 0;
}
+.gradio-dropdown ul.options {
+ max-height: 35em;
+ z-index: 3000;
+}
+
+.gradio-dropdown ul.options li.item {
+ padding: 0.05em 0;
+}
+
+.gradio-dropdown ul.options li.item.selected {
+ background-color: var(--secondary-500);
+}
+
.gradio-dropdown div.wrap.wrap.wrap.wrap{
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
|