diff options
author | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-03-27 03:50:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 03:50:22 +0000 |
commit | 8410b1351e2fb2cf6e29925e06c2f0e51ce7852d (patch) | |
tree | 1ff9682524e2994d7299af502c4fcdc3aa5b2ed7 /style.css | |
parent | cb8c447f0d37b5ee9df9a7ee3e9d32b7966dabee (diff) | |
parent | 3b5a3fab91ff797b28239cda5b449aac1f85ad00 (diff) | |
download | stable-diffusion-webui-gfx803-8410b1351e2fb2cf6e29925e06c2f0e51ce7852d.tar.gz stable-diffusion-webui-gfx803-8410b1351e2fb2cf6e29925e06c2f0e51ce7852d.tar.bz2 stable-diffusion-webui-gfx803-8410b1351e2fb2cf6e29925e06c2f0e51ce7852d.zip |
Merge branch 'AUTOMATIC1111:master' into extra-network-preview-lazyload
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);
}
|