Indent BB code is auto-inserted when max-width and auto margins are defined for p in “editor.less” and list BB code is applied

Aivaras

Well-known member
Affected version
2.2.13
To reproduce the problem, in “editor.less” under .fr-view change:
CSS:
p
    {
        margin-bottom: 0;
        margin-top: 0;
    }
to:
Code:
p
    {
        margin-bottom: 0;
        margin-top: 0;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
type some text and apply [LIST]. The resulting formatted list will get auto-wrapped with [INDENT].
 
Top Bottom