Pretty small and insignificant thing but I couldn't find any larger thread where this would've fitted.
Not sure if this is a CSS or WYSIWYS-editor related issue. And yes I disabled custom CSS to see if that was causing it.
Example:
Normal Text - Normal Linked Text
Bolded Text - Bolded Linked Text
Cursive Text - Cursive Linked Text
Underlined Text - Underlined Linked Text
Strikethrough Text - Linked Strikethrough Text
Combined Text - Linked Combined Text
.ql-snow .ql-editor strong {
color: #555;
}
Is overriding
a strong {
color: currentColor;
}
Changing it to
.ql-snow .ql-editor strong {
color: inherit;
}
Resolves the problem.
Sorry, you need to Log In to post a reply to this thread.