mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-02-05 15:19:58 +08:00
Merge pull request #12645 from catboxanon/css/sticky-column
Make results column sticky
This commit is contained in:
commit
99cd8de234
11
style.css
11
style.css
@ -137,8 +137,8 @@ a{
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* gradio 3.39 puts a lot of overflow: hidden all over the place for an unknown reqasaon. */
|
/* gradio 3.39 puts a lot of overflow: hidden all over the place for an unknown reason. */
|
||||||
.block.gradio-textbox, div.gradio-group, div.gradio-dropdown{
|
div.gradio-container, .block.gradio-textbox, div.gradio-group, div.gradio-dropdown{
|
||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1034,3 +1034,10 @@ div.accordions > div.input-accordion.input-accordion-open{
|
|||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* sticky right hand columns */
|
||||||
|
|
||||||
|
#img2img_results, #txt2img_results, #extras_results {
|
||||||
|
position: sticky;
|
||||||
|
top: 0.5em;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user