fit-ui 3.2.11 → 3.2.13
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/Fit.UI.js +25 -10
- package/dist/Resources/CKEditor/contents.css +208 -208
- package/dist/Resources/CKEditor/plugins/autocomplete/skins/default.css +38 -38
- package/dist/Resources/CKEditor/plugins/base64image/lang/no.js +8 -0
- package/dist/Resources/CKEditor/plugins/dialog/styles/dialog.css +18 -18
- package/dist/Resources/CKEditor/plugins/emoji/skins/default.css +237 -237
- package/dist/Resources/CKEditor/plugins/tableselection/styles/tableselection.css +36 -36
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog_ie.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog_ie8.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/dialog_iequirks.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/editor.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_gecko.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_ie.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_ie8.css +4 -4
- package/dist/Resources/CKEditor/skins/moono-lisa/editor_iequirks.css +4 -4
- package/dist/Resources/CKEditor/styles.js +137 -137
- package/package.json +1 -1
- package/dist/Fit.UI.min.css +0 -8
- package/dist/Fit.UI.min.js +0 -1
package/dist/Fit.UI.js
CHANGED
|
@@ -682,7 +682,7 @@ Fit._internal =
|
|
|
682
682
|
{
|
|
683
683
|
Core:
|
|
684
684
|
{
|
|
685
|
-
VersionInfo: { Major: 3, Minor: 2, Patch:
|
|
685
|
+
VersionInfo: { Major: 3, Minor: 2, Patch: 13 } // Do NOT modify format - version numbers are programmatically changed when releasing new versions - MUST be on a separate line!
|
|
686
686
|
}
|
|
687
687
|
};
|
|
688
688
|
|
|
@@ -14068,11 +14068,21 @@ Fit.Controls.DatePicker = function(ctlId)
|
|
|
14068
14068
|
input.placeholder = getDatePlaceholder();
|
|
14069
14069
|
input.tabIndex = ((isMobile === true) ? -1 : 0);
|
|
14070
14070
|
|
|
14071
|
-
// Prevent jQuery UI from focusing input field when calendar is opened (brings up virtual keyboard
|
|
14071
|
+
// Prevent jQuery UI from focusing input field on touch devices when calendar is opened or when changing year/month (brings up virtual keyboard).
|
|
14072
14072
|
// https://github.com/Jemt/Fit.UI/blob/5e8f2183d75ae17ddb8086ebbe39025a7a7c98bb/Resources/JqueryUI-1.11.4.custom/jquery-ui.js#L1090
|
|
14073
14073
|
// => https://github.com/Jemt/Fit.UI/blob/5e8f2183d75ae17ddb8086ebbe39025a7a7c98bb/Resources/JqueryUI-1.11.4.custom/external/jquery/jquery.js#L5268
|
|
14074
14074
|
input._focus = input.focus;
|
|
14075
|
-
input.focus = function()
|
|
14075
|
+
input.focus = function()
|
|
14076
|
+
{
|
|
14077
|
+
if (Fit.Device.OptimizeForTouch === true && me.TriggerIcon() === true)
|
|
14078
|
+
{
|
|
14079
|
+
icon.focus();
|
|
14080
|
+
}
|
|
14081
|
+
else
|
|
14082
|
+
{
|
|
14083
|
+
input._focus();
|
|
14084
|
+
}
|
|
14085
|
+
};
|
|
14076
14086
|
|
|
14077
14087
|
input.onkeydown = function(e)
|
|
14078
14088
|
{
|
|
@@ -14251,12 +14261,13 @@ Fit.Controls.DatePicker = function(ctlId)
|
|
|
14251
14261
|
|
|
14252
14262
|
icon = document.createElement("span");
|
|
14253
14263
|
icon.className = "fa fa-calendar";
|
|
14264
|
+
icon.style.outline = "none"; // Avoid outline when focused
|
|
14254
14265
|
icon.tabIndex = -1;
|
|
14255
14266
|
icon.onclick = function(e)
|
|
14256
14267
|
{
|
|
14257
14268
|
me.Show();
|
|
14258
14269
|
|
|
14259
|
-
if (me.TriggerIcon() === false) // Focus input if icon is hidden
|
|
14270
|
+
if (me.TriggerIcon() === false) // Focus input if icon is hidden (using opacity:0)
|
|
14260
14271
|
{
|
|
14261
14272
|
input._focus();
|
|
14262
14273
|
}
|
|
@@ -14339,7 +14350,7 @@ Fit.Controls.DatePicker = function(ctlId)
|
|
|
14339
14350
|
}
|
|
14340
14351
|
}
|
|
14341
14352
|
|
|
14342
|
-
var hasFocus = Fit.Array.Contains([input, inputTime, inputMobile, inputTimeMobile], Fit.Dom.GetFocused()) === true;
|
|
14353
|
+
var hasFocus = Fit.Array.Contains([icon, input, inputTime, inputMobile, inputTimeMobile], Fit.Dom.GetFocused()) === true;
|
|
14343
14354
|
|
|
14344
14355
|
if (hasFocus === false && isMobile === false)
|
|
14345
14356
|
{
|
|
@@ -15296,16 +15307,18 @@ Fit.Controls.DatePicker = function(ctlId)
|
|
|
15296
15307
|
{
|
|
15297
15308
|
// Retain focus when changing month or year using calendar
|
|
15298
15309
|
// widget, which causes its DOM to be removed and replaced.
|
|
15299
|
-
// Focus is later returned to
|
|
15310
|
+
// Focus is later returned to input field, but not in time for
|
|
15300
15311
|
// OnFocusOut. Related issue: https://github.com/Jemt/Fit.UI/issues/194
|
|
15301
|
-
|
|
15312
|
+
// DISABLED: Logic moved to input.focus override.
|
|
15313
|
+
/*if (Fit.Device.OptimizeForTouch === true && me.TriggerIcon() === true)
|
|
15302
15314
|
{
|
|
15303
15315
|
icon.focus(); // Focusing icon to prevent virtual keyboard from being shown on touch devices
|
|
15304
15316
|
}
|
|
15305
15317
|
else
|
|
15306
15318
|
{
|
|
15307
15319
|
input._focus(); // Do not use Focused(true) as it will not re-focus input, since control is already considered focused
|
|
15308
|
-
}
|
|
15320
|
+
}*/
|
|
15321
|
+
input.focus();
|
|
15309
15322
|
|
|
15310
15323
|
if (open === true) // Remember which year and month the user navigated to
|
|
15311
15324
|
{
|
|
@@ -15323,14 +15336,16 @@ Fit.Controls.DatePicker = function(ctlId)
|
|
|
15323
15336
|
{
|
|
15324
15337
|
startDate = null;
|
|
15325
15338
|
|
|
15326
|
-
|
|
15339
|
+
// DISABLED: Logic moved to input.focus override
|
|
15340
|
+
/*if (Fit.Device.OptimizeForTouch === true && me.TriggerIcon() === true)
|
|
15327
15341
|
{
|
|
15328
15342
|
icon.focus(); // Focusing icon to prevent virtual keyboard from being shown on touch devices
|
|
15329
15343
|
}
|
|
15330
15344
|
else
|
|
15331
15345
|
{
|
|
15332
15346
|
input._focus(); // Do not use Focused(true) as it will not re-focus input, since control is already considered focused
|
|
15333
|
-
}
|
|
15347
|
+
}*/
|
|
15348
|
+
input.focus();
|
|
15334
15349
|
|
|
15335
15350
|
input.onchange();
|
|
15336
15351
|
},
|
|
@@ -1,208 +1,208 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright (c) 2003-2023, 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
|
-
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-2023, 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
|
+
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,38 +1,38 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright (c) 2003-2023, 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
|
-
.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
|
-
}
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2003-2023, 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
|
+
.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
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// Translated by Jimmy Thomsen for CKEditor in Fit.UI (https://fitui.org)
|
|
2
|
+
CKEDITOR.plugins.setLang("base64image","no",{
|
|
3
|
+
"alt": "Alternativ tekst",
|
|
4
|
+
"lockRatio": "Lås sideforhold",
|
|
5
|
+
"vSpace": "Vertikal marg",
|
|
6
|
+
"hSpace": "Horisontal marg",
|
|
7
|
+
"border": "Ramme"
|
|
8
|
+
});
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
.cke_dialog_open {
|
|
2
|
-
overflow: hidden;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.cke_dialog_container {
|
|
6
|
-
position: fixed;
|
|
7
|
-
overflow-y: auto;
|
|
8
|
-
overflow-x: auto;
|
|
9
|
-
width: 100%;
|
|
10
|
-
height: 100%;
|
|
11
|
-
top: 0;
|
|
12
|
-
left: 0;
|
|
13
|
-
z-index: 10010;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.cke_dialog_body {
|
|
17
|
-
position: relative;
|
|
18
|
-
}
|
|
1
|
+
.cke_dialog_open {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.cke_dialog_container {
|
|
6
|
+
position: fixed;
|
|
7
|
+
overflow-y: auto;
|
|
8
|
+
overflow-x: auto;
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
top: 0;
|
|
12
|
+
left: 0;
|
|
13
|
+
z-index: 10010;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.cke_dialog_body {
|
|
17
|
+
position: relative;
|
|
18
|
+
}
|