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

There is a bug in this version
A

Aivaras

Guest
To reproduce the problem, in “editor.less” under .fr-view change:
CSS:

Code:
p
    {
        margin-bottom: 0;
        margin-top: 0;
    }
to:
Code:

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].

Continue reading...