@ckeditor/ckeditor5-theme-lark 45.1.0-alpha.7 → 45.2.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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-theme-lark",
|
3
|
-
"version": "45.
|
3
|
+
"version": "45.2.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": "45.
|
12
|
+
"@ckeditor/ckeditor5-ui": "45.2.0-alpha.0"
|
13
13
|
},
|
14
14
|
"author": "CKSource (http://cksource.com/)",
|
15
15
|
"license": "SEE LICENSE IN LICENSE.md",
|
@@ -5,9 +5,16 @@
|
|
5
5
|
|
6
6
|
:root {
|
7
7
|
--ck-color-selector-focused-cell-background: hsla(212, 90%, 80%, .3);
|
8
|
+
--ck-table-content-default-border-color: hsl(0, 0%, 83%);
|
8
9
|
}
|
9
10
|
|
10
11
|
.ck-widget.table {
|
12
|
+
/* Dashed outline for table without any border. */
|
13
|
+
& table[style*="border:none"],
|
14
|
+
& table[style*="border-style:none"] {
|
15
|
+
outline: var(--ck-table-content-default-border-color) 1px dashed;
|
16
|
+
}
|
17
|
+
|
11
18
|
& td,
|
12
19
|
& th {
|
13
20
|
/**
|
@@ -16,12 +23,18 @@
|
|
16
23
|
* So do not use `@mixin ck-focus-ring;` here, or any other border styles.
|
17
24
|
* See more: https://github.com/ckeditor/ckeditor5/issues/16979
|
18
25
|
*/
|
19
|
-
&.ck-editor__nested-editable
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
26
|
+
&.ck-editor__nested-editable {
|
27
|
+
outline: unset;
|
28
|
+
|
29
|
+
&:not(.ck-editor__editable_selected) {
|
30
|
+
&.ck-editor__nested-editable_focused,
|
31
|
+
&:focus {
|
32
|
+
/* A very slight background to highlight the focused cell */
|
33
|
+
background: var(--ck-color-selector-focused-cell-background);
|
34
|
+
outline: 1px solid var(--ck-color-focus-border);
|
35
|
+
outline-offset: -1px; /* progressive enhancement - no IE support */
|
36
|
+
}
|
37
|
+
}
|
25
38
|
}
|
26
39
|
}
|
27
40
|
}
|