@ckeditor/ckeditor5-clipboard 48.3.1 → 48.4.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/dist/dragdrop.d.ts +0 -1
- package/dist/index-content.css +3 -0
- package/dist/index-content.css.map +1 -0
- package/dist/index-editor.css +63 -61
- package/dist/index-editor.css.map +1 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/dragdrop.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ import { Widget } from "@ckeditor/ckeditor5-widget";
|
|
|
10
10
|
import { ClipboardPipeline } from "./clipboardpipeline.js";
|
|
11
11
|
import { DragDropTarget } from "./dragdroptarget.js";
|
|
12
12
|
import { DragDropBlockToolbar } from "./dragdropblocktoolbar.js";
|
|
13
|
-
import "../theme/clipboard.css";
|
|
14
13
|
/**
|
|
15
14
|
* The drag and drop feature. It works on top of the {@link module:clipboard/clipboardpipeline~ClipboardPipeline}.
|
|
16
15
|
*
|
package/dist/index-content.css
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index-content.css"],"names":[],"mappings":";;;;;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index-content.css.map","sourcesContent":["\n\n/*# sourceMappingURL=index-content.css.map */"]}
|
package/dist/index-editor.css
CHANGED
|
@@ -2,88 +2,90 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
|
-
:root{
|
|
6
|
-
--ck-clipboard-drop-target-dot-width:12px;
|
|
7
|
-
--ck-clipboard-drop-target-dot-height:8px;
|
|
8
|
-
--ck-clipboard-drop-target-color:var(--ck-color-focus-border);
|
|
5
|
+
:root {
|
|
6
|
+
--ck-clipboard-drop-target-dot-width: 12px;
|
|
7
|
+
--ck-clipboard-drop-target-dot-height: 8px;
|
|
8
|
+
--ck-clipboard-drop-target-color: var(--ck-color-focus-border);
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span{
|
|
12
|
-
bottom:calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
|
|
13
|
-
top:calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
|
|
14
|
-
border:1px solid var(--ck-clipboard-drop-target-color);
|
|
15
|
-
background:var(--ck-clipboard-drop-target-color);
|
|
16
|
-
margin-left
|
|
17
|
-
position:absolute;
|
|
11
|
+
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {
|
|
12
|
+
bottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
|
|
13
|
+
top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
|
|
14
|
+
border: 1px solid var(--ck-clipboard-drop-target-color);
|
|
15
|
+
background: var(--ck-clipboard-drop-target-color);
|
|
16
|
+
margin-left: -1px;
|
|
17
|
+
position: absolute;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span:after{
|
|
21
|
-
content:"";
|
|
22
|
-
width:0;
|
|
23
|
-
height:0;
|
|
24
|
-
left:50%;
|
|
25
|
-
top:calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
|
|
26
|
-
border-color:var(--ck-clipboard-drop-target-color) transparent transparent transparent;
|
|
27
|
-
border-width:calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));
|
|
28
|
-
border-style:solid;
|
|
29
|
-
display:block;
|
|
30
|
-
position:absolute;
|
|
31
|
-
transform:translateX(-50%);
|
|
20
|
+
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span:after {
|
|
21
|
+
content: "";
|
|
22
|
+
width: 0;
|
|
23
|
+
height: 0;
|
|
24
|
+
left: 50%;
|
|
25
|
+
top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));
|
|
26
|
+
border-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;
|
|
27
|
+
border-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));
|
|
28
|
+
border-style: solid;
|
|
29
|
+
display: block;
|
|
30
|
+
position: absolute;
|
|
31
|
+
transform: translateX(-50%);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span{
|
|
35
|
-
width:0;
|
|
34
|
+
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {
|
|
35
|
+
width: 0;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position{
|
|
39
|
-
pointer-events:none;
|
|
40
|
-
display:inline;
|
|
41
|
-
position:relative;
|
|
38
|
+
.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position {
|
|
39
|
+
pointer-events: none;
|
|
40
|
+
display: inline;
|
|
41
|
+
position: relative;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.ck.ck-editor__editable .ck-widget.ck-clipboard-drop-target-range{
|
|
45
|
-
outline:var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;
|
|
44
|
+
.ck.ck-editor__editable .ck-widget.ck-clipboard-drop-target-range {
|
|
45
|
+
outline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.ck.ck-editor__editable .ck-widget:-webkit-drag{
|
|
49
|
-
zoom
|
|
50
|
-
outline:none !important;
|
|
48
|
+
.ck.ck-editor__editable .ck-widget:-webkit-drag {
|
|
49
|
+
zoom: .6;
|
|
50
|
+
outline: none !important;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
.ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__selection-handle, .ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__type-around{
|
|
54
|
-
display:none;
|
|
53
|
+
.ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__selection-handle, .ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__type-around {
|
|
54
|
+
display: none;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
.ck.ck-clipboard-drop-target-line{
|
|
58
|
-
border:1px solid var(--ck-clipboard-drop-target-color);
|
|
59
|
-
background:var(--ck-clipboard-drop-target-color);
|
|
60
|
-
height:0;
|
|
61
|
-
z-index:var(--ck-z-default);
|
|
62
|
-
margin-top
|
|
63
|
-
position:absolute;
|
|
57
|
+
.ck.ck-clipboard-drop-target-line {
|
|
58
|
+
border: 1px solid var(--ck-clipboard-drop-target-color);
|
|
59
|
+
background: var(--ck-clipboard-drop-target-color);
|
|
60
|
+
height: 0;
|
|
61
|
+
z-index: var(--ck-z-default);
|
|
62
|
+
margin-top: -1px;
|
|
63
|
+
position: absolute;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.ck.ck-clipboard-drop-target-line:before{
|
|
67
|
-
content:"";
|
|
68
|
-
top:calc(-.5 * var(--ck-clipboard-drop-target-dot-width));
|
|
69
|
-
border-style:solid;
|
|
70
|
-
width:0;
|
|
71
|
-
height:0;
|
|
72
|
-
position:absolute;
|
|
66
|
+
.ck.ck-clipboard-drop-target-line:before {
|
|
67
|
+
content: "";
|
|
68
|
+
top: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));
|
|
69
|
+
border-style: solid;
|
|
70
|
+
width: 0;
|
|
71
|
+
height: 0;
|
|
72
|
+
position: absolute;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
.ck.ck-clipboard-drop-target-line{
|
|
76
|
-
pointer-events:none;
|
|
75
|
+
.ck.ck-clipboard-drop-target-line {
|
|
76
|
+
pointer-events: none;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
[dir="ltr"] .ck.ck-clipboard-drop-target-line:before{
|
|
80
|
-
border-width:calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);
|
|
81
|
-
border-color:transparent transparent transparent var(--ck-clipboard-drop-target-color);
|
|
82
|
-
left
|
|
79
|
+
[dir="ltr"] .ck.ck-clipboard-drop-target-line:before {
|
|
80
|
+
border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);
|
|
81
|
+
border-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);
|
|
82
|
+
left: -1px;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
[dir="rtl"] .ck.ck-clipboard-drop-target-line:before{
|
|
86
|
-
border-width:calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;
|
|
87
|
-
border-color:transparent var(--ck-clipboard-drop-target-color) transparent transparent;
|
|
88
|
-
right
|
|
89
|
-
}
|
|
85
|
+
[dir="rtl"] .ck.ck-clipboard-drop-target-line:before {
|
|
86
|
+
border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;
|
|
87
|
+
border-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;
|
|
88
|
+
right: -1px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/*# sourceMappingURL=index-editor.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../theme/clipboard.css","index-editor.css"],"names":[],"mappings":";;;;AAMA,CAAA,IAAA,CAAA;ACLA,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,IAAI;AAC5C,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG;AAC5C,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC;AAChE;;ADaE,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,QAAA,CAAA,IAAA,CAAA;ACVF,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;AAChE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;AAC7D,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;AACzD,CAAC,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;AACnD,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG;AACnB,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ;AACpB;;ADaG,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,QAAA,CAAA,IAAA,CAAA,KAAA,CAAA;ACVH,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;AACb,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC;AACX,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;AAC7D,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,WAAW,CAAC,WAAW;AACzF,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;AAC5K,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,KAAK;AACrB,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK;AAChB,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ;AACpB,CAAC,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC;AAC7B;;ADcS,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,QAAA,CAAA,IAAA,CAAA;ACXT,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AACV;;ADYU,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,QAAA,CAAA;ACTV,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI;AACtB,CAAC,CAAC,OAAO,CAAC,CAAC,MAAM;AACjB,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ;AACpB;;ADcC,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,MAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,KAAA,CAAA;ACXD,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS;AACpG;;ADiBC,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,MAAA,CAAA,CAAA,MAAA,CAAA,IAAA,CAAA;ACdD,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS;AAC1B;;ADuBE,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,MAAA,CAAA,CAAA,MAAA,CAAA,IAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,iBAAA,CAAA,MAAA,CAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,gBAAA,CAAA,CAAA,EAAA,CAAA,MAAA,CAAA,CAAA,MAAA,CAAA,IAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,YAAA,CAAA,MAAA,CAAA;ACpBF,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI;AACf;;ADoCA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,IAAA,CAAA;ACjCA,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;AACzD,CAAC,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;AACnD,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC;AAC9B,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG;AAClB,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ;AACpB;;ADmCC,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,IAAA,CAAA,MAAA,CAAA;AChCD,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;AACb,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;AAC5D,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,KAAK;AACrB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AACV,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AACX,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ;AACpB;;ADmCgB,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,IAAA,CAAA;AChChB,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI;AACtB;;ADkCA,CAAA,GAAA,CAAA,CAAA,GAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,IAAA,CAAA,MAAA,CAAA;AC/BA,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC;AACtK,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,WAAW,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;AACzF,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG;AACZ;;ADkCA,CAAA,GAAA,CAAA,CAAA,GAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,EAAA,CAAA,SAAA,CAAA,IAAA,CAAA,MAAA,CAAA,IAAA,CAAA,MAAA,CAAA;AC/BA,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACtK,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,WAAW;AACzF,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG;AACb;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index-editor.css.map","sourcesContent":["/*\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n\n:root {\n\t--ck-clipboard-drop-target-dot-width: 12px;\n\t--ck-clipboard-drop-target-dot-height: 8px;\n\t--ck-clipboard-drop-target-color: var(--ck-color-focus-border);\n}\n\n.ck.ck-editor__editable {\n\t/*\n\t * Vertical drop target (in text).\n\t */\n\t& .ck.ck-clipboard-drop-target-position {\n\t\t& span {\n\t\t\tbottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\t\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\t\t\tborder: 1px solid var(--ck-clipboard-drop-target-color);\n\t\t\tbackground: var(--ck-clipboard-drop-target-color);\n\t\t\tmargin-left: -1px;\n\t\t\tposition: absolute;\n\n\t\t\t/* The triangle above the marker */\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 50%;\n\t\t\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\n\t\t\t\ttransform: translateX(-50%);\n\t\t\t\tborder-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;\n\t\t\t\tborder-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));\n\t\t\t\tborder-style: solid;\n\t\t\t}\n\t\t\twidth: 0\n\t\t}\n\t\tdisplay: inline;\n\t\tposition: relative;\n\t\tpointer-events: none\n\t}\n\n\t/*\n\t * Styles of the widget that it a drop target.\n\t */\n\t& .ck-widget.ck-clipboard-drop-target-range {\n\t\toutline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important; /* eslint-disable-line css/no-important */\n\t}\n\n\t/*\n\t * Styles of the widget being dragged (its preview).\n\t */\n\t& .ck-widget:-webkit-drag {\n\t\t/*\n\t\t * `zoom` is not Baseline \"widely available\" solely because Firefox only added support in\n\t\t * version 126 (May 2024); Chrome and Safari have supported it for years. This rule is already\n\t\t * scoped behind `:-webkit-drag`, a non-standard, WebKit-only selector Firefox doesn't implement,\n\t\t * so Firefox never evaluates this rule regardless of `zoom` support. `transform: scale()` isn't\n\t\t * a safe swap here - unlike `zoom`, it doesn't resize the element's layout box, only its paint.\n\t\t */\n\t\t/* eslint-disable-next-line css/use-baseline */\n\t\tzoom: 0.6;\n\t\toutline: none !important; /* eslint-disable-line css/no-important */\n\t\t& > .ck-widget__selection-handle {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t& > .ck-widget__type-around {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t/*\n\t * Vertical drop target (in text).\n\t */\n\n\t/*\n\t * Styles of the widget being dragged (its preview).\n\t */\n}\n\n.ck.ck-clipboard-drop-target-line {\n\theight: 0;\n\tborder: 1px solid var(--ck-clipboard-drop-target-color);\n\tbackground: var(--ck-clipboard-drop-target-color);\n\tmargin-top: -1px;\n\tposition: absolute;\n\tz-index: var(--ck-z-default);\n\n\t&::before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));\n\t\twidth: 0;\n\t\theight: 0;\n\t\tborder-style: solid;\n\t}\n\n\tpointer-events: none\n}\n\n[dir=\"ltr\"] .ck.ck-clipboard-drop-target-line::before {\n\tleft: -1px;\n\tborder-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);\n\tborder-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);\n}\n\n[dir=\"rtl\"] .ck.ck-clipboard-drop-target-line::before {\n\tright: -1px;\n\tborder-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;\n\tborder-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;\n}\n",":root {\n --ck-clipboard-drop-target-dot-width: 12px;\n --ck-clipboard-drop-target-dot-height: 8px;\n --ck-clipboard-drop-target-color: var(--ck-color-focus-border);\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {\n bottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n border: 1px solid var(--ck-clipboard-drop-target-color);\n background: var(--ck-clipboard-drop-target-color);\n margin-left: -1px;\n position: absolute;\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span:after {\n content: \"\";\n width: 0;\n height: 0;\n left: 50%;\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n border-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;\n border-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));\n border-style: solid;\n display: block;\n position: absolute;\n transform: translateX(-50%);\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {\n width: 0;\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position {\n pointer-events: none;\n display: inline;\n position: relative;\n}\n\n.ck.ck-editor__editable .ck-widget.ck-clipboard-drop-target-range {\n outline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;\n}\n\n.ck.ck-editor__editable .ck-widget:-webkit-drag {\n zoom: .6;\n outline: none !important;\n}\n\n.ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__selection-handle, .ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__type-around {\n display: none;\n}\n\n.ck.ck-clipboard-drop-target-line {\n border: 1px solid var(--ck-clipboard-drop-target-color);\n background: var(--ck-clipboard-drop-target-color);\n height: 0;\n z-index: var(--ck-z-default);\n margin-top: -1px;\n position: absolute;\n}\n\n.ck.ck-clipboard-drop-target-line:before {\n content: \"\";\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));\n border-style: solid;\n width: 0;\n height: 0;\n position: absolute;\n}\n\n.ck.ck-clipboard-drop-target-line {\n pointer-events: none;\n}\n\n[dir=\"ltr\"] .ck.ck-clipboard-drop-target-line:before {\n border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);\n border-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);\n left: -1px;\n}\n\n[dir=\"rtl\"] .ck.ck-clipboard-drop-target-line:before {\n border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;\n border-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;\n right: -1px;\n}\n\n/*# sourceMappingURL=index-editor.css.map */"]}
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../theme/clipboard.css","index.css"],"names":[],"mappings":"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","file":"index.css.map","sourcesContent":["/*\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n\n:root {\n\t--ck-clipboard-drop-target-dot-width: 12px;\n\t--ck-clipboard-drop-target-dot-height: 8px;\n\t--ck-clipboard-drop-target-color: var(--ck-color-focus-border);\n}\n\n.ck.ck-editor__editable {\n\t/*\n\t * Vertical drop target (in text).\n\t */\n\t& .ck.ck-clipboard-drop-target-position {\n\t\t& span {\n\t\t\tbottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\t\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\t\t\tborder: 1px solid var(--ck-clipboard-drop-target-color);\n\t\t\tbackground: var(--ck-clipboard-drop-target-color);\n\t\t\tmargin-left: -1px;\n\t\t\tposition: absolute;\n\n\t\t\t/* The triangle above the marker */\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 50%;\n\t\t\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\n\t\t\t\ttransform: translateX(-50%);\n\t\t\t\tborder-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;\n\t\t\t\tborder-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));\n\t\t\t\tborder-style: solid;\n\t\t\t}\n\t\t\twidth: 0\n\t\t}\n\t\tdisplay: inline;\n\t\tposition: relative;\n\t\tpointer-events: none\n\t}\n\n\t/*\n\t * Styles of the widget that it a drop target.\n\t */\n\t& .ck-widget.ck-clipboard-drop-target-range {\n\t\toutline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;\n\t}\n\n\t/*\n\t * Styles of the widget being dragged (its preview).\n\t */\n\t& .ck-widget:-webkit-drag {\n\t\tzoom: 0.6;\n\t\toutline: none !important;\n\t\t& > .ck-widget__selection-handle {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t& > .ck-widget__type-around {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t/*\n\t * Vertical drop target (in text).\n\t */\n\n\t/*\n\t * Styles of the widget being dragged (its preview).\n\t */\n}\n\n.ck.ck-clipboard-drop-target-line {\n\theight: 0;\n\tborder: 1px solid var(--ck-clipboard-drop-target-color);\n\tbackground: var(--ck-clipboard-drop-target-color);\n\tmargin-top: -1px;\n\tposition: absolute;\n\tz-index: var(--ck-z-default);\n\n\t&::before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));\n\t\twidth: 0;\n\t\theight: 0;\n\t\tborder-style: solid;\n\t}\n\n\tpointer-events: none\n}\n\n[dir=\"ltr\"] .ck.ck-clipboard-drop-target-line::before {\n\tleft: -1px;\n\tborder-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);\n\tborder-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);\n}\n\n[dir=\"rtl\"] .ck.ck-clipboard-drop-target-line::before {\n\tright: -1px;\n\tborder-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;\n\tborder-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;\n}\n",":root {\n --ck-clipboard-drop-target-dot-width: 12px;\n --ck-clipboard-drop-target-dot-height: 8px;\n --ck-clipboard-drop-target-color: var(--ck-color-focus-border);\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {\n bottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n border: 1px solid var(--ck-clipboard-drop-target-color);\n background: var(--ck-clipboard-drop-target-color);\n margin-left: -1px;\n position: absolute;\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span:after {\n content: \"\";\n width: 0;\n height: 0;\n left: 50%;\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n border-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;\n border-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));\n border-style: solid;\n display: block;\n position: absolute;\n transform: translateX(-50%);\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {\n width: 0;\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position {\n pointer-events: none;\n display: inline;\n position: relative;\n}\n\n.ck.ck-editor__editable .ck-widget.ck-clipboard-drop-target-range {\n outline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;\n}\n\n.ck.ck-editor__editable .ck-widget:-webkit-drag {\n zoom: .6;\n outline: none !important;\n}\n\n.ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__selection-handle, .ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__type-around {\n display: none;\n}\n\n.ck.ck-clipboard-drop-target-line {\n border: 1px solid var(--ck-clipboard-drop-target-color);\n background: var(--ck-clipboard-drop-target-color);\n height: 0;\n z-index: var(--ck-z-default);\n margin-top: -1px;\n position: absolute;\n}\n\n.ck.ck-clipboard-drop-target-line:before {\n content: \"\";\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));\n border-style: solid;\n width: 0;\n height: 0;\n position: absolute;\n}\n\n.ck.ck-clipboard-drop-target-line {\n pointer-events: none;\n}\n\n[dir=\"ltr\"] .ck.ck-clipboard-drop-target-line:before {\n border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);\n border-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);\n left: -1px;\n}\n\n[dir=\"rtl\"] .ck.ck-clipboard-drop-target-line:before {\n border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;\n border-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;\n right: -1px;\n}\n\n/*# sourceMappingURL=index.css.map */"]}
|
|
1
|
+
{"version":3,"sources":["../theme/clipboard.css","index.css"],"names":[],"mappings":"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","file":"index.css.map","sourcesContent":["/*\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n\n:root {\n\t--ck-clipboard-drop-target-dot-width: 12px;\n\t--ck-clipboard-drop-target-dot-height: 8px;\n\t--ck-clipboard-drop-target-color: var(--ck-color-focus-border);\n}\n\n.ck.ck-editor__editable {\n\t/*\n\t * Vertical drop target (in text).\n\t */\n\t& .ck.ck-clipboard-drop-target-position {\n\t\t& span {\n\t\t\tbottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\t\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\t\t\tborder: 1px solid var(--ck-clipboard-drop-target-color);\n\t\t\tbackground: var(--ck-clipboard-drop-target-color);\n\t\t\tmargin-left: -1px;\n\t\t\tposition: absolute;\n\n\t\t\t/* The triangle above the marker */\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 50%;\n\t\t\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n\n\t\t\t\ttransform: translateX(-50%);\n\t\t\t\tborder-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;\n\t\t\t\tborder-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));\n\t\t\t\tborder-style: solid;\n\t\t\t}\n\t\t\twidth: 0\n\t\t}\n\t\tdisplay: inline;\n\t\tposition: relative;\n\t\tpointer-events: none\n\t}\n\n\t/*\n\t * Styles of the widget that it a drop target.\n\t */\n\t& .ck-widget.ck-clipboard-drop-target-range {\n\t\toutline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important; /* eslint-disable-line css/no-important */\n\t}\n\n\t/*\n\t * Styles of the widget being dragged (its preview).\n\t */\n\t& .ck-widget:-webkit-drag {\n\t\t/*\n\t\t * `zoom` is not Baseline \"widely available\" solely because Firefox only added support in\n\t\t * version 126 (May 2024); Chrome and Safari have supported it for years. This rule is already\n\t\t * scoped behind `:-webkit-drag`, a non-standard, WebKit-only selector Firefox doesn't implement,\n\t\t * so Firefox never evaluates this rule regardless of `zoom` support. `transform: scale()` isn't\n\t\t * a safe swap here - unlike `zoom`, it doesn't resize the element's layout box, only its paint.\n\t\t */\n\t\t/* eslint-disable-next-line css/use-baseline */\n\t\tzoom: 0.6;\n\t\toutline: none !important; /* eslint-disable-line css/no-important */\n\t\t& > .ck-widget__selection-handle {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t& > .ck-widget__type-around {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t/*\n\t * Vertical drop target (in text).\n\t */\n\n\t/*\n\t * Styles of the widget being dragged (its preview).\n\t */\n}\n\n.ck.ck-clipboard-drop-target-line {\n\theight: 0;\n\tborder: 1px solid var(--ck-clipboard-drop-target-color);\n\tbackground: var(--ck-clipboard-drop-target-color);\n\tmargin-top: -1px;\n\tposition: absolute;\n\tz-index: var(--ck-z-default);\n\n\t&::before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\ttop: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));\n\t\twidth: 0;\n\t\theight: 0;\n\t\tborder-style: solid;\n\t}\n\n\tpointer-events: none\n}\n\n[dir=\"ltr\"] .ck.ck-clipboard-drop-target-line::before {\n\tleft: -1px;\n\tborder-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);\n\tborder-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);\n}\n\n[dir=\"rtl\"] .ck.ck-clipboard-drop-target-line::before {\n\tright: -1px;\n\tborder-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;\n\tborder-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;\n}\n",":root {\n --ck-clipboard-drop-target-dot-width: 12px;\n --ck-clipboard-drop-target-dot-height: 8px;\n --ck-clipboard-drop-target-color: var(--ck-color-focus-border);\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {\n bottom: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n border: 1px solid var(--ck-clipboard-drop-target-color);\n background: var(--ck-clipboard-drop-target-color);\n margin-left: -1px;\n position: absolute;\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span:after {\n content: \"\";\n width: 0;\n height: 0;\n left: 50%;\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-height));\n border-color: var(--ck-clipboard-drop-target-color) transparent transparent transparent;\n border-width: calc(var(--ck-clipboard-drop-target-dot-height)) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width));\n border-style: solid;\n display: block;\n position: absolute;\n transform: translateX(-50%);\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position span {\n width: 0;\n}\n\n.ck.ck-editor__editable .ck.ck-clipboard-drop-target-position {\n pointer-events: none;\n display: inline;\n position: relative;\n}\n\n.ck.ck-editor__editable .ck-widget.ck-clipboard-drop-target-range {\n outline: var(--ck-widget-outline-thickness) solid var(--ck-clipboard-drop-target-color) !important;\n}\n\n.ck.ck-editor__editable .ck-widget:-webkit-drag {\n zoom: .6;\n outline: none !important;\n}\n\n.ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__selection-handle, .ck.ck-editor__editable .ck-widget:-webkit-drag > .ck-widget__type-around {\n display: none;\n}\n\n.ck.ck-clipboard-drop-target-line {\n border: 1px solid var(--ck-clipboard-drop-target-color);\n background: var(--ck-clipboard-drop-target-color);\n height: 0;\n z-index: var(--ck-z-default);\n margin-top: -1px;\n position: absolute;\n}\n\n.ck.ck-clipboard-drop-target-line:before {\n content: \"\";\n top: calc(-.5 * var(--ck-clipboard-drop-target-dot-width));\n border-style: solid;\n width: 0;\n height: 0;\n position: absolute;\n}\n\n.ck.ck-clipboard-drop-target-line {\n pointer-events: none;\n}\n\n[dir=\"ltr\"] .ck.ck-clipboard-drop-target-line:before {\n border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0 calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height);\n border-color: transparent transparent transparent var(--ck-clipboard-drop-target-color);\n left: -1px;\n}\n\n[dir=\"rtl\"] .ck.ck-clipboard-drop-target-line:before {\n border-width: calc(.5 * var(--ck-clipboard-drop-target-dot-width)) var(--ck-clipboard-drop-target-dot-height) calc(.5 * var(--ck-clipboard-drop-target-dot-width)) 0;\n border-color: transparent var(--ck-clipboard-drop-target-color) transparent transparent;\n right: -1px;\n}\n\n/*# sourceMappingURL=index.css.map */"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -20,4 +20,6 @@ export { DragDropBlockToolbar as _DragDropBlockToolbar } from "./dragdropblockto
|
|
|
20
20
|
export { DragDropTarget as _DragDropTarget } from "./dragdroptarget.js";
|
|
21
21
|
export { LineView as _ClipboardLineView } from "./lineview.js";
|
|
22
22
|
export { normalizeClipboardData as _normalizeClipboardData } from "./utils/normalizeclipboarddata.js";
|
|
23
|
+
import "../theme/index-editor.css";
|
|
24
|
+
import "../theme/index-content.css";
|
|
23
25
|
import "./augmentation.js";
|