neos-ui icon indicating copy to clipboard operation
neos-ui copied to clipboard

Lists in help messages are not properly formatted

Open Sebobo opened this issue 3 years ago • 0 comments

Description

The Neos css reset removes list styling from help messages.

Steps to Reproduce

Add a help message to a node property like this:


  properties:
    text:
      ui:
        showInCreationDialog: true
        help:
          message: >
            This is a *text* node. You **can** use this node to display text.
            And more text
            And a list
            
            ## heading
            
            > This is a *quote*
                          
            * Item 1
              * Item 2
            * Item 3
            
            1. bla
            
            1. blub
            
            
            ```php
              $foo = 'bar';
              foreach ($foo as $blub) {
                echo "hello world";
              }
            ```
            
            
            Horizontal rule
            
            ---
            
            And code `highlight`
                          
            And a link to [Neos](http://neos.io).

Expected behavior

ul and ol lists should be formatted as lists with proper indentation and icons

Actual behavior

All formatting options I tested work well enough except the normal list and the numbered list

help message example

Affected Versions

Neos: 5.3+

UI: 5.3+

Sebobo avatar Aug 11 '22 08:08 Sebobo