@ckeditor/ckeditor5-comments
Version:
Collaborative comments feature for CKEditor 5.
36 lines (29 loc) • 978 B
CSS
/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
:root{
--ck-color-comment-marker:#fef7a9;
--ck-color-comment-marker-active:#fdf05d;
}
.ck-content .ck-comment-marker{
background:var(--ck-color-comment-marker);
border-top:3px solid #0000;
border-bottom:3px solid #0000;
}
.ck-content .ck-comment-marker.ck-widget{
border:3px solid var(--ck-color-comment-marker);
background-color:#0000;
}
.ck-content .ck-comment-marker--active{
background:var(--ck-color-comment-marker-active);
}
.ck-content .ck-comment-marker--active .ck-comment-marker{
background:var(--ck-color-comment-marker-active);
}
.ck-content .ck-comment-marker--active.ck-widget{
border-color:var(--ck-color-comment-marker-active);
}
.ck-content .ck-comment-marker--active.ck-widget .ck-comment-marker{
background-color:var(--ck-color-comment-marker);
}