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

[Feature Request]: Extra Networks cards size change

Open rapidrabbit76 opened this issue 2 years ago • 2 comments

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 ?

Extra Networks cards size change

I confirmed that there is a function to change to a thumbs rather than a card in the settings. However, there is a problem that the size is too small when changed to thumbs Can't add a function to change the card size in settings?

Proposed workflow

  1. Go to Settings tab -> Extra Networks -> Default view for Extra Networks

Additional information

No response

rapidrabbit76 avatar Feb 17 '23 10:02 rapidrabbit76

You can change the card size by putting sth like this in the file user.css:

.extra-network-cards .card{
    width: 12em !important;
    height: 12em !important;
}

.extra-network-cards .card .actions .name{
    font-size: 1em !important;
}

(this will set them to 12em squared, and make the label font smaller; experiment with the numbers!)

schumar avatar Feb 22 '23 08:02 schumar

@schumar

thx! i am also using the CSS after modifying it. i raised the issue because I thought it would be better to change it in setting check PR #7936, if PR is merged close this Issue thx!

rapidrabbit76 avatar Feb 28 '23 10:02 rapidrabbit76