diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-19 08:27:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 08:27:28 +0300 |
commit | 99cd8de23409756dc98c1ed2429b7139c265a0cd (patch) | |
tree | 8e8e93331bf5e848d2544e163c6d5b5f5e3efae7 | |
parent | 5590be7a8ce386142bf9dc38819944e4029c5774 (diff) | |
parent | f89f01f9d854d0433a417d00a09032bfb77f5385 (diff) |
Merge pull request #12645 from catboxanon/css/sticky-column
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;
+}
|