@wiris/mathtype-ckeditor5 8.9.1 → 8.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -68
- package/dist/browser/index-content.css +0 -0
- package/dist/browser/index-editor.css +502 -0
- package/dist/browser/index.css +650 -0
- package/dist/browser/index.css.map +1 -0
- package/dist/browser/index.js +11211 -0
- package/dist/browser/index.js.map +1 -0
- package/dist/browser/index.umd.js +11215 -0
- package/dist/browser/index.umd.js.map +1 -0
- package/dist/index-content.css +0 -0
- package/dist/index-editor.css +0 -0
- package/dist/index.css +0 -0
- package/dist/index.js +803 -0
- package/dist/index.js.map +1 -0
- package/package.json +23 -8
- package/src/commands.js +17 -13
- package/src/index.js +3 -0
- package/src/integration.js +83 -86
- package/src/plugin.js +147 -147
|
@@ -0,0 +1,650 @@
|
|
|
1
|
+
.wrs_modal_overlay {
|
|
2
|
+
position: fixed;
|
|
3
|
+
font-family: arial, sans-serif;
|
|
4
|
+
top: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
bottom: 0;
|
|
8
|
+
background: rgba(0, 0, 0, 0.8);
|
|
9
|
+
z-index: 999998;
|
|
10
|
+
opacity: 0.65;
|
|
11
|
+
pointer-events: auto;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.wrs_modal_overlay.wrs_modal_ios {
|
|
15
|
+
visibility: hidden;
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.wrs_modal_overlay.wrs_modal_android {
|
|
20
|
+
visibility: hidden;
|
|
21
|
+
display: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.wrs_modal_overlay.wrs_modal_ios.moodle {
|
|
25
|
+
position: fixed;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.wrs_modal_overlay.wrs_modal_desktop.wrs_stack {
|
|
29
|
+
background: rgba(0, 0, 0, 0);
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.wrs_modal_overlay.wrs_modal_desktop.wrs_maximized {
|
|
34
|
+
background: rgba(0, 0, 0, 0.8);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.wrs_modal_overlay.wrs_modal_desktop.wrs_minimized {
|
|
38
|
+
background: rgba(0, 0, 0, 0);
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.wrs_modal_overlay.wrs_modal_desktop.wrs_closed {
|
|
43
|
+
background: rgba(0, 0, 0, 0);
|
|
44
|
+
display: none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.wrs_modal_title {
|
|
48
|
+
color: #fff;
|
|
49
|
+
padding: 5px 0 5px 10px;
|
|
50
|
+
-moz-user-select: none;
|
|
51
|
+
-webkit-user-select: none;
|
|
52
|
+
-ms-user-select: none;
|
|
53
|
+
user-select: none;
|
|
54
|
+
text-align: left;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.wrs_modal_close_button {
|
|
58
|
+
float: right;
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
color: #fff;
|
|
61
|
+
padding: 5px 10px 5px 0;
|
|
62
|
+
margin: 10px 7px 0 0;
|
|
63
|
+
background-repeat: no-repeat;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.wrs_modal_minimize_button {
|
|
67
|
+
float: right;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
color: #fff;
|
|
70
|
+
padding: 5px 10px 5px 0;
|
|
71
|
+
top: inherit;
|
|
72
|
+
margin: 10px 7px 0 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.wrs_modal_stack_button {
|
|
76
|
+
float: right;
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
color: #fff;
|
|
79
|
+
margin: 10px 7px 0 0;
|
|
80
|
+
padding: 5px 10px 5px 0;
|
|
81
|
+
top: inherit;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.wrs_modal_stack_button.wrs_stack {
|
|
85
|
+
visibility: hidden;
|
|
86
|
+
margin: 0;
|
|
87
|
+
padding: 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.wrs_modal_stack_button.wrs_minimized {
|
|
91
|
+
visibility: hidden;
|
|
92
|
+
margin: 0;
|
|
93
|
+
padding: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.wrs_modal_maximize_button {
|
|
97
|
+
float: right;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
color: #fff;
|
|
100
|
+
margin: 10px 7px 0 0;
|
|
101
|
+
padding: 5px 10px 5px 0;
|
|
102
|
+
top: inherit;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.wrs_modal_maximize_button.wrs_maximized {
|
|
106
|
+
visibility: hidden;
|
|
107
|
+
margin: 0;
|
|
108
|
+
padding: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.wrs_modal_title_bar {
|
|
112
|
+
display: block;
|
|
113
|
+
background-color: #778e9a;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.wrs_modal_dialogContainer {
|
|
117
|
+
border: none;
|
|
118
|
+
background: #fafafa;
|
|
119
|
+
z-index: 999999;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.wrs_modal_dialogContainer.wrs_modal_desktop {
|
|
123
|
+
font-size: 14px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_maximized {
|
|
127
|
+
position: fixed;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_minimized {
|
|
131
|
+
position: fixed;
|
|
132
|
+
top: inherit;
|
|
133
|
+
margin: 0;
|
|
134
|
+
margin-right: 10px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.wrs_modal_dialogContainer.wrs_closed {
|
|
138
|
+
visibility: hidden;
|
|
139
|
+
display: none;
|
|
140
|
+
opacity: 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/* Class that exists but hasn't got css properties defined
|
|
144
|
+
.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_minimized.wrs_drag {} */
|
|
145
|
+
|
|
146
|
+
.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_stack {
|
|
147
|
+
position: fixed;
|
|
148
|
+
bottom: 0;
|
|
149
|
+
right: 0;
|
|
150
|
+
box-shadow: rgba(0, 0, 0, 0.5) 0 2px 8px;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.wrs_modal_dialogContainer.wrs_drag {
|
|
154
|
+
box-shadow: rgba(0, 0, 0, 0.5) 0 2px 8px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_drag {
|
|
158
|
+
box-shadow: rgba(0, 0, 0, 0.5) 0 2px 8px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.wrs_modal_dialogContainer.wrs_modal_android {
|
|
162
|
+
margin: auto;
|
|
163
|
+
position: fixed;
|
|
164
|
+
width: 99%;
|
|
165
|
+
height: 99%;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
transform: translate(50%, -50%);
|
|
168
|
+
top: 50%;
|
|
169
|
+
right: 50% !important;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.wrs_modal_dialogContainer.wrs_modal_ios {
|
|
173
|
+
margin: auto;
|
|
174
|
+
position: fixed;
|
|
175
|
+
width: 100%;
|
|
176
|
+
height: 100%;
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
transform: translate(50%, -50%);
|
|
179
|
+
top: 50%;
|
|
180
|
+
right: 50% !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/* Class that exists but hasn't got css properties defined
|
|
184
|
+
.wrs_content_container.wrs_maximized {} */
|
|
185
|
+
|
|
186
|
+
.wrs_content_container.wrs_minimized {
|
|
187
|
+
display: none;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/* .wrs_editor {
|
|
191
|
+
flex-grow: 1;
|
|
192
|
+
} */
|
|
193
|
+
|
|
194
|
+
.wrs_content_container.wrs_modal_android {
|
|
195
|
+
width: 100%;
|
|
196
|
+
height: 0%;
|
|
197
|
+
flex-grow: 1;
|
|
198
|
+
display: flex;
|
|
199
|
+
flex-direction: column;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.wrs_content_container.wrs_modal_android > div:first-child {
|
|
203
|
+
flex-grow: 1;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.wrs_content_container.wrs_modal_ios > div:first-child {
|
|
207
|
+
flex-grow: 1;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.wrs_content_container.wrs_modal_desktop > div:first-child {
|
|
211
|
+
flex-grow: 1;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.wrs_modal_wrapper.wrs_modal_android {
|
|
215
|
+
margin: auto;
|
|
216
|
+
display: flex;
|
|
217
|
+
flex-direction: column;
|
|
218
|
+
height: 100%;
|
|
219
|
+
width: 100%;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.wrs_content_container.wrs_modal_desktop {
|
|
223
|
+
width: 100%;
|
|
224
|
+
flex-grow: 1;
|
|
225
|
+
display: flex;
|
|
226
|
+
flex-direction: column;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.wrs_content_container.wrs_modal_ios {
|
|
230
|
+
width: 100%;
|
|
231
|
+
height: 0%;
|
|
232
|
+
flex-grow: 1;
|
|
233
|
+
display: flex;
|
|
234
|
+
flex-direction: column;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.wrs_modal_wrapper.wrs_modal_ios {
|
|
238
|
+
margin: auto;
|
|
239
|
+
display: flex;
|
|
240
|
+
flex-direction: column;
|
|
241
|
+
height: 100%;
|
|
242
|
+
width: 100%;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.wrs_virtual_keyboard {
|
|
246
|
+
height: 100%;
|
|
247
|
+
width: 100%;
|
|
248
|
+
top: 0;
|
|
249
|
+
left: 50%;
|
|
250
|
+
transform: translate(-50%, 0%);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@media all and (orientation: portrait) {
|
|
254
|
+
.wrs_modal_dialogContainer.wrs_modal_mobile {
|
|
255
|
+
width: 100vmin;
|
|
256
|
+
height: 100vmin;
|
|
257
|
+
margin: auto;
|
|
258
|
+
border-width: 0;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.wrs_modal_wrapper.wrs_modal_mobile {
|
|
262
|
+
width: 100vmin;
|
|
263
|
+
height: 100vmin;
|
|
264
|
+
margin: auto;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@media all and (orientation: landscape) {
|
|
269
|
+
.wrs_modal_dialogContainer.wrs_modal_mobile {
|
|
270
|
+
width: 100vmin;
|
|
271
|
+
height: 100vmin;
|
|
272
|
+
margin: auto;
|
|
273
|
+
border-width: 0;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.wrs_modal_wrapper.wrs_modal_mobile {
|
|
277
|
+
width: 100vmin;
|
|
278
|
+
height: 100vmin;
|
|
279
|
+
margin: auto;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.wrs_modal_dialogContainer.wrs_modal_badStock {
|
|
284
|
+
width: 100%;
|
|
285
|
+
height: 280px;
|
|
286
|
+
margin: 0 auto;
|
|
287
|
+
border-width: 0;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.wrs_modal_wrapper.wrs_modal_badStock {
|
|
291
|
+
width: 100%;
|
|
292
|
+
height: 280px;
|
|
293
|
+
margin: 0 auto;
|
|
294
|
+
border-width: 0;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.wrs_noselect {
|
|
298
|
+
-moz-user-select: none;
|
|
299
|
+
-khtml-user-select: none;
|
|
300
|
+
-webkit-user-select: none;
|
|
301
|
+
-ms-user-select: none;
|
|
302
|
+
user-select: none;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.wrs_bottom_right_resizer {
|
|
306
|
+
width: 10px;
|
|
307
|
+
height: 10px;
|
|
308
|
+
color: #778e9a;
|
|
309
|
+
position: absolute;
|
|
310
|
+
right: 4px;
|
|
311
|
+
bottom: 8px;
|
|
312
|
+
cursor: se-resize;
|
|
313
|
+
-moz-user-select: none;
|
|
314
|
+
-webkit-user-select: none;
|
|
315
|
+
-ms-user-select: none;
|
|
316
|
+
user-select: none;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.wrs_bottom_left_resizer {
|
|
320
|
+
width: 15px;
|
|
321
|
+
height: 15px;
|
|
322
|
+
color: #778e9a;
|
|
323
|
+
position: absolute;
|
|
324
|
+
left: 0;
|
|
325
|
+
top: 0;
|
|
326
|
+
cursor: se-resize;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.wrs_modal_controls {
|
|
330
|
+
height: 42px;
|
|
331
|
+
margin: 3px 0;
|
|
332
|
+
overflow: hidden;
|
|
333
|
+
line-height: normal;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.wrs_modal_links {
|
|
337
|
+
margin: 10px auto;
|
|
338
|
+
margin-bottom: 0;
|
|
339
|
+
font-family: arial, sans-serif;
|
|
340
|
+
padding: 6px;
|
|
341
|
+
display: inline;
|
|
342
|
+
float: right;
|
|
343
|
+
text-align: right;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.wrs_modal_links > a {
|
|
347
|
+
text-decoration: none;
|
|
348
|
+
color: #778e9a;
|
|
349
|
+
font-size: 16px;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.wrs_modal_button_cancel,
|
|
353
|
+
.wrs_modal_button_cancel:hover,
|
|
354
|
+
.wrs_modal_button_cancel:visited,
|
|
355
|
+
.wrs_modal_button_cancel:active,
|
|
356
|
+
.wrs_modal_button_cancel:focus {
|
|
357
|
+
min-width: 80px;
|
|
358
|
+
font-size: 14px;
|
|
359
|
+
border-radius: 3px;
|
|
360
|
+
border: 1px solid #778e9a;
|
|
361
|
+
padding: 6px 8px;
|
|
362
|
+
margin: 10px auto;
|
|
363
|
+
margin-left: 5px;
|
|
364
|
+
margin-bottom: 0;
|
|
365
|
+
cursor: pointer;
|
|
366
|
+
font-family: arial, sans-serif;
|
|
367
|
+
background-color: #ddd;
|
|
368
|
+
height: 32px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.wrs_modal_button_accept,
|
|
372
|
+
.wrs_modal_button_accept:hover,
|
|
373
|
+
.wrs_modal_button_accept:visited,
|
|
374
|
+
.wrs_modal_button_accept:active,
|
|
375
|
+
.wrs_modal_button_accept:focus {
|
|
376
|
+
min-width: 80px;
|
|
377
|
+
font-size: 14px;
|
|
378
|
+
border-radius: 3px;
|
|
379
|
+
border: 1px solid #778e9a;
|
|
380
|
+
padding: 6px 8px;
|
|
381
|
+
margin: 10px auto;
|
|
382
|
+
margin-right: 5px;
|
|
383
|
+
margin-bottom: 0;
|
|
384
|
+
color: #fff;
|
|
385
|
+
background: #778e9a;
|
|
386
|
+
cursor: pointer;
|
|
387
|
+
font-family: arial, sans-serif;
|
|
388
|
+
height: 32px;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.wrs_editor_vertical_bar {
|
|
392
|
+
height: 20px;
|
|
393
|
+
float: right;
|
|
394
|
+
background: none;
|
|
395
|
+
width: 20px;
|
|
396
|
+
cursor: pointer;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.wrs_modal_buttons_container {
|
|
400
|
+
display: inline;
|
|
401
|
+
float: left;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.wrs_modal_buttons_container.wrs_modalAndroid {
|
|
405
|
+
padding-left: 6px;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.wrs_modal_buttons_container.wrs_modalDesktop {
|
|
409
|
+
padding-left: 0;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.wrs_modal_buttons_container > button {
|
|
413
|
+
line-height: normal;
|
|
414
|
+
background-image: none;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.wrs_modal_wrapper {
|
|
418
|
+
margin: 6px;
|
|
419
|
+
display: flex;
|
|
420
|
+
flex-direction: column;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.wrs_modal_wrapper.wrs_modal_desktop.wrs_minimized {
|
|
424
|
+
display: none;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@media only screen and (max-device-width: 480px) and (orientation: portrait) {
|
|
428
|
+
#wrs_modal_wrapper {
|
|
429
|
+
width: 140%;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.wrs_popupmessage_overlay_envolture {
|
|
434
|
+
display: none;
|
|
435
|
+
width: 100%;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.wrs_popupmessage_overlay {
|
|
439
|
+
position: absolute;
|
|
440
|
+
width: 100%;
|
|
441
|
+
height: 100%;
|
|
442
|
+
top: 0;
|
|
443
|
+
left: 0;
|
|
444
|
+
right: 0;
|
|
445
|
+
bottom: 0;
|
|
446
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
447
|
+
z-index: 4;
|
|
448
|
+
cursor: pointer;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.wrs_popupmessage_panel {
|
|
452
|
+
top: 50%;
|
|
453
|
+
left: 50%;
|
|
454
|
+
transform: translate(-50%, -50%);
|
|
455
|
+
position: absolute;
|
|
456
|
+
background: white;
|
|
457
|
+
max-width: 500px;
|
|
458
|
+
width: 75%;
|
|
459
|
+
border-radius: 2px;
|
|
460
|
+
padding: 20px;
|
|
461
|
+
font-family: sans-serif;
|
|
462
|
+
font-size: 15px;
|
|
463
|
+
text-align: left;
|
|
464
|
+
color: #2e2e2e;
|
|
465
|
+
z-index: 5;
|
|
466
|
+
max-height: 75%;
|
|
467
|
+
overflow: auto;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.wrs_popupmessage_button_area {
|
|
471
|
+
margin: 10px 0 0 0;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.wrs_panelContainer * {
|
|
475
|
+
border: 0;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.wrs_button_cancel,
|
|
479
|
+
.wrs_button_cancel:hover,
|
|
480
|
+
.wrs_button_cancel:visited,
|
|
481
|
+
.wrs_button_cancel:active,
|
|
482
|
+
.wrs_button_cancel:focus {
|
|
483
|
+
min-width: 80px;
|
|
484
|
+
font-size: 14px;
|
|
485
|
+
border-radius: 3px;
|
|
486
|
+
border: 1px solid #778e9a;
|
|
487
|
+
padding: 6px 8px;
|
|
488
|
+
margin: 10px auto;
|
|
489
|
+
margin-left: 5px;
|
|
490
|
+
margin-bottom: 0;
|
|
491
|
+
cursor: pointer;
|
|
492
|
+
font-family: arial, sans-serif;
|
|
493
|
+
background-color: #ddd;
|
|
494
|
+
background-image: none;
|
|
495
|
+
height: 32px;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.wrs_button_accept,
|
|
499
|
+
.wrs_button_accept:hover,
|
|
500
|
+
.wrs_button_accept:visited,
|
|
501
|
+
.wrs_button_accept:active,
|
|
502
|
+
.wrs_button_accept:focus {
|
|
503
|
+
min-width: 80px;
|
|
504
|
+
font-size: 14px;
|
|
505
|
+
border-radius: 3px;
|
|
506
|
+
border: 1px solid #778e9a;
|
|
507
|
+
padding: 6px 8px;
|
|
508
|
+
margin: 10px auto;
|
|
509
|
+
margin-right: 5px;
|
|
510
|
+
margin-bottom: 0;
|
|
511
|
+
color: #fff;
|
|
512
|
+
background: #778e9a;
|
|
513
|
+
cursor: pointer;
|
|
514
|
+
font-family: arial, sans-serif;
|
|
515
|
+
height: 32px;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.wrs_editor button {
|
|
519
|
+
box-shadow: none;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.wrs_editor .wrs_header button {
|
|
523
|
+
border-bottom: none;
|
|
524
|
+
border-bottom-left-radius: 0;
|
|
525
|
+
border-bottom-right-radius: 0;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.wrs_modal_overlay.wrs_modal_desktop.wrs_stack.wrs_overlay_active {
|
|
529
|
+
display: block;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
/* Fix selection in drupal style */
|
|
533
|
+
.wrs_toolbar tr:focus {
|
|
534
|
+
background: none;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.wrs_toolbar tr:hover {
|
|
538
|
+
background: none;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
/* End of fix drupal */
|
|
542
|
+
.wrs_modal_rtl .wrs_modal_button_cancel {
|
|
543
|
+
margin-right: 5px;
|
|
544
|
+
margin-left: 0;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.wrs_modal_rtl .wrs_modal_button_accept {
|
|
548
|
+
margin-right: 0;
|
|
549
|
+
margin-left: 5px;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.wrs_modal_rtl .wrs_button_cancel {
|
|
553
|
+
margin-right: 5px;
|
|
554
|
+
margin-left: 0;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.wrs_modal_rtl .wrs_button_accept {
|
|
558
|
+
margin-right: 0;
|
|
559
|
+
margin-left: 5px;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
/* The Offline Modal (background) */
|
|
563
|
+
.wrs_modal_offline {
|
|
564
|
+
display: none; /* Hidden by default */
|
|
565
|
+
position: fixed; /* Stay in place */
|
|
566
|
+
z-index: 2; /* Sit on top */
|
|
567
|
+
padding-top: 150px; /* Location of the box */
|
|
568
|
+
left: 0;
|
|
569
|
+
top: 0;
|
|
570
|
+
width: 100%; /* Full width */
|
|
571
|
+
height: 100%; /* Full height */
|
|
572
|
+
overflow: auto; /* Enable scroll if needed */
|
|
573
|
+
background-color: rgb(0, 0, 0); /* Fallback color */
|
|
574
|
+
background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
|
|
575
|
+
margin: auto;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
/* Modal Content */
|
|
579
|
+
.wrs_modal_content_offline {
|
|
580
|
+
margin: auto;
|
|
581
|
+
padding: 16px;
|
|
582
|
+
background: #fff7ed;
|
|
583
|
+
border-radius: 6px;
|
|
584
|
+
width: 517px;
|
|
585
|
+
height: 100px;
|
|
586
|
+
position: relative;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/* The Close Button */
|
|
590
|
+
.wrs_modal_offline_close {
|
|
591
|
+
color: #c2410c;
|
|
592
|
+
font-size: 24px;
|
|
593
|
+
font-weight: bold;
|
|
594
|
+
left: 95.7%;
|
|
595
|
+
right: 2.08%;
|
|
596
|
+
top: 7.6%;
|
|
597
|
+
bottom: 75%;
|
|
598
|
+
font-family: "Inter";
|
|
599
|
+
font-style: normal;
|
|
600
|
+
font-weight: 400;
|
|
601
|
+
position: absolute;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/* The Warn Icon */
|
|
605
|
+
.wrs_modal_offline_warn {
|
|
606
|
+
position: absolute;
|
|
607
|
+
left: 2.08%;
|
|
608
|
+
right: 94%;
|
|
609
|
+
top: 11.6%;
|
|
610
|
+
bottom: 75%;
|
|
611
|
+
font-size: 24px;
|
|
612
|
+
color: #fb923c;
|
|
613
|
+
background-repeat: no-repeat;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.wrs_modal_offline_text_container {
|
|
617
|
+
position: absolute;
|
|
618
|
+
left: 6.8%;
|
|
619
|
+
right: 6.08%;
|
|
620
|
+
top: 10.4%;
|
|
621
|
+
bottom: 2%;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.wrs_modal_offline_text {
|
|
625
|
+
font-family: "Inter";
|
|
626
|
+
font-style: normal;
|
|
627
|
+
font-weight: 400;
|
|
628
|
+
font-size: 14px;
|
|
629
|
+
line-height: 20px;
|
|
630
|
+
color: #c2410c;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.wrs_modal_offline_text_warn {
|
|
634
|
+
height: 25px;
|
|
635
|
+
font-family: "Inter";
|
|
636
|
+
font-style: normal;
|
|
637
|
+
font-size: 14px;
|
|
638
|
+
line-height: 20px;
|
|
639
|
+
font-weight: bold;
|
|
640
|
+
color: #c2410c;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.wrs_modal_offline_close:hover,
|
|
644
|
+
.wrs_modal_offline_close:focus {
|
|
645
|
+
color: #000;
|
|
646
|
+
text-decoration: none;
|
|
647
|
+
cursor: pointer;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../devkit/styles/styles.css"],"names":[],"mappings":"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","file":"index.css","sourcesContent":[".wrs_modal_overlay {\n position: fixed;\n font-family: arial, sans-serif;\n top: 0;\n right: 0;\n left: 0;\n bottom: 0;\n background: rgba(0, 0, 0, 0.8);\n z-index: 999998;\n opacity: 0.65;\n pointer-events: auto;\n}\n\n.wrs_modal_overlay.wrs_modal_ios {\n visibility: hidden;\n display: none;\n}\n\n.wrs_modal_overlay.wrs_modal_android {\n visibility: hidden;\n display: none;\n}\n\n.wrs_modal_overlay.wrs_modal_ios.moodle {\n position: fixed;\n}\n\n.wrs_modal_overlay.wrs_modal_desktop.wrs_stack {\n background: rgba(0, 0, 0, 0);\n display: none;\n}\n\n.wrs_modal_overlay.wrs_modal_desktop.wrs_maximized {\n background: rgba(0, 0, 0, 0.8);\n}\n\n.wrs_modal_overlay.wrs_modal_desktop.wrs_minimized {\n background: rgba(0, 0, 0, 0);\n display: none;\n}\n\n.wrs_modal_overlay.wrs_modal_desktop.wrs_closed {\n background: rgba(0, 0, 0, 0);\n display: none;\n}\n\n.wrs_modal_title {\n color: #fff;\n padding: 5px 0 5px 10px;\n -moz-user-select: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n text-align: left;\n}\n\n.wrs_modal_close_button {\n float: right;\n cursor: pointer;\n color: #fff;\n padding: 5px 10px 5px 0;\n margin: 10px 7px 0 0;\n background-repeat: no-repeat;\n}\n\n.wrs_modal_minimize_button {\n float: right;\n cursor: pointer;\n color: #fff;\n padding: 5px 10px 5px 0;\n top: inherit;\n margin: 10px 7px 0 0;\n}\n\n.wrs_modal_stack_button {\n float: right;\n cursor: pointer;\n color: #fff;\n margin: 10px 7px 0 0;\n padding: 5px 10px 5px 0;\n top: inherit;\n}\n\n.wrs_modal_stack_button.wrs_stack {\n visibility: hidden;\n margin: 0;\n padding: 0;\n}\n\n.wrs_modal_stack_button.wrs_minimized {\n visibility: hidden;\n margin: 0;\n padding: 0;\n}\n\n.wrs_modal_maximize_button {\n float: right;\n cursor: pointer;\n color: #fff;\n margin: 10px 7px 0 0;\n padding: 5px 10px 5px 0;\n top: inherit;\n}\n\n.wrs_modal_maximize_button.wrs_maximized {\n visibility: hidden;\n margin: 0;\n padding: 0;\n}\n\n.wrs_modal_title_bar {\n display: block;\n background-color: #778e9a;\n}\n\n.wrs_modal_dialogContainer {\n border: none;\n background: #fafafa;\n z-index: 999999;\n}\n\n.wrs_modal_dialogContainer.wrs_modal_desktop {\n font-size: 14px;\n}\n\n.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_maximized {\n position: fixed;\n}\n\n.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_minimized {\n position: fixed;\n top: inherit;\n margin: 0;\n margin-right: 10px;\n}\n\n.wrs_modal_dialogContainer.wrs_closed {\n visibility: hidden;\n display: none;\n opacity: 0;\n}\n\n/* Class that exists but hasn't got css properties defined\n.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_minimized.wrs_drag {} */\n\n.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_stack {\n position: fixed;\n bottom: 0;\n right: 0;\n box-shadow: rgba(0, 0, 0, 0.5) 0 2px 8px;\n}\n\n.wrs_modal_dialogContainer.wrs_drag {\n box-shadow: rgba(0, 0, 0, 0.5) 0 2px 8px;\n}\n\n.wrs_modal_dialogContainer.wrs_modal_desktop.wrs_drag {\n box-shadow: rgba(0, 0, 0, 0.5) 0 2px 8px;\n}\n\n.wrs_modal_dialogContainer.wrs_modal_android {\n margin: auto;\n position: fixed;\n width: 99%;\n height: 99%;\n overflow: hidden;\n transform: translate(50%, -50%);\n top: 50%;\n right: 50% !important;\n}\n\n.wrs_modal_dialogContainer.wrs_modal_ios {\n margin: auto;\n position: fixed;\n width: 100%;\n height: 100%;\n overflow: hidden;\n transform: translate(50%, -50%);\n top: 50%;\n right: 50% !important;\n}\n\n/* Class that exists but hasn't got css properties defined\n.wrs_content_container.wrs_maximized {} */\n\n.wrs_content_container.wrs_minimized {\n display: none;\n}\n\n/* .wrs_editor {\n flex-grow: 1;\n} */\n\n.wrs_content_container.wrs_modal_android {\n width: 100%;\n height: 0%;\n flex-grow: 1;\n display: flex;\n flex-direction: column;\n}\n\n.wrs_content_container.wrs_modal_android > div:first-child {\n flex-grow: 1;\n}\n\n.wrs_content_container.wrs_modal_ios > div:first-child {\n flex-grow: 1;\n}\n\n.wrs_content_container.wrs_modal_desktop > div:first-child {\n flex-grow: 1;\n}\n\n.wrs_modal_wrapper.wrs_modal_android {\n margin: auto;\n display: flex;\n flex-direction: column;\n height: 100%;\n width: 100%;\n}\n\n.wrs_content_container.wrs_modal_desktop {\n width: 100%;\n flex-grow: 1;\n display: flex;\n flex-direction: column;\n}\n\n.wrs_content_container.wrs_modal_ios {\n width: 100%;\n height: 0%;\n flex-grow: 1;\n display: flex;\n flex-direction: column;\n}\n\n.wrs_modal_wrapper.wrs_modal_ios {\n margin: auto;\n display: flex;\n flex-direction: column;\n height: 100%;\n width: 100%;\n}\n\n.wrs_virtual_keyboard {\n height: 100%;\n width: 100%;\n top: 0;\n left: 50%;\n transform: translate(-50%, 0%);\n}\n\n@media all and (orientation: portrait) {\n .wrs_modal_dialogContainer.wrs_modal_mobile {\n width: 100vmin;\n height: 100vmin;\n margin: auto;\n border-width: 0;\n }\n\n .wrs_modal_wrapper.wrs_modal_mobile {\n width: 100vmin;\n height: 100vmin;\n margin: auto;\n }\n}\n\n@media all and (orientation: landscape) {\n .wrs_modal_dialogContainer.wrs_modal_mobile {\n width: 100vmin;\n height: 100vmin;\n margin: auto;\n border-width: 0;\n }\n\n .wrs_modal_wrapper.wrs_modal_mobile {\n width: 100vmin;\n height: 100vmin;\n margin: auto;\n }\n}\n\n.wrs_modal_dialogContainer.wrs_modal_badStock {\n width: 100%;\n height: 280px;\n margin: 0 auto;\n border-width: 0;\n}\n\n.wrs_modal_wrapper.wrs_modal_badStock {\n width: 100%;\n height: 280px;\n margin: 0 auto;\n border-width: 0;\n}\n\n.wrs_noselect {\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.wrs_bottom_right_resizer {\n width: 10px;\n height: 10px;\n color: #778e9a;\n position: absolute;\n right: 4px;\n bottom: 8px;\n cursor: se-resize;\n -moz-user-select: none;\n -webkit-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.wrs_bottom_left_resizer {\n width: 15px;\n height: 15px;\n color: #778e9a;\n position: absolute;\n left: 0;\n top: 0;\n cursor: se-resize;\n}\n\n.wrs_modal_controls {\n height: 42px;\n margin: 3px 0;\n overflow: hidden;\n line-height: normal;\n}\n\n.wrs_modal_links {\n margin: 10px auto;\n margin-bottom: 0;\n font-family: arial, sans-serif;\n padding: 6px;\n display: inline;\n float: right;\n text-align: right;\n}\n\n.wrs_modal_links > a {\n text-decoration: none;\n color: #778e9a;\n font-size: 16px;\n}\n\n.wrs_modal_button_cancel,\n.wrs_modal_button_cancel:hover,\n.wrs_modal_button_cancel:visited,\n.wrs_modal_button_cancel:active,\n.wrs_modal_button_cancel:focus {\n min-width: 80px;\n font-size: 14px;\n border-radius: 3px;\n border: 1px solid #778e9a;\n padding: 6px 8px;\n margin: 10px auto;\n margin-left: 5px;\n margin-bottom: 0;\n cursor: pointer;\n font-family: arial, sans-serif;\n background-color: #ddd;\n height: 32px;\n}\n\n.wrs_modal_button_accept,\n.wrs_modal_button_accept:hover,\n.wrs_modal_button_accept:visited,\n.wrs_modal_button_accept:active,\n.wrs_modal_button_accept:focus {\n min-width: 80px;\n font-size: 14px;\n border-radius: 3px;\n border: 1px solid #778e9a;\n padding: 6px 8px;\n margin: 10px auto;\n margin-right: 5px;\n margin-bottom: 0;\n color: #fff;\n background: #778e9a;\n cursor: pointer;\n font-family: arial, sans-serif;\n height: 32px;\n}\n\n.wrs_editor_vertical_bar {\n height: 20px;\n float: right;\n background: none;\n width: 20px;\n cursor: pointer;\n}\n\n.wrs_modal_buttons_container {\n display: inline;\n float: left;\n}\n\n.wrs_modal_buttons_container.wrs_modalAndroid {\n padding-left: 6px;\n}\n\n.wrs_modal_buttons_container.wrs_modalDesktop {\n padding-left: 0;\n}\n\n.wrs_modal_buttons_container > button {\n line-height: normal;\n background-image: none;\n}\n\n.wrs_modal_wrapper {\n margin: 6px;\n display: flex;\n flex-direction: column;\n}\n\n.wrs_modal_wrapper.wrs_modal_desktop.wrs_minimized {\n display: none;\n}\n\n@media only screen and (max-device-width: 480px) and (orientation: portrait) {\n #wrs_modal_wrapper {\n width: 140%;\n }\n}\n\n.wrs_popupmessage_overlay_envolture {\n display: none;\n width: 100%;\n}\n\n.wrs_popupmessage_overlay {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 4;\n cursor: pointer;\n}\n\n.wrs_popupmessage_panel {\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n position: absolute;\n background: white;\n max-width: 500px;\n width: 75%;\n border-radius: 2px;\n padding: 20px;\n font-family: sans-serif;\n font-size: 15px;\n text-align: left;\n color: #2e2e2e;\n z-index: 5;\n max-height: 75%;\n overflow: auto;\n}\n\n.wrs_popupmessage_button_area {\n margin: 10px 0 0 0;\n}\n\n.wrs_panelContainer * {\n border: 0;\n}\n\n.wrs_button_cancel,\n.wrs_button_cancel:hover,\n.wrs_button_cancel:visited,\n.wrs_button_cancel:active,\n.wrs_button_cancel:focus {\n min-width: 80px;\n font-size: 14px;\n border-radius: 3px;\n border: 1px solid #778e9a;\n padding: 6px 8px;\n margin: 10px auto;\n margin-left: 5px;\n margin-bottom: 0;\n cursor: pointer;\n font-family: arial, sans-serif;\n background-color: #ddd;\n background-image: none;\n height: 32px;\n}\n\n.wrs_button_accept,\n.wrs_button_accept:hover,\n.wrs_button_accept:visited,\n.wrs_button_accept:active,\n.wrs_button_accept:focus {\n min-width: 80px;\n font-size: 14px;\n border-radius: 3px;\n border: 1px solid #778e9a;\n padding: 6px 8px;\n margin: 10px auto;\n margin-right: 5px;\n margin-bottom: 0;\n color: #fff;\n background: #778e9a;\n cursor: pointer;\n font-family: arial, sans-serif;\n height: 32px;\n}\n\n.wrs_editor button {\n box-shadow: none;\n}\n\n.wrs_editor .wrs_header button {\n border-bottom: none;\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.wrs_modal_overlay.wrs_modal_desktop.wrs_stack.wrs_overlay_active {\n display: block;\n}\n\n/* Fix selection in drupal style */\n.wrs_toolbar tr:focus {\n background: none;\n}\n\n.wrs_toolbar tr:hover {\n background: none;\n}\n\n/* End of fix drupal */\n.wrs_modal_rtl .wrs_modal_button_cancel {\n margin-right: 5px;\n margin-left: 0;\n}\n\n.wrs_modal_rtl .wrs_modal_button_accept {\n margin-right: 0;\n margin-left: 5px;\n}\n\n.wrs_modal_rtl .wrs_button_cancel {\n margin-right: 5px;\n margin-left: 0;\n}\n\n.wrs_modal_rtl .wrs_button_accept {\n margin-right: 0;\n margin-left: 5px;\n}\n\n/* The Offline Modal (background) */\n.wrs_modal_offline {\n display: none; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 2; /* Sit on top */\n padding-top: 150px; /* Location of the box */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n margin: auto;\n}\n\n/* Modal Content */\n.wrs_modal_content_offline {\n margin: auto;\n padding: 16px;\n background: #fff7ed;\n border-radius: 6px;\n width: 517px;\n height: 100px;\n position: relative;\n}\n\n/* The Close Button */\n.wrs_modal_offline_close {\n color: #c2410c;\n font-size: 24px;\n font-weight: bold;\n left: 95.7%;\n right: 2.08%;\n top: 7.6%;\n bottom: 75%;\n font-family: \"Inter\";\n font-style: normal;\n font-weight: 400;\n position: absolute;\n}\n\n/* The Warn Icon */\n.wrs_modal_offline_warn {\n position: absolute;\n left: 2.08%;\n right: 94%;\n top: 11.6%;\n bottom: 75%;\n font-size: 24px;\n color: #fb923c;\n background-repeat: no-repeat;\n}\n\n.wrs_modal_offline_text_container {\n position: absolute;\n left: 6.8%;\n right: 6.08%;\n top: 10.4%;\n bottom: 2%;\n}\n\n.wrs_modal_offline_text {\n font-family: \"Inter\";\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n color: #c2410c;\n}\n\n.wrs_modal_offline_text_warn {\n height: 25px;\n font-family: \"Inter\";\n font-style: normal;\n font-size: 14px;\n line-height: 20px;\n font-weight: bold;\n color: #c2410c;\n}\n\n.wrs_modal_offline_close:hover,\n.wrs_modal_offline_close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n}\n"]}
|