Hello,
We're users of the full-width tree view, and we have a number of collections with either items with long titles, or nested collection structures that limit the real estate of one line of the tree-view. For desktop users that's not a huge issue because hovering over the line will display all the information. Browsing for Mobile users is better in 2.7 because scrolling the tree view works better than previous versions, but unfortunately the truncation of the title and the inability to hover limits the effectiveness of that improvement.
I've been playing around a little bit and I found that editing
fullWidthTreeView.css thusly (additions in bold):
```
fullwidth-treeview-row a.jstree-anchor {
width: 96.5%;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
height: auto;}
```
Will wrap the text, and it seems to work without issue, see attached for examples. I think it'd be nice if the second line was indented, just for some visual separation, but certainly good enough, and readable no matter what screen size or device.
This also works with the new B5 themes by adding the same two lines to atom/plugins/arDominionB5Plugin/scss/_fullwidthtreeview.scss under .jstree-anchor
I may be paranoid, but this seems too simple, so my question is, has anyone else tried this solution? Are there any pitfalls I'm missing? Has anyone gotten any feedback about navigating using the tree-view? I'd love to hear about your experiences.
Best,
Mathieu