Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Table selection handler should not be truncated inside a block quote. #30

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion theme/blockquote.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

.ck-content blockquote {
/* See #12 */
/* https://github.com/ckeditor/ckeditor5-block-quote/issues/12 */
overflow: hidden;

/* https://github.com/ckeditor/ckeditor5-block-quote/issues/15 */
Expand All @@ -15,3 +15,9 @@
font-style: italic;
border-left: solid 5px hsl(0, 0%, 80%);
}

.ck-content blockquote .table:first-child {
/* https://github.com/ckeditor/ckeditor5-block-quote/issues/28
`16px` = table selection handler height. */
margin-top: calc(1em + 16px);
}