Fix list CSS for RTL languages

See issue description: RTL numbered or bullet lists are broken - Bug - Discourse Meta which includes an example from our forum: ההנחיות בוויקי לגבי שמות

This can be fixed with a simple CSS patch, for which @Udi opened a PR: fix Right-To-Left rendering of ordered lists in posts by nonZero · Pull Request #32898 · discourse/discourse · GitHub

.cooked,
.d-editor-preview {
  ul,
  ol {
    padding-inline-start: 1.25em;
  }
}

Rather than waiting for Discourse to fix this upstream (and then however long it takes for the OSM forum to upgrade to the fixed version), can you apply the fix today? Installing custom CSS: Making custom CSS changes on your site - Site Management - Discourse Meta

Thanks!

Edit: fixed CSS (missing selector)

Note that Discourse have already merged PR #32898 into their main branch.

2 Likes