Skip to content

Commit

Permalink
Merge pull request #14379 from ckeditor/ck/3355-discovery-export-to-p…
Browse files Browse the repository at this point in the history
…df-text-goes-beyond-the-cell

Fix (table): Text will no longer go beyond its cell when columns are resized by resize handler in Firefox. Closes #14386.
Fix (export-pdf): Text will no longer go beyond its cell when columns are resized by resize handler in exported PDFs. Closes #3355.
  • Loading branch information
Dumluregn committed Jun 16, 2023
2 parents dca0ee5 + c4c8044 commit a5908d4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/ckeditor5-table/theme/tablecolumnresize.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

.ck-content .table td,
.ck-content .table th {
/* To prevent text overflowing beyond its cell when columns are resized by resize handler
(https://github.com/ckeditor/ckeditor5/pull/14379#issuecomment-1589460978). */
overflow-wrap: break-word;
position: relative;
}

Expand Down

0 comments on commit a5908d4

Please sign in to comment.