-
Notifications
You must be signed in to change notification settings - Fork 579
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
Editing buttons are cut off in filer field #1499
Comments
@krmax44 Thanks for reporting this. What styling are you using for the admin, e.g. plain Django, djangocms-admin-style, or anything else? Which css file does the |
It's plain Django. Seems to be this one: django-filer/filer/private/sass/components/_drag-and-drop.scss Lines 244 to 245 in 735f728
|
@krmax44 I think the actual solution will lie elsewhere. Removing the The result should probably look like this: Also the relatively new "View" icon (eye) should be properly formatted. |
Yes, that might be an interesting direction to pursue. I think flexbox did not exist when the original css was created... |
for my setup (custom feincms3 plugin) this css did the trick: form .form-row .filer-dropzone span.filerFile.js-file-selector > a:first-child {
padding-top: 0 !important;
float: left;
} |
The Filer File Fields are cut off in CMS editing modals. This seems to be due to absolute positioning of the elements.
When disabling
position: absolute
in the dev tools, it looks like this:The text was updated successfully, but these errors were encountered: