fit-ui 2.5.4 → 2.6.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/Documentation.html +3 -3
- package/dist/Fit.UI.css +102 -6
- package/dist/Fit.UI.js +986 -132
- package/dist/Fit.UI.min.css +1 -1
- package/dist/Fit.UI.min.js +1 -1
- package/dist/Resources/CKEditor/CHANGES.md +107 -0
- package/dist/Resources/CKEditor/LICENSE.md +1 -0
- package/dist/Resources/CKEditor/build-config.js +7 -3
- package/dist/Resources/CKEditor/ckeditor.js +638 -538
- package/dist/Resources/CKEditor/contents.css +208 -208
- package/dist/Resources/CKEditor/index.html +8 -0
- package/dist/Resources/CKEditor/lang/da.js +2 -2
- package/dist/Resources/CKEditor/lang/de.js +2 -2
- package/dist/Resources/CKEditor/lang/en.js +2 -2
- package/dist/Resources/CKEditor/plugins/autocomplete/skins/default.css +38 -0
- package/dist/Resources/CKEditor/plugins/base64image/dialogs/base64image.js +38 -33
- package/dist/Resources/CKEditor/plugins/base64image/plugin.js +1 -1
- package/dist/Resources/CKEditor/plugins/emoji/assets/iconsall.png +0 -0
- package/dist/Resources/CKEditor/plugins/emoji/assets/iconsall.svg +58 -0
- package/dist/Resources/CKEditor/plugins/emoji/emoji.json +1 -0
- package/dist/Resources/CKEditor/plugins/emoji/skins/default.css +237 -0
- package/dist/Resources/CKEditor/plugins/icons.png +0 -0
- package/dist/Resources/CKEditor/plugins/icons_hidpi.png +0 -0
- package/dist/Resources/CKEditor/plugins/link/dialogs/anchor.js +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog.css +5 -5
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog_ie.css +5 -5
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog_ie8.css +5 -5
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog_iequirks.css +5 -5
- package/dist/Resources/CKEditor/skins/moono-lisa/editor.css +1 -1
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_gecko.css +1 -1
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_ie.css +1 -1
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_ie8.css +1 -1
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_iequirks.css +1 -1
- package/dist/Resources/CKEditor/skins/moono-lisa/icons.png +0 -0
- package/dist/Resources/CKEditor/skins/moono-lisa/icons_hidpi.png +0 -0
- package/dist/Resources/CKEditor/styles.js +137 -137
- package/package.json +1 -1
- package/types/index.d.ts +417 -38
- package/dist/Resources/CKEditor/plugins/resize/plugin.js +0 -187
|
@@ -1,208 +1,208 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
3
|
-
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
body
|
|
7
|
-
{
|
|
8
|
-
/* Font */
|
|
9
|
-
/* Emoji fonts are added to visualise them nicely in Internet Explorer. */
|
|
10
|
-
font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
11
|
-
font-size: 12px;
|
|
12
|
-
|
|
13
|
-
/* Text color */
|
|
14
|
-
color: #333;
|
|
15
|
-
|
|
16
|
-
/* Remove the background color to make it transparent. */
|
|
17
|
-
background-color: #fff;
|
|
18
|
-
|
|
19
|
-
margin: 20px;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.cke_editable
|
|
23
|
-
{
|
|
24
|
-
font-size: 13px;
|
|
25
|
-
line-height: 1.6;
|
|
26
|
-
|
|
27
|
-
/* Fix for missing scrollbars with RTL texts. (#10488) */
|
|
28
|
-
word-wrap: break-word;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
blockquote
|
|
32
|
-
{
|
|
33
|
-
font-style: italic;
|
|
34
|
-
font-family: Georgia, Times, "Times New Roman", serif;
|
|
35
|
-
padding: 2px 0;
|
|
36
|
-
border-style: solid;
|
|
37
|
-
border-color: #ccc;
|
|
38
|
-
border-width: 0;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.cke_contents_ltr blockquote
|
|
42
|
-
{
|
|
43
|
-
padding-left: 20px;
|
|
44
|
-
padding-right: 8px;
|
|
45
|
-
border-left-width: 5px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.cke_contents_rtl blockquote
|
|
49
|
-
{
|
|
50
|
-
padding-left: 8px;
|
|
51
|
-
padding-right: 20px;
|
|
52
|
-
border-right-width: 5px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
a
|
|
56
|
-
{
|
|
57
|
-
color: #0782C1;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
ol,ul,dl
|
|
61
|
-
{
|
|
62
|
-
/* IE7: reset rtl list margin. (#7334) */
|
|
63
|
-
*margin-right: 0px;
|
|
64
|
-
/* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/
|
|
65
|
-
padding: 0 40px;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
h1,h2,h3,h4,h5,h6
|
|
69
|
-
{
|
|
70
|
-
font-weight: normal;
|
|
71
|
-
line-height: 1.2;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
hr
|
|
75
|
-
{
|
|
76
|
-
border: 0px;
|
|
77
|
-
border-top: 1px solid #ccc;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
img.right
|
|
81
|
-
{
|
|
82
|
-
border: 1px solid #ccc;
|
|
83
|
-
float: right;
|
|
84
|
-
margin-left: 15px;
|
|
85
|
-
padding: 5px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
img.left
|
|
89
|
-
{
|
|
90
|
-
border: 1px solid #ccc;
|
|
91
|
-
float: left;
|
|
92
|
-
margin-right: 15px;
|
|
93
|
-
padding: 5px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
pre
|
|
97
|
-
{
|
|
98
|
-
white-space: pre-wrap; /* CSS 2.1 */
|
|
99
|
-
word-wrap: break-word; /* IE7 */
|
|
100
|
-
-moz-tab-size: 4;
|
|
101
|
-
tab-size: 4;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.marker
|
|
105
|
-
{
|
|
106
|
-
background-color: Yellow;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
span[lang]
|
|
110
|
-
{
|
|
111
|
-
font-style: italic;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
figure
|
|
115
|
-
{
|
|
116
|
-
text-align: center;
|
|
117
|
-
outline: solid 1px #ccc;
|
|
118
|
-
background: rgba(0,0,0,0.05);
|
|
119
|
-
padding: 10px;
|
|
120
|
-
margin: 10px 20px;
|
|
121
|
-
display: inline-block;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
figure > figcaption
|
|
125
|
-
{
|
|
126
|
-
text-align: center;
|
|
127
|
-
display: block; /* For IE8 */
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
a > img {
|
|
131
|
-
padding: 1px;
|
|
132
|
-
margin: 1px;
|
|
133
|
-
border: none;
|
|
134
|
-
outline: 1px solid #0782C1;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
/* Widget Styles */
|
|
138
|
-
.code-featured
|
|
139
|
-
{
|
|
140
|
-
border: 5px solid red;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.math-featured
|
|
144
|
-
{
|
|
145
|
-
padding: 20px;
|
|
146
|
-
box-shadow: 0 0 2px rgba(200, 0, 0, 1);
|
|
147
|
-
background-color: rgba(255, 0, 0, 0.05);
|
|
148
|
-
margin: 10px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.image-clean
|
|
152
|
-
{
|
|
153
|
-
border: 0;
|
|
154
|
-
background: none;
|
|
155
|
-
padding: 0;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.image-clean > figcaption
|
|
159
|
-
{
|
|
160
|
-
font-size: .9em;
|
|
161
|
-
text-align: right;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.image-grayscale
|
|
165
|
-
{
|
|
166
|
-
background-color: white;
|
|
167
|
-
color: #666;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.image-grayscale img, img.image-grayscale
|
|
171
|
-
{
|
|
172
|
-
filter: grayscale(100%);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.embed-240p
|
|
176
|
-
{
|
|
177
|
-
max-width: 426px;
|
|
178
|
-
max-height: 240px;
|
|
179
|
-
margin:0 auto;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.embed-360p
|
|
183
|
-
{
|
|
184
|
-
max-width: 640px;
|
|
185
|
-
max-height: 360px;
|
|
186
|
-
margin:0 auto;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.embed-480p
|
|
190
|
-
{
|
|
191
|
-
max-width: 854px;
|
|
192
|
-
max-height: 480px;
|
|
193
|
-
margin:0 auto;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.embed-720p
|
|
197
|
-
{
|
|
198
|
-
max-width: 1280px;
|
|
199
|
-
max-height: 720px;
|
|
200
|
-
margin:0 auto;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.embed-1080p
|
|
204
|
-
{
|
|
205
|
-
max-width: 1920px;
|
|
206
|
-
max-height: 1080px;
|
|
207
|
-
margin:0 auto;
|
|
208
|
-
}
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
3
|
+
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
body
|
|
7
|
+
{
|
|
8
|
+
/* Font */
|
|
9
|
+
/* Emoji fonts are added to visualise them nicely in Internet Explorer. */
|
|
10
|
+
font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
|
|
13
|
+
/* Text color */
|
|
14
|
+
color: #333;
|
|
15
|
+
|
|
16
|
+
/* Remove the background color to make it transparent. */
|
|
17
|
+
background-color: #fff;
|
|
18
|
+
|
|
19
|
+
margin: 20px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.cke_editable
|
|
23
|
+
{
|
|
24
|
+
font-size: 13px;
|
|
25
|
+
line-height: 1.6;
|
|
26
|
+
|
|
27
|
+
/* Fix for missing scrollbars with RTL texts. (#10488) */
|
|
28
|
+
word-wrap: break-word;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
blockquote
|
|
32
|
+
{
|
|
33
|
+
font-style: italic;
|
|
34
|
+
font-family: Georgia, Times, "Times New Roman", serif;
|
|
35
|
+
padding: 2px 0;
|
|
36
|
+
border-style: solid;
|
|
37
|
+
border-color: #ccc;
|
|
38
|
+
border-width: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.cke_contents_ltr blockquote
|
|
42
|
+
{
|
|
43
|
+
padding-left: 20px;
|
|
44
|
+
padding-right: 8px;
|
|
45
|
+
border-left-width: 5px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.cke_contents_rtl blockquote
|
|
49
|
+
{
|
|
50
|
+
padding-left: 8px;
|
|
51
|
+
padding-right: 20px;
|
|
52
|
+
border-right-width: 5px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
a
|
|
56
|
+
{
|
|
57
|
+
color: #0782C1;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
ol,ul,dl
|
|
61
|
+
{
|
|
62
|
+
/* IE7: reset rtl list margin. (#7334) */
|
|
63
|
+
*margin-right: 0px;
|
|
64
|
+
/* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/
|
|
65
|
+
padding: 0 40px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
h1,h2,h3,h4,h5,h6
|
|
69
|
+
{
|
|
70
|
+
font-weight: normal;
|
|
71
|
+
line-height: 1.2;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
hr
|
|
75
|
+
{
|
|
76
|
+
border: 0px;
|
|
77
|
+
border-top: 1px solid #ccc;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
img.right
|
|
81
|
+
{
|
|
82
|
+
border: 1px solid #ccc;
|
|
83
|
+
float: right;
|
|
84
|
+
margin-left: 15px;
|
|
85
|
+
padding: 5px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
img.left
|
|
89
|
+
{
|
|
90
|
+
border: 1px solid #ccc;
|
|
91
|
+
float: left;
|
|
92
|
+
margin-right: 15px;
|
|
93
|
+
padding: 5px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
pre
|
|
97
|
+
{
|
|
98
|
+
white-space: pre-wrap; /* CSS 2.1 */
|
|
99
|
+
word-wrap: break-word; /* IE7 */
|
|
100
|
+
-moz-tab-size: 4;
|
|
101
|
+
tab-size: 4;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.marker
|
|
105
|
+
{
|
|
106
|
+
background-color: Yellow;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
span[lang]
|
|
110
|
+
{
|
|
111
|
+
font-style: italic;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
figure
|
|
115
|
+
{
|
|
116
|
+
text-align: center;
|
|
117
|
+
outline: solid 1px #ccc;
|
|
118
|
+
background: rgba(0,0,0,0.05);
|
|
119
|
+
padding: 10px;
|
|
120
|
+
margin: 10px 20px;
|
|
121
|
+
display: inline-block;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
figure > figcaption
|
|
125
|
+
{
|
|
126
|
+
text-align: center;
|
|
127
|
+
display: block; /* For IE8 */
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
a > img {
|
|
131
|
+
padding: 1px;
|
|
132
|
+
margin: 1px;
|
|
133
|
+
border: none;
|
|
134
|
+
outline: 1px solid #0782C1;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* Widget Styles */
|
|
138
|
+
.code-featured
|
|
139
|
+
{
|
|
140
|
+
border: 5px solid red;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.math-featured
|
|
144
|
+
{
|
|
145
|
+
padding: 20px;
|
|
146
|
+
box-shadow: 0 0 2px rgba(200, 0, 0, 1);
|
|
147
|
+
background-color: rgba(255, 0, 0, 0.05);
|
|
148
|
+
margin: 10px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.image-clean
|
|
152
|
+
{
|
|
153
|
+
border: 0;
|
|
154
|
+
background: none;
|
|
155
|
+
padding: 0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.image-clean > figcaption
|
|
159
|
+
{
|
|
160
|
+
font-size: .9em;
|
|
161
|
+
text-align: right;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.image-grayscale
|
|
165
|
+
{
|
|
166
|
+
background-color: white;
|
|
167
|
+
color: #666;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.image-grayscale img, img.image-grayscale
|
|
171
|
+
{
|
|
172
|
+
filter: grayscale(100%);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.embed-240p
|
|
176
|
+
{
|
|
177
|
+
max-width: 426px;
|
|
178
|
+
max-height: 240px;
|
|
179
|
+
margin:0 auto;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.embed-360p
|
|
183
|
+
{
|
|
184
|
+
max-width: 640px;
|
|
185
|
+
max-height: 360px;
|
|
186
|
+
margin:0 auto;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.embed-480p
|
|
190
|
+
{
|
|
191
|
+
max-width: 854px;
|
|
192
|
+
max-height: 480px;
|
|
193
|
+
margin:0 auto;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.embed-720p
|
|
197
|
+
{
|
|
198
|
+
max-width: 1280px;
|
|
199
|
+
max-height: 720px;
|
|
200
|
+
margin:0 auto;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.embed-1080p
|
|
204
|
+
{
|
|
205
|
+
max-width: 1920px;
|
|
206
|
+
max-height: 1080px;
|
|
207
|
+
margin:0 auto;
|
|
208
|
+
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<html>
|
|
4
4
|
<head>
|
|
5
5
|
<script type="text/javascript" src="ckeditor.js"></script>
|
|
6
|
+
<!--script type="text/javascript" src="https://cdn.ckeditor.com/4.17.1/standard/ckeditor.js"></script-->
|
|
6
7
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
7
8
|
<title>CKEditor demo</title>
|
|
8
9
|
</head>
|
|
@@ -19,6 +20,13 @@
|
|
|
19
20
|
<textarea id="editor1"></textarea>
|
|
20
21
|
|
|
21
22
|
<script>
|
|
23
|
+
CKEDITOR.on("instanceReady", function(ev) {
|
|
24
|
+
debugger;
|
|
25
|
+
// Do not produce XHTML like self-closing tags, use standard HTML instead
|
|
26
|
+
// https://ckeditor.com/docs/ckeditor4/latest/features/output_format.html
|
|
27
|
+
ev.editor.dataProcessor.writer.selfClosingEnd = ">";
|
|
28
|
+
});
|
|
29
|
+
|
|
22
30
|
CKEDITOR.replace("editor1", {
|
|
23
31
|
extraPlugins: "base64imagepaste, dragresize"
|
|
24
32
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2022, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.md or https://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
|
-
CKEDITOR.lang['da']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Tryk ALT 0 for hjælp","browseServer":"Gennemse...","url":"URL","protocol":"Protokol","upload":"Upload","uploadSubmit":"Upload","image":"Indsæt billede","
|
|
5
|
+
CKEDITOR.lang['da']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Tryk ALT 0 for hjælp","browseServer":"Gennemse...","url":"URL","protocol":"Protokol","upload":"Upload","uploadSubmit":"Upload","image":"Indsæt billede","form":"Indsæt formular","checkbox":"Indsæt afkrydsningsfelt","radio":"Indsæt alternativknap","textField":"Indsæt tekstfelt","textarea":"Indsæt tekstboks","hiddenField":"Indsæt skjult felt","button":"Indsæt knap","select":"Indsæt liste","imageButton":"Indsæt billedknap","notSet":"<intet valgt>","id":"Id","name":"Navn","langDir":"Tekstretning","langDirLtr":"Fra venstre mod højre (LTR)","langDirRtl":"Fra højre mod venstre (RTL)","langCode":"Sprogkode","longDescr":"Udvidet beskrivelse","cssClass":"Typografiark (CSS)","advisoryTitle":"Titel","cssStyle":"Typografi (CSS)","ok":"OK","cancel":"Annullér","close":"Luk","preview":"Forhåndsvisning","resize":"Træk for at skalere","generalTab":"Generelt","advancedTab":"Avanceret","validateNumberFailed":"Værdien er ikke et tal.","confirmNewPage":"Alt indhold, der ikke er blevet gemt, vil gå tabt. Er du sikker på, at du vil indlæse en ny side?","confirmCancel":"Nogle af indstillingerne er blevet ændret. Er du sikker på, at du vil lukke vinduet?","options":"Vis muligheder","target":"Mål","targetNew":"Nyt vindue (_blank)","targetTop":"Øverste vindue (_top)","targetSelf":"Samme vindue (_self)","targetParent":"Samme vindue (_parent)","langDirLTR":"Venstre til højre (LTR)","langDirRTL":"Højre til venstre (RTL)","styles":"Style","cssClasses":"Stylesheetklasser","width":"Bredde","height":"Højde","align":"Justering","left":"Venstre","right":"Højre","center":"Center","justify":"Lige margener","alignLeft":"Venstrestillet","alignRight":"Højrestillet","alignCenter":"Centreret","alignTop":"Øverst","alignMiddle":"Centreret","alignBottom":"Nederst","alignNone":"Ingen","invalidValue":"Ugyldig værdi.","invalidHeight":"Højde skal være et tal.","invalidWidth":"Bredde skal være et tal.","invalidLength":"Værdien angivet for feltet \"%1\" skal være et positivt heltal med eller uden en gyldig måleenhed (%2).","invalidCssLength":"Værdien specificeret for \"%1\" feltet skal være et positivt nummer med eller uden en CSS måleenhed (px, %, in, cm, mm, em, ex, pt, eller pc).","invalidHtmlLength":"Værdien specificeret for \"%1\" feltet skal være et positivt nummer med eller uden en CSS måleenhed (px eller %).","invalidInlineStyle":"Værdien specificeret for inline style skal indeholde en eller flere elementer med et format som \"name:value\", separeret af semikoloner","cssLengthTooltip":"Indsæt en numerisk værdi i pixel eller nummer med en gyldig CSS værdi (px, %, in, cm, mm, em, ex, pt, eller pc).","unavailable":"%1<span class=\"cke_accessibility\">, ikke tilgængelig</span>","keyboard":{"8":"Backspace","13":"Retur","16":"Shift","17":"Ctrl","18":"Alt","32":"Mellemrum","35":"Slut","36":"Hjem","46":"Slet","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Kommando"},"keyboardShortcut":"Tastatur genvej","optionDefault":"Standard"},"basicstyles":{"bold":"Fed","italic":"Kursiv","strike":"Gennemstreget","subscript":"Sænket skrift","superscript":"Hævet skrift","underline":"Understreget"},"notification":{"closed":"Notifikation lukket."},"toolbar":{"toolbarCollapse":"Sammenklap værktøjslinje","toolbarExpand":"Udvid værktøjslinje","toolbarGroups":{"document":"Dokument","clipboard":"Udklipsholder/Fortryd","editing":"Redigering","forms":"Formularer","basicstyles":"Basis styles","paragraph":"Paragraf","links":"Links","insert":"Indsæt","styles":"Typografier","colors":"Farver","tools":"Værktøjer"},"toolbars":"Editors værktøjslinjer"},"clipboard":{"copy":"Kopiér","copyError":"Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen. Brug i stedet tastaturet til at kopiere teksten (Ctrl/Cmd+C).","cut":"Klip","cutError":"Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen. Brug i stedet tastaturet til at klippe teksten (Ctrl/Cmd+X).","paste":"Indsæt","pasteNotification":"Tryk %1 for at sætte ind. Din browser understøtter ikke indsættelse med værktøjslinje knappen eller kontekst menuen.","pasteArea":"Indsættelses område","pasteMsg":"Indsæt dit indhold i området nedenfor og tryk OK.","fileFormatNotSupportedNotification":"This file format is not supported. You can try with one of the supported formats: ${formats}."},"indent":{"indent":"Forøg indrykning","outdent":"Formindsk indrykning"},"fakeobjects":{"anchor":"Anker","hiddenfield":"Skjult felt","iframe":"Iframe","unknown":"Ukendt objekt"},"link":{"acccessKey":"Genvejstast","advanced":"Avanceret","advisoryContentType":"Indholdstype","advisoryTitle":"Titel","anchor":{"toolbar":"Indsæt/redigér bogmærke","menu":"Egenskaber for bogmærke","title":"Egenskaber for bogmærke","name":"Bogmærkenavn","errorName":"Indtast bogmærkenavn","remove":"Fjern bogmærke"},"anchorId":"Efter element-Id","anchorName":"Efter ankernavn","charset":"Tegnsæt","cssClasses":"Typografiark","download":"Tving Download","displayText":"Vis tekst","emailAddress":"E-mailadresse","emailBody":"Besked","emailSubject":"Emne","id":"Id","info":"Generelt","langCode":"Tekstretning","langDir":"Tekstretning","langDirLTR":"Fra venstre mod højre (LTR)","langDirRTL":"Fra højre mod venstre (RTL)","menu":"Redigér hyperlink","name":"Navn","noAnchors":"(Ingen bogmærker i dokumentet)","noEmail":"Indtast e-mailadresse!","noUrl":"Indtast hyperlink-URL!","noTel":"Indtast venligst et telefonnummer","other":"<anden>","phoneNumber":"Telefonnummer","popupDependent":"Koblet/dependent (Netscape)","popupFeatures":"Egenskaber for popup","popupFullScreen":"Fuld skærm (IE)","popupLeft":"Position fra venstre","popupLocationBar":"Adresselinje","popupMenuBar":"Menulinje","popupResizable":"Justérbar","popupScrollBars":"Scrollbar","popupStatusBar":"Statuslinje","popupToolbar":"Værktøjslinje","popupTop":"Position fra toppen","rel":"Relation","selectAnchor":"Vælg et anker","styles":"Typografi","tabIndex":"Tabulatorindeks","target":"Mål","targetFrame":"<ramme>","targetFrameName":"Destinationsvinduets navn","targetPopup":"<popup vindue>","targetPopupName":"Popupvinduets navn","title":"Egenskaber for hyperlink","toAnchor":"Bogmærke på denne side","toEmail":"E-mail","toUrl":"URL","toPhone":"Telefon","toolbar":"Indsæt/redigér hyperlink","type":"Type","unlink":"Fjern hyperlink","upload":"Upload"},"list":{"bulletedlist":"Punktopstilling","numberedlist":"Talopstilling"},"pastefromword":{"confirmCleanup":"Den tekst du forsøger at indsætte ser ud til at komme fra Word. Vil du rense teksten før den indsættes?","error":"Det var ikke muligt at fjerne formatteringen på den indsatte tekst grundet en intern fejl","title":"Indsæt fra Word","toolbar":"Indsæt fra Word"},"undo":{"redo":"Annullér fortryd","undo":"Fortryd"},"emoji":{"searchPlaceholder":"Søg smileys...","searchLabel":"Input field responsible for searching and filtering emoji inside panel.","navigationLabel":"Groups navigation for emoji sections.","title":"Emoji List","groups":{"people":"People","nature":"Nature and animals","food":"Food and drinks","travel":"Travel and places","activities":"Activities","objects":"Objects","symbols":"Symbols","flags":"Flags"}}};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2022, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.md or https://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
|
-
CKEDITOR.lang['de']={"editor":"WYSIWYG-Editor","editorPanel":"WYSIWYG-Editor-Leiste","common":{"editorHelp":"Drücken Sie ALT 0 für Hilfe","browseServer":"Server durchsuchen","url":"URL","protocol":"Protokoll","upload":"Hochladen","uploadSubmit":"Zum Server senden","image":"Bild","
|
|
5
|
+
CKEDITOR.lang['de']={"editor":"WYSIWYG-Editor","editorPanel":"WYSIWYG-Editor-Leiste","common":{"editorHelp":"Drücken Sie ALT 0 für Hilfe","browseServer":"Server durchsuchen","url":"URL","protocol":"Protokoll","upload":"Hochladen","uploadSubmit":"Zum Server senden","image":"Bild","form":"Formular","checkbox":"Kontrollbox","radio":"Optionsfeld","textField":"Textfeld","textarea":"Textfeld","hiddenField":"Verstecktes Feld","button":"Schaltfläche","select":"Auswahlfeld","imageButton":"Bildschaltfläche","notSet":"<nicht festgelegt>","id":"Kennung","name":"Name","langDir":"Schreibrichtung","langDirLtr":"Links nach Rechts (LTR)","langDirRtl":"Rechts nach Links (RTL)","langCode":"Sprachcode","longDescr":"Langbeschreibungs-URL","cssClass":"Formatvorlagenklassen","advisoryTitle":"Titel Beschreibung","cssStyle":"Stil","ok":"OK","cancel":"Abbrechen","close":"Schließen","preview":"Vorschau","resize":"Größe ändern","generalTab":"Allgemein","advancedTab":"Erweitert","validateNumberFailed":"Dieser Wert ist keine Nummer.","confirmNewPage":"Alle nicht gespeicherten Änderungen gehen verloren. Sind Sie sicher, die neue Seite zu laden?","confirmCancel":"Einige Optionen wurden geändert. Wollen Sie den Dialog dennoch schließen?","options":"Optionen","target":"Zielseite","targetNew":"Neues Fenster (_blank)","targetTop":"Oberstes Fenster (_top)","targetSelf":"Gleiches Fenster (_self)","targetParent":"Oberes Fenster (_parent)","langDirLTR":"Links nach Rechts (LNR)","langDirRTL":"Rechts nach Links (RNL)","styles":"Style","cssClasses":"Stylesheet Klasse","width":"Breite","height":"Höhe","align":"Ausrichtung","left":"Links","right":"Rechts","center":"Zentriert","justify":"Blocksatz","alignLeft":"Linksbündig","alignRight":"Rechtsbündig","alignCenter":"Zentriert","alignTop":"Oben","alignMiddle":"Mitte","alignBottom":"Unten","alignNone":"Keine","invalidValue":"Ungültiger Wert.","invalidHeight":"Höhe muss eine Zahl sein.","invalidWidth":"Breite muss eine Zahl sein.","invalidLength":"Der für das Feld \"%1\" angegebene Wert muss eine positive Zahl mit oder ohne gültige Maßeinheit (%2) sein. ","invalidCssLength":"Wert spezifiziert für \"%1\" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).","invalidHtmlLength":"Wert spezifiziert für \"%1\" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte HTML Messeinheit (px oder %).","invalidInlineStyle":"Wert spezifiziert für inline Stilart muss enthalten ein oder mehr Tupels mit dem Format \"Name : Wert\" getrennt mit Semikolons.","cssLengthTooltip":"Gebe eine Zahl ein für ein Wert in pixels oder eine Zahl mit einer korrekten CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).","unavailable":"%1<span class=\"cke_accessibility\">, nicht verfügbar</span>","keyboard":{"8":"Rücktaste","13":"Eingabe","16":"Umschalt","17":"Strg","18":"Alt","32":"Leer","35":"Ende","36":"Pos1","46":"Entfernen","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Befehl"},"keyboardShortcut":"Tastaturkürzel","optionDefault":"Standard"},"basicstyles":{"bold":"Fett","italic":"Kursiv","strike":"Durchgestrichen","subscript":"Tiefgestellt","superscript":"Hochgestellt","underline":"Unterstrichen"},"notification":{"closed":"Benachrichtigung geschlossen."},"toolbar":{"toolbarCollapse":"Werkzeugleiste einklappen","toolbarExpand":"Werkzeugleiste ausklappen","toolbarGroups":{"document":"Dokument","clipboard":"Zwischenablage/Rückgängig","editing":"Editieren","forms":"Formulare","basicstyles":"Grundstile","paragraph":"Absatz","links":"Links","insert":"Einfügen","styles":"Stile","colors":"Farben","tools":"Werkzeuge"},"toolbars":"Editor Werkzeugleisten"},"clipboard":{"copy":"Kopieren","copyError":"Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch zu kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).","cut":"Ausschneiden","cutError":"Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).","paste":"Einfügen","pasteNotification":"Drücken Sie %1 zum Einfügen. Ihr Browser unterstützt nicht das Einfügen über den Knopf in der Toolbar oder dem Kontextmenü.","pasteArea":"Einfügebereich","pasteMsg":"Fügen Sie den Inhalt in den unteren Bereich ein und drücken Sie OK.","fileFormatNotSupportedNotification":"This file format is not supported. You can try with one of the supported formats: ${formats}."},"indent":{"indent":"Einzug vergrößern","outdent":"Einzug verkleinern"},"fakeobjects":{"anchor":"Anker","hiddenfield":"Verstecktes Feld","iframe":"IFrame","unknown":"Unbekanntes Objekt"},"link":{"acccessKey":"Zugriffstaste","advanced":"Erweitert","advisoryContentType":"Inhaltstyp","advisoryTitle":"Titel Beschreibung","anchor":{"toolbar":"Anker","menu":"Anker bearbeiten","title":"Ankereigenschaften","name":"Ankername","errorName":"Bitte geben Sie den Namen des Ankers ein","remove":"Anker entfernen"},"anchorId":"Nach Elementkennung","anchorName":"Nach Ankername","charset":"Verknüpfter Ressourcenzeichensatz","cssClasses":"Formatvorlagenklasse","download":"Herunterladen erzwingen","displayText":"Anzeigetext","emailAddress":"E-Mail-Adresse","emailBody":"Nachrichtentext","emailSubject":"Betreffzeile","id":"Kennung","info":"Linkinfo","langCode":"Sprachcode","langDir":"Schreibrichtung","langDirLTR":"Links nach Rechts (LTR)","langDirRTL":"Rechts nach Links (RTL)","menu":"Link bearbeiten","name":"Name","noAnchors":"(Keine Anker im Dokument vorhanden)","noEmail":"Bitte geben Sie E-Mail-Adresse an","noUrl":"Bitte geben Sie die Link-URL an","noTel":"Bitte geben Sie die Telefonnummer ein","other":"<andere>","phoneNumber":"Telefonnummer","popupDependent":"Abhängig (Netscape)","popupFeatures":"Pop-up Fenstereigenschaften","popupFullScreen":"Vollbild (IE)","popupLeft":"Linke Position","popupLocationBar":"Adressleiste","popupMenuBar":"Menüleiste","popupResizable":"Größe änderbar","popupScrollBars":"Rollbalken","popupStatusBar":"Statusleiste","popupToolbar":"Werkzeugleiste","popupTop":"Obere Position","rel":"Beziehung","selectAnchor":"Anker auswählen","styles":"Style","tabIndex":"Tab-Index","target":"Zielseite","targetFrame":"<Frame>","targetFrameName":"Ziel-Fenster-Name","targetPopup":"<Pop-up Fenster>","targetPopupName":"Pop-up Fenster-Name","title":"Link","toAnchor":"Anker in dieser Seite","toEmail":"E-Mail","toUrl":"URL","toPhone":"Telefon","toolbar":"Link einfügen/editieren","type":"Link-Typ","unlink":"Link entfernen","upload":"Hochladen"},"list":{"bulletedlist":"Liste","numberedlist":"Nummerierte Liste einfügen/entfernen"},"pastefromword":{"confirmCleanup":"Der Text, den Sie einfügen möchten, scheint aus MS-Word kopiert zu sein. Möchten Sie ihn zuvor bereinigen lassen?","error":"Aufgrund eines internen Fehlers war es nicht möglich die eingefügten Daten zu bereinigen","title":"Aus Word einfügen","toolbar":"Aus Word einfügen"},"undo":{"redo":"Wiederherstellen","undo":"Rückgängig"},"emoji":{"searchPlaceholder":"Emoji suchen…","searchLabel":"Input field responsible for searching and filtering emoji inside panel.","navigationLabel":"Groups navigation for emoji sections.","title":"Emoji-Liste","groups":{"people":"Personen","nature":"Natur und Tiere","food":"Essen und Getränke","travel":"Reisen und Orte","activities":"Aktivitäten","objects":"Objekte","symbols":"Symbole","flags":"Flaggen"}}};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2022, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.md or https://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
|
-
CKEDITOR.lang['en']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Press ALT 0 for help","browseServer":"Browse Server","url":"URL","protocol":"Protocol","upload":"Upload","uploadSubmit":"Send it to the Server","image":"Image","
|
|
5
|
+
CKEDITOR.lang['en']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Press ALT 0 for help","browseServer":"Browse Server","url":"URL","protocol":"Protocol","upload":"Upload","uploadSubmit":"Send it to the Server","image":"Image","form":"Form","checkbox":"Checkbox","radio":"Radio Button","textField":"Text Field","textarea":"Textarea","hiddenField":"Hidden Field","button":"Button","select":"Selection Field","imageButton":"Image Button","notSet":"<not set>","id":"Id","name":"Name","langDir":"Language Direction","langDirLtr":"Left to Right (LTR)","langDirRtl":"Right to Left (RTL)","langCode":"Language Code","longDescr":"Long Description URL","cssClass":"Stylesheet Classes","advisoryTitle":"Advisory Title","cssStyle":"Style","ok":"OK","cancel":"Cancel","close":"Close","preview":"Preview","resize":"Resize","generalTab":"General","advancedTab":"Advanced","validateNumberFailed":"This value is not a number.","confirmNewPage":"Any unsaved changes to this content will be lost. Are you sure you want to load new page?","confirmCancel":"You have changed some options. Are you sure you want to close the dialog window?","options":"Options","target":"Target","targetNew":"New Window (_blank)","targetTop":"Topmost Window (_top)","targetSelf":"Same Window (_self)","targetParent":"Parent Window (_parent)","langDirLTR":"Left to Right (LTR)","langDirRTL":"Right to Left (RTL)","styles":"Style","cssClasses":"Stylesheet Classes","width":"Width","height":"Height","align":"Alignment","left":"Left","right":"Right","center":"Center","justify":"Justify","alignLeft":"Align Left","alignRight":"Align Right","alignCenter":"Align Center","alignTop":"Top","alignMiddle":"Middle","alignBottom":"Bottom","alignNone":"None","invalidValue":"Invalid value.","invalidHeight":"Height must be a number.","invalidWidth":"Width must be a number.","invalidLength":"Value specified for the \"%1\" field must be a positive number with or without a valid measurement unit (%2).","invalidCssLength":"Value specified for the \"%1\" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).","invalidHtmlLength":"Value specified for the \"%1\" field must be a positive number with or without a valid HTML measurement unit (px or %).","invalidInlineStyle":"Value specified for the inline style must consist of one or more tuples with the format of \"name : value\", separated by semi-colons.","cssLengthTooltip":"Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).","unavailable":"%1<span class=\"cke_accessibility\">, unavailable</span>","keyboard":{"8":"Backspace","13":"Enter","16":"Shift","17":"Ctrl","18":"Alt","32":"Space","35":"End","36":"Home","46":"Delete","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Command"},"keyboardShortcut":"Keyboard shortcut","optionDefault":"Default"},"basicstyles":{"bold":"Bold","italic":"Italic","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"Underline"},"notification":{"closed":"Notification closed."},"toolbar":{"toolbarCollapse":"Collapse Toolbar","toolbarExpand":"Expand Toolbar","toolbarGroups":{"document":"Document","clipboard":"Clipboard/Undo","editing":"Editing","forms":"Forms","basicstyles":"Basic Styles","paragraph":"Paragraph","links":"Links","insert":"Insert","styles":"Styles","colors":"Colors","tools":"Tools"},"toolbars":"Editor toolbars"},"clipboard":{"copy":"Copy","copyError":"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).","cut":"Cut","cutError":"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).","paste":"Paste","pasteNotification":"Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.","pasteArea":"Paste Area","pasteMsg":"Paste your content inside the area below and press OK.","fileFormatNotSupportedNotification":"This file format is not supported. You can try with one of the supported formats: ${formats}."},"indent":{"indent":"Increase Indent","outdent":"Decrease Indent"},"fakeobjects":{"anchor":"Anchor","hiddenfield":"Hidden Field","iframe":"IFrame","unknown":"Unknown Object"},"link":{"acccessKey":"Access Key","advanced":"Advanced","advisoryContentType":"Advisory Content Type","advisoryTitle":"Advisory Title","anchor":{"toolbar":"Anchor","menu":"Edit Anchor","title":"Anchor Properties","name":"Anchor Name","errorName":"Please type the anchor name","remove":"Remove Anchor"},"anchorId":"By Element Id","anchorName":"By Anchor Name","charset":"Linked Resource Charset","cssClasses":"Stylesheet Classes","download":"Force Download","displayText":"Display Text","emailAddress":"E-Mail Address","emailBody":"Message Body","emailSubject":"Message Subject","id":"Id","info":"Link Info","langCode":"Language Code","langDir":"Language Direction","langDirLTR":"Left to Right (LTR)","langDirRTL":"Right to Left (RTL)","menu":"Edit Link","name":"Name","noAnchors":"(No anchors available in the document)","noEmail":"Please type the e-mail address","noUrl":"Please type the link URL","noTel":"Please type the phone number","other":"<other>","phoneNumber":"Phone number","popupDependent":"Dependent (Netscape)","popupFeatures":"Popup Window Features","popupFullScreen":"Full Screen (IE)","popupLeft":"Left Position","popupLocationBar":"Location Bar","popupMenuBar":"Menu Bar","popupResizable":"Resizable","popupScrollBars":"Scroll Bars","popupStatusBar":"Status Bar","popupToolbar":"Toolbar","popupTop":"Top Position","rel":"Relationship","selectAnchor":"Select an Anchor","styles":"Style","tabIndex":"Tab Index","target":"Target","targetFrame":"<frame>","targetFrameName":"Target Frame Name","targetPopup":"<popup window>","targetPopupName":"Popup Window Name","title":"Link","toAnchor":"Link to anchor in the text","toEmail":"E-mail","toUrl":"URL","toPhone":"Phone","toolbar":"Link","type":"Link Type","unlink":"Unlink","upload":"Upload"},"list":{"bulletedlist":"Insert/Remove Bulleted List","numberedlist":"Insert/Remove Numbered List"},"pastefromword":{"confirmCleanup":"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?","error":"It was not possible to clean up the pasted data due to an internal error","title":"Paste from Word","toolbar":"Paste from Word"},"undo":{"redo":"Redo","undo":"Undo"},"emoji":{"searchPlaceholder":"Search emoji…","searchLabel":"Input field responsible for searching and filtering emoji inside panel.","navigationLabel":"Groups navigation for emoji sections.","title":"Emoji List","groups":{"people":"People","nature":"Nature and animals","food":"Food and drinks","travel":"Travel and places","activities":"Activities","objects":"Objects","symbols":"Symbols","flags":"Flags"}}};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
3
|
+
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
.cke_autocomplete_panel
|
|
7
|
+
{
|
|
8
|
+
position: absolute;
|
|
9
|
+
display: none;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
width: 200px;
|
|
12
|
+
max-height: 300px;
|
|
13
|
+
overflow: auto;
|
|
14
|
+
padding: 0;
|
|
15
|
+
margin: 0;
|
|
16
|
+
list-style: none;
|
|
17
|
+
background: #FFF;
|
|
18
|
+
border: 1px solid #b6b6b6;
|
|
19
|
+
border-bottom-color: #999;
|
|
20
|
+
border-radius: 3px;
|
|
21
|
+
font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
|
|
22
|
+
}
|
|
23
|
+
.cke_autocomplete_opened
|
|
24
|
+
{
|
|
25
|
+
display: block;
|
|
26
|
+
}
|
|
27
|
+
.cke_autocomplete_panel > li
|
|
28
|
+
{
|
|
29
|
+
padding: 5px;
|
|
30
|
+
}
|
|
31
|
+
.cke_autocomplete_panel > li:hover
|
|
32
|
+
{
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
.cke_autocomplete_selected, .cke_autocomplete_panel > li:hover
|
|
36
|
+
{
|
|
37
|
+
background-color: #EFF0EF;
|
|
38
|
+
}
|