๐ Bug report
Using CKEditor 5 and Materialize CSS does not work well. I'm using MaterializeCSS v1.0.
The CSS from the docs is applied but it looks like Materializecss is overriding all ul-li tags in the editor.
See bullets
No bullets
I can confirm that in our MaterializeCSS demo unordered lists miss styles. cc @dkonopka
By default materialize CSS is overriding default <ul> and <li> appearance, see the source code.
We should add it to our documentation, but ATM this fix can help you.
.ck.ck-content ul,
.ck.ck-content ul li{
list-style-type: inherit;
}
.ck.ck-content ul {
/* Default user agent stylesheet, you can change it to your needs. */
padding-left: 40px;
}
I've also updated a codepen demo.
Most helpful comment
By default materialize CSS is overriding default
<ul>and<li>appearance, see the source code.We should add it to our documentation, but ATM this fix can help you.
I've also updated a codepen demo.