Files
moodle/lib/editor/tiny/editor_styles.css
T
Andrew Nicols c99636e0a6 MDL-76440 editor_tiny: Reset text-align to initial
Bootstrap core's "reboot" sets a default text-align which is
incompatible with RTL languages.

Arguably this should be set in the Boost theme, but this is a fairly
large change which has potential to break things so I'm making it here
where we experience the issue for now.
2022-11-23 12:32:09 +08:00

5 lines
71 B
CSS

body.mce-content-body {
margin: revert;
text-align: initial;
}