[Feature] Make the scene "wall" option more responsive and adapt to fill the window size
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.
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%;
}
that worked thanks! is there a class for the scene size? how would i change that?
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.
I believe this is resolved by #5816