stashapp / stash

An organizer for your porn, written in Go. Documentation: https://docs.stashapp.cc
https://stashapp.cc/
GNU Affero General Public License v3.0
9.25k stars 794 forks source link

Disable Scene Details from the wall view #5346

Closed nathanstreetx closed 3 weeks ago

nathanstreetx commented 4 weeks ago

New to using this app, so not sure if this has already been created, but I couldn't find it in settings. I would like the option not show the scene description on the scene wall and performer wall (See screenshots). If this could just be a toggle in the settings that switched off the details display across scenes and movies that would be great

How it currently looks 1

How I would like it to look 2

FYI - I know I can achieve this by removing the details from the scenes themselves, but I don't want to do that, I still want the detail description when I open the scenes, just not on the wall.

bob123491234 commented 3 weeks ago

This can be accomplished by adding .scene-card__description { display: none } to the custom CSS (Settings > Interface > Custom CSS). Be sure to enable custom CSS and refresh the page after applying it.

cj12312021 commented 3 weeks ago

Stash enables custom CSS to allow users to tweak issues like this in their own Stash instance. The CSS provided by @bob123491234 should make the requested change. For further help with CSS, you can reach out in the Discord #theming channel.

nathanstreetx commented 3 weeks ago

Thanks @bob123491234 , that worked perfectly. Is there a way to get the same setting for Movies (Groups)?

bob123491234 commented 3 weeks ago

@nathanstreetx Yes, just add a line with .group-card__description { display: none }. It can be done for galleries and images as well with .gallery-card__description { display: none } and .image-card__description { display: none }.

nathanstreetx commented 3 weeks ago

Thanks @bob123491234