news-android icon indicating copy to clipboard operation
news-android copied to clipboard

Unsorted List item

Open derflasher opened this issue 7 years ago • 3 comments

In version 0.9.9.19 from F-Droid unsorted lists (<ul>) items (<li>) ain't indented and instead of bullet points (black circles) they are represented by a simple ">". Is that a new "feature", @David-Development ?

derflasher avatar Nov 11 '18 10:11 derflasher

Yes, this is a new feature and it was introduced as part of the refactoring process (improve material design). Basically it's just a bunch of css rules overwriting the default bullet-point layout.

David-Development avatar Nov 11 '18 10:11 David-Development

Oh, well.... I prefer the previous version.

derflasher avatar Nov 11 '18 10:11 derflasher

Thanks for the input. I'll improve this in the next release. For sub-level bullet-points this is definitely true. For first-level bullet-points I'll have to think about a better solution. I didn't like the margin since it looks odd from a layout perspective as it is not aligned with the rest of the text (beginning). Even though that makes it easier to distinguish.

Quote from @derflasher:

Basically it's horrible to read:

Headline
>This is my first point
>something to say to that point (not indented!)
>actually my second bullet point

The better way is:
Headline
•	This is my first bullet point
o	my sub-bullet
•	actually my second bullet point

Even the headline and the list isn't seperated (indented)!

I removed the margin (on the left) since phone screens have a limit space at hand. Therefore if the bullet points are aligned left (with the text), more space is available for the text in each bullet-point.

David-Development avatar Nov 11 '18 11:11 David-Development