-
-
Notifications
You must be signed in to change notification settings - Fork 840
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
Comments
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;} |
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 |
This could be applied for movies as well! |
Please apply this to Markers! |
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
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.
The text was updated successfully, but these errors were encountered: