@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
30 lines (26 loc) • 1.1 kB
CSS
/*
* What you're currently looking at is the source code of a legally protected, proprietary software.
* CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,
* all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
*
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
:root {
--ck-ai-disclaimer-background-color: hsla(0, 0%, 96%, 1);
--ck-ai-disclaimer-border-color: hsla(220, 6%, 82%, 1);
--ck-ai-disclaimer-text-color: hsla(0, 0%, 44%, 1);
}
.ck.ck-ai-disclaimer {
background-color: var(--ck-ai-disclaimer-background-color);
border-top: 1px solid var(--ck-ai-disclaimer-border-color);
padding: var(--ck-spacing-standard) 1em;
& > .ck.ck-ai-disclaimer__content {
color: var(--ck-ai-disclaimer-text-color);
font-size: 0.75em;
line-height: 1.025em;
text-align: center;
word-break: normal;
text-wrap: auto;
}
}