diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-18 08:18:22 +0000 |
---|---|---|
committer | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-18 08:18:22 +0000 |
commit | f89f01f9d854d0433a417d00a09032bfb77f5385 (patch) | |
tree | e904d5a72c49f598a838b5b354c651e0361dc2ff | |
parent | 541ef9247cfe8785c12f7142ad02cd5310fc5925 (diff) | |
download | stable-diffusion-webui-gfx803-f89f01f9d854d0433a417d00a09032bfb77f5385.tar.gz stable-diffusion-webui-gfx803-f89f01f9d854d0433a417d00a09032bfb77f5385.tar.bz2 stable-diffusion-webui-gfx803-f89f01f9d854d0433a417d00a09032bfb77f5385.zip |
Make results column sticky
-rw-r--r-- | style.css | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -137,8 +137,8 @@ a{ cursor: pointer;
}
-/* gradio 3.39 puts a lot of overflow: hidden all over the place for an unknown reqasaon. */
-.block.gradio-textbox, div.gradio-group, div.gradio-dropdown{
+/* gradio 3.39 puts a lot of overflow: hidden all over the place for an unknown reason. */
+div.gradio-container, .block.gradio-textbox, div.gradio-group, div.gradio-dropdown{
overflow: visible !important;
}
@@ -1034,3 +1034,10 @@ div.accordions > div.input-accordion.input-accordion-open{ flex-flow: column;
}
+
+/* sticky right hand columns */
+
+#img2img_results, #txt2img_results, #extras_results {
+ position: sticky;
+ top: 0.5em;
+}
|