django-markdown-editor
django-markdown-editor copied to clipboard
Incompatibility with Django 4.2
With Django 4.1.8:
With Django 4.2:
This is happening on a very basic install without CSS customization. You should be able to reproduce simply by upgrading Django.
Looking at https://github.com/django/django/commits/4.2/django/contrib/admin/static, I see commits that say "Used CSS flex for..." This suggests significant changes to the admin CSS, which would explain this result.
@aaugustin alternatively you can use this css path to fix that css issue:
MARTOR_ALTERNATIVE_CSS_FILE_THEME = "fix-martor.css"
Hello @aaugustin, seems the latest version already fixed. Kindly to upgrade your martor:
pip install martor --upgrade
Thank you.