Merge pull request #12645 from catboxanon/css/sticky-column

Make results column sticky
This commit is contained in:
AUTOMATIC1111 2023-08-19 08:27:28 +03:00 committed by GitHub
commit 99cd8de234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -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;
}