From 3e0ef10b25e3b95e6b75e856756605e5d53c6e7d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 26 Jul 2025 23:25:04 +0300 Subject: [PATCH] fix(print): table captions not displayed properly (closes #6483) --- apps/client/src/stylesheets/print.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/client/src/stylesheets/print.css b/apps/client/src/stylesheets/print.css index f537911e5..8c8612924 100644 --- a/apps/client/src/stylesheets/print.css +++ b/apps/client/src/stylesheets/print.css @@ -320,3 +320,8 @@ h6 { page-break-after: avoid; break-after: avoid; } + +figure.table { + /* Workaround for https://github.com/ckeditor/ckeditor5/issues/18903. Remove once official fix is released */ + display: table !important; +} \ No newline at end of file