@ckeditor/ckeditor5-theme-lark 43.3.1-alpha.0 → 44.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -5
- package/dist/index-editor.css +10 -0
- package/dist/index.css +24 -0
- package/dist/index.css.map +1 -1
- package/package.json +2 -2
- package/theme/ckeditor5-bookmark/bookmark.css +20 -0
- package/theme/ckeditor5-ui/components/menubar/menubarmenubutton.css +6 -0
- package/theme/index.css +1 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-theme-lark",
|
3
|
-
"version": "
|
3
|
+
"version": "44.0.0-alpha.0",
|
4
4
|
"description": "A bright theme for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -9,7 +9,7 @@
|
|
9
9
|
"ckeditor5-theme"
|
10
10
|
],
|
11
11
|
"dependencies": {
|
12
|
-
"@ckeditor/ckeditor5-ui": "
|
12
|
+
"@ckeditor/ckeditor5-ui": "44.0.0-alpha.0"
|
13
13
|
},
|
14
14
|
"author": "CKSource (http://cksource.com/)",
|
15
15
|
"license": "GPL-2.0-or-later",
|
@@ -0,0 +1,20 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/*
|
7
|
+
* Classes used by the "fake visual selection" displayed in the content when an input
|
8
|
+
* in the bookmark UI has focus (the browser does not render the native selection in this state).
|
9
|
+
*/
|
10
|
+
.ck .ck-fake-bookmark-selection {
|
11
|
+
background: var(--ck-color-link-fake-selection);
|
12
|
+
}
|
13
|
+
|
14
|
+
/* A collapsed fake visual selection. */
|
15
|
+
.ck .ck-fake-bookmark-selection_collapsed {
|
16
|
+
height: 100%;
|
17
|
+
border-right: 1px solid var(--ck-color-base-text);
|
18
|
+
margin-right: -1px;
|
19
|
+
outline: solid 1px hsla(0, 0%, 100%, .5);
|
20
|
+
}
|
@@ -47,6 +47,12 @@
|
|
47
47
|
& .ck-button__label {
|
48
48
|
width: unset;
|
49
49
|
line-height: unset;
|
50
|
+
|
51
|
+
/*
|
52
|
+
* Top-level buttons don't use ellipsis and overflow: hidden clips descenders.
|
53
|
+
* See https://github.com/ckeditor/ckeditor5/issues/17422.
|
54
|
+
*/
|
55
|
+
overflow: visible;
|
50
56
|
}
|
51
57
|
|
52
58
|
&.ck-on {
|
package/theme/index.css
CHANGED
@@ -55,6 +55,7 @@
|
|
55
55
|
@import "./ckeditor5-editor-classic/classiceditor.css";
|
56
56
|
|
57
57
|
/* Plugins */
|
58
|
+
@import "./ckeditor5-bookmark/bookmark.css";
|
58
59
|
@import "./ckeditor5-clipboard/clipboard.css";
|
59
60
|
@import "./ckeditor5-code-block/codeblock.css";
|
60
61
|
@import "./ckeditor5-engine/placeholder.css";
|