Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Add a thumbnail size slider to the Performers page #2201

Closed
CupOnMyTable opened this issue Jan 4, 2022 · 4 comments · Fixed by #4674
Closed

[Feature] Add a thumbnail size slider to the Performers page #2201

CupOnMyTable opened this issue Jan 4, 2022 · 4 comments · Fixed by #4674
Labels
feature Pull requests that add a new feature ui Issues related to UI

Comments

@CupOnMyTable
Copy link

The scenes page has a slider which can be used to increase or decrease the thumbnails size on the page.

It would be good to have this on the Performers page too so that the screen real estate can be easily changed as needed.

Thanks.

@philpw99
Copy link
Contributor

philpw99 commented Jan 4, 2022

Use the custom css to control the size then:

.performer-image-container{
  flex: 0 0 50%;
  max-width: 50%;
}

.col-md-8 {
  flex: 0 0 50%;
  max-width: 50%;
}

(Be aware that changing .col-md-8 also affects the studios and tags display. 50% is a good compromise.)

Or this to show the full image:

.performer.image {
  background-size: contain !important;
}

Ooops ! Sorry, I got it wrong. It's not about the performer's card image. It's about the grid view's image size. It can be enlarged like this:

.performer-card-image{
  height: 45rem;
  min-width: 20rem;
}

The original size is {height: 30rem; min-width: 13.25rem;}

@VonTittyslappen
Copy link

I agree that this should just be a normal slider like it is for the scenes section, it makes sense to have it in there

@kermieisinthehouse kermieisinthehouse added feature Pull requests that add a new feature ui Issues related to UI labels Jan 5, 2022
@hyde231
Copy link

hyde231 commented Jan 10, 2022

This could be applied for movies as well!

@melonyoda
Copy link

Please apply this to Markers!

Gykes added a commit to Gykes/stash that referenced this issue Sep 11, 2024
Adding in a zoom slider to performers page.

Relates to this one but won't close due to it also containing request for galleries and markers.

stashapp#2201
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature Pull requests that add a new feature ui Issues related to UI
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants