8
0
Просмотр исходного кода

Merge pull request #221 from ckeditor/t/ckeditor5/998

Internal: Introduce mention feature styles.
Piotrek Koszuliński 6 лет назад
Родитель
Сommit
380e676806

+ 14 - 0
packages/ckeditor5-theme-lark/theme/ckeditor5-mention/mentionediting.css

@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
+ */
+
+:root {
+	--ck-color-mention-background: hsla(341, 100%, 30%, 0.1);
+	--ck-color-mention-text: hsl(341, 100%, 30%);
+}
+
+.ck-content .mention {
+	background: var(--ck-color-mention-background);
+	color: var(--ck-color-mention-text);
+}