Skip to content

Commit

Permalink
fix(ckeditor): full-height edit plugin inside text
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Dec 9, 2022
1 parent 5bd9e1b commit fe399fe
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions taccsite_cms/static/djangocms_text_ckeditor/css/cms.ckeditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,14 @@

/* https://github.com/django-cms/djangocms-text-ckeditor/pull/590 */
textarea.cke_source { max-height: inherit; }

/* To stretch plugin editor content height */
.cke_reset_all/* ← for specificiity */ .cke_dialog_ui_vbox {
position: relative;
}
.cke_dialog_ui_vbox table {
position: absolute;
height: 100%;
left: 0;
top: 0;
}

0 comments on commit fe399fe

Please sign in to comment.