-
-
Notifications
You must be signed in to change notification settings - Fork 316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Editor toolbar overlaps calendar on DateField in admin #358
Comments
why don't you put datetime order to the last index ? |
btw in your tinymce have a image upload ? |
I have the same issue. I find it odd that the only solution is to move the date field below. Did anyone come up with something better than this? I am using Django 4.0 and Django-TinyMCE 3.4 and can confirm this issue still exists. |
This is a z-index CSS issue. While tinymce has |
Thanks all for you answers. Indeed, I tweaked my CSS to solve this. I raised that ticket to help maintainers improving this great component: as a user, I would expect tinymce would be perfectly integrated with the default Django admin components. Sorry I cannot help more: my knowledge in UI technologies is very low. |
You can add this CSS to your project by either creating a new CSS file and linking it to your HTML templates with a tag, or by adding it to an existing CSS file that is already linked in your templates. You can also place the CSS in a Django static file, then modify your HTML templates to load it.
This will tell Django to look for static files (including admin_tinymce.css) in the static directory at the root of your project.
This will load the admin_tinymce.css file in the Django admin.
This will link to the tinymce.css` file and apply the necessary |
Hello,
I have a model that is managed in admin side of my site:
Everything works well except the display when I click on the calendar to select a date (see picture).
I am currently using django-tinymce version 3.3.0 with django 3.2.4 and I don't set anything on regarding tinymce in the settings.py.
I have the same result within Firefox and Safari.
Thanks in advance for your help,
The text was updated successfully, but these errors were encountered: