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

The buttons disappear as soon as I click First Page, no generate info or filenames display

Open DaveMayfield opened this issue 1 year ago • 3 comments

The UI looks correct when I reload the web page, but as soon as I click any of the Page buttons all of the other buttons disappear. When I click an image there is no generate info or file name. So it does nothing more than display images right now.

DaveMayfield avatar May 20 '23 14:05 DaveMayfield

and no send to img2img etc on my side

x4080 avatar Jun 02 '23 21:06 x4080

The same happens here.

Using Chrome DevTools, I noticed a CSS class hide have added to div txt2img_images_history_button_panel.

https://snipboard.io/CiYj6w.jpg

Removing this class, the buttons are shown.

https://snipboard.io/MEst0v.jpg.

Now it's just to investigate where is the code that does that...

diegomagikal avatar Jun 05 '23 12:06 diegomagikal

Using Chrome DevTools, I noticed a CSS class hide have added to div txt2img_images_history_button_panel.

I now use this Stylus custom CSS rule

#image_browser_tab_txt2img_image_browser_button_panel { display: block!important; }

Like this the txt2img etc. buttons are at least visible and usable.

pxnk avatar Jun 26 '23 14:06 pxnk