Android: Improve Tag Visibility
Have you read the Longevity Statement? Yes.
Is your feature request related to a problem? Please describe. If the nesting of tags gets too long, the tag's name goes out the screen and you cannot see the rest of the tag's name. It will become difficult to know which tag you are applying to the note.
Describe the solution you'd like I would like the tag's name to wrap on the screen or to be side-scrollable just like a note's title.
Describe alternatives you've considered I have considered making my tag names shorter, but this will make it harder for me to distinguish between tags. I have also considered making the nest of tags smaller. I have considered that Standard Notes does not include the hierarchy of the tag when displaying the tag name, but there will be issues as duplicate tags are allowed if they're not within the same rank in the hierarchy of nested tags. There will be no way to distinguish between the 2 tags with the same name but different ranking in the hierarchy.
Additional context
Concur, the tags have two obvious problems that should be corrected. This is one of them. The other is that they do not sort alphabetically, which makes it very difficult to assign them to notes.
I was able to hack around the ellipses/truncation of long tag/folder names by adding some custom CSS:
.whitespace-nowrap {
text-wrap: wrap !important;
}
This works for both mobile web and desktop web, assuming you do/can use a CSS/style extension in your browser (eg. Stylus in my case).