stash icon indicating copy to clipboard operation
stash copied to clipboard

[Feature] Make the scene "wall" option more responsive and adapt to fill the window size

Open rawbeastly opened this issue 1 year ago • 3 comments

Is your feature request related to a problem? Please describe. I like the scene wall, but it only ever shows 5 scenes wide, and that doesn't come close to filling my screen when I use my large 50" tv as monitor.

Describe the solution you'd like Make the scene wall feature more responsive, so as you resize the window, it attempts to fill the available space with as many videos as possible. Maybe you could also make it so we could adjust the size of each scene on the wall too. So the wall would fill the space differently as you adjust the size of each scene up or down.

rawbeastly avatar Sep 20 '24 20:09 rawbeastly

The solution is fairly straightforward. The CSS for the wall page currently sets a limit to how wide the list can be. I'm not sure what the reason was. This can be bypassed pretty easily by providing the following CSS:

.wall {
    max-width: 100%;
}

cj12312021 avatar Sep 20 '24 20:09 cj12312021

that worked thanks! is there a class for the scene size? how would i change that?

rawbeastly avatar Sep 20 '24 20:09 rawbeastly

Tweaking the scene sizes on the page would require a deeper redesign of the CSS used on this view. The CSS currently tries to ensure that no more than 5 scenes are displayed per row while providing some hardcoded size values to guarantee a 16 / 9 aspect ratio for each clip.

cj12312021 avatar Sep 20 '24 21:09 cj12312021

I believe this is resolved by #5816

WithoutPants avatar Dec 17 '25 23:12 WithoutPants