stable-diffusion-webui icon indicating copy to clipboard operation
stable-diffusion-webui copied to clipboard

[Feature Request]: Sticky results pane

Open CJohnDesign opened this issue 2 years ago • 1 comments
trafficstars

Is there an existing issue for this?

  • [X] I have searched the existing issues and checked the recent builds/commits

What would your feature do ?

Allow for you to always see your image while working Make better use of space

Proposed workflow

Once the top of #img2img_results or #txt3img_resultsdivs hit the top edge of the browser, set position to sticky (or any preferred method of sticking)

Additional information

I'm working with the ControlNet extension and since I have to scroll to work with the extension, I can't see the art while I'm adjusting the settings.

Here you can see the empty space: image

CJohnDesign avatar Feb 18 '23 00:02 CJohnDesign

You can add it to your user.css

#img2img_results, #txt2img_results, #extras_results {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

missionfloyd avatar Feb 18 '23 01:02 missionfloyd