-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disappearing cell selection border #3183
Disappearing cell selection border #3183
Comments
Possible solution ckeditor/ckeditor5-table#23 (comment). |
Internal: Moved table editing styles from ckeditor5-table. Decreased the specificity of the widget's nested editable styles to make it possible to style tables as a content (see ckeditor/ckeditor5-table#2). Partially fixes ckeditor/ckeditor5-table#29.
I still can reproduce this issue: ckeditor/ckeditor5-table#69: When there are colspans/rowspans in cells the border-based selection is messed up: I've found that the I've used this: .ck-widget.table {
& td,
& th {
&.ck-editor__nested-editable.ck-editor__nested-editable_focused {
border-style: none;
box-shadow: var(--ck-inner-shadow), 0 0, inset 0px 0px 0 1px var(--ck-color-focus-border);
}
}
} |
How's this ticket different from https://github.com/ckeditor/ckeditor5-table/issues/69? Shouldn't this one be closed as a DUP? |
@Reinmar I've reopen this by mistake and forgot about it. Let's keep this closed and use ckeditor/ckeditor5-table#69 only. |
Fix: The table cell selection highlight is broken around merged cells. Closes ckeditor/ckeditor5-table#69. Closes ckeditor/ckeditor5-table#29.
A followup of ckeditor/ckeditor5-table#23 (comment).
The text was updated successfully, but these errors were encountered: