[Feature] Some way to adjust scene editing panel for my needs
Is your feature request related to a problem? Please describe.
Scene editing panel was already pretty long and didn't fit into my screen (1920x1080, 100% scale everywhere) in 0.17.2. Version 0.18.0 added a couple new fields at the top (#3051). Not all of the available fields are something I care about, and the current order doesn't reflect my priorities. I'd like to be able to hide some of the rows (and maybe reorder others). With CSS I can only achieve a fragile solution, subject for breaking if something changes in new versions.
Describe the solution you'd like
Couple of possibilities:
- add checkboxes in interface settings to enable/disable certain fields throughout stash;
- add CSS-friendly markup, example below.
<div class="form-group row" id="scene-edit-title-row">
<label for="Title" class="form-label col-form-label col-3">Title</label>
<div class="col-9">
<input placeholder="Title" name="title" id="Title" class="text-input form-control" value="">
</div>
</div>
The change here is added id="scene-edit-title-row" at the level where CSS rule has to be applied.
Describe alternatives you've considered
A workaround in 0.18.0 would be to write custom JS to inspect each row children to find certain tags.
This sounds like a great and very useful idea. For me personally - Title, Date and Description are what I strive for on my entries. URL and Studio are next. After that, I don't pay too much attention. With the new fields - I don't even know what a Studio Code is, if I'm honest, as for Director the only time I can see me using that is on Rodney Moore scenes (based off what's in my collection). The option to configure the Scene Edit panel with checkboxes to turn on/off fields would definitely be something I could make use of, so it has my vote.