From c411900efde84dfb10b613d31692940071eab567 Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Thu, 4 Jul 2024 16:17:59 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B07552=20-=20Fix=20CKEditor=20tables=20bei?= =?UTF-8?q?ng=20impossible=20to=20resize?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/backoffice/vendors/_ckeditor.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/backoffice/vendors/_ckeditor.scss b/css/backoffice/vendors/_ckeditor.scss index 0ce185131..886ab0cb2 100644 --- a/css/backoffice/vendors/_ckeditor.scss +++ b/css/backoffice/vendors/_ckeditor.scss @@ -58,6 +58,10 @@ $ibo-vendors-ckeditor--ck-color-image-caption-text: $ibo-color-grey-900 !default .ck.ck-content { color: $ibo-vendors-ckeditor--ck-content--text-color; + /* Needed to let table grow inside their resizer as `.ibo-is-html-content table` rule unset ckeditor default 100% width */ + .table table { + width: 100% !important; + } } .ck-editor__editable_inline:not(.ck-comment__input *) {