diff options
author | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-25 19:52:06 +0000 |
---|---|---|
committer | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-25 19:52:06 +0000 |
commit | d3b188c82d10e8af45357f258c1f65a04cfa4a18 (patch) | |
tree | 0d5a116cc71597f47f86b56717e16799a739047f /style.css | |
parent | a0d07fb5807ad55c8ccfdfc9a6d9ae3c62b9d211 (diff) | |
download | stable-diffusion-webui-gfx803-d3b188c82d10e8af45357f258c1f65a04cfa4a18.tar.gz stable-diffusion-webui-gfx803-d3b188c82d10e8af45357f258c1f65a04cfa4a18.tar.bz2 stable-diffusion-webui-gfx803-d3b188c82d10e8af45357f258c1f65a04cfa4a18.zip |
Fix padding on accordion/dropdown list elements
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);
}
|