当我最大化 ckeditor window 时,ckeditor 工具栏部分隐藏在 django cms 主工具栏下

When I maximize the ckeditor window, the ckeditor toolbar is partially hidden under the django cms main toolbar

我看到 cke-maximize css class 在单击最大化按钮时添加到编辑器的位置。但是,我似乎找不到在哪里添加我的自定义 .cke-maximize class。我想更改 z-index 或添加 padding-top:50px; .cke-最大化

我试过将它添加到 env/lib/python2.7/site-packages/ckeditor/static/ckeditor/ckeditor/skins/moono/editor.css & env/lib/python2.7/site-packages/djangocms_text_ckeditor/static/ckeditor/ckeditor/skins/moono/editor.css

我试过将它放在 django_admin_style 中。我什至尝试将它放在主模板本身的 <style> 标签中。似乎没有任何效果。

有人可以指出正确的方向来修复工具栏重叠吗?

假设您正在谈论 django-cms 的管理部分,应该可以将其添加到 templates/admin/inc/extrastyle.html(在您的项目中)

<style>
    .cke_maximized {
        top: 47px !important;
        // or z-index: 10000 !important;
        // whichever you would prefer
    }
</style>

这将覆盖 CKEditor javascript 设置的值,直到它在 djangocms-admin-style

中得到修复