@matthieuscarset I believe the problem is theme-related. I investigated the issue with the Gin theme, so the issue is in empty TD that has 100% width in CSS rules that came in the end with negative max-width (see img - I have applied the proposed CSS, for testing and it works). As for me, the easiest solution will be just to add/update or alter the theme CSS to something like:
[data-drupal-calibrate-width] td:empty {
width: auto !important;
}
Note: also figured out the issue with the incorrect position of the drag-cell icon and here is the CSS fix:
[data-drupal-calibrate-width] td.tabledrag-cell--only-drag {
display: table-cell;
}
But I think it is not related to this issue and is related to the theme CSS. Any thoughts on this?
MR was updated. Also, I did some optimization: the calculation of max-width now will be executed only once for the table. Please test and review.
Np, MR was updated. Looks like there were some updates on language detection on wiris side.
Please review and test.
Please review and test.
I am currently working on resolving the issues and suggestions that have been pointed out after review.
dbuzinov β made their first commit to this issueβs fork.
You can install the CKEditor5 version of the module using this configuration of the composer.json file:
{
"require": {
"drupal/ckeditor_wiris": "dev-3344505-ckeditor5",
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8",
"exclude": [
"drupal/ckeditor_wiris"
]
},
{
"type": "git",
"url": "https://git.drupalcode.org/issue/ckeditor_wiris-3344505"
}
],
}
dbuzinov β made their first commit to this issueβs fork.