brilliance-admin 0.42.0__py3-none-any.whl

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.
Files changed (73) hide show
  1. admin_panel/__init__.py +4 -0
  2. admin_panel/api/__init__.py +0 -0
  3. admin_panel/api/routers.py +18 -0
  4. admin_panel/api/utils.py +28 -0
  5. admin_panel/api/views/__init__.py +0 -0
  6. admin_panel/api/views/auth.py +29 -0
  7. admin_panel/api/views/autocomplete.py +33 -0
  8. admin_panel/api/views/graphs.py +30 -0
  9. admin_panel/api/views/index.py +38 -0
  10. admin_panel/api/views/schema.py +29 -0
  11. admin_panel/api/views/settings.py +29 -0
  12. admin_panel/api/views/table.py +136 -0
  13. admin_panel/auth.py +32 -0
  14. admin_panel/docs.py +37 -0
  15. admin_panel/exceptions.py +38 -0
  16. admin_panel/integrations/__init__.py +0 -0
  17. admin_panel/integrations/sqlalchemy/__init__.py +6 -0
  18. admin_panel/integrations/sqlalchemy/auth.py +144 -0
  19. admin_panel/integrations/sqlalchemy/autocomplete.py +38 -0
  20. admin_panel/integrations/sqlalchemy/fields.py +254 -0
  21. admin_panel/integrations/sqlalchemy/fields_schema.py +316 -0
  22. admin_panel/integrations/sqlalchemy/table/__init__.py +19 -0
  23. admin_panel/integrations/sqlalchemy/table/base.py +141 -0
  24. admin_panel/integrations/sqlalchemy/table/create.py +73 -0
  25. admin_panel/integrations/sqlalchemy/table/delete.py +18 -0
  26. admin_panel/integrations/sqlalchemy/table/list.py +178 -0
  27. admin_panel/integrations/sqlalchemy/table/retrieve.py +61 -0
  28. admin_panel/integrations/sqlalchemy/table/update.py +95 -0
  29. admin_panel/schema/__init__.py +7 -0
  30. admin_panel/schema/admin_schema.py +191 -0
  31. admin_panel/schema/category.py +149 -0
  32. admin_panel/schema/graphs/__init__.py +1 -0
  33. admin_panel/schema/graphs/category_graphs.py +50 -0
  34. admin_panel/schema/group.py +67 -0
  35. admin_panel/schema/table/__init__.py +8 -0
  36. admin_panel/schema/table/admin_action.py +76 -0
  37. admin_panel/schema/table/category_table.py +175 -0
  38. admin_panel/schema/table/fields/__init__.py +5 -0
  39. admin_panel/schema/table/fields/base.py +249 -0
  40. admin_panel/schema/table/fields/function_field.py +65 -0
  41. admin_panel/schema/table/fields_schema.py +216 -0
  42. admin_panel/schema/table/table_models.py +53 -0
  43. admin_panel/static/favicon.jpg +0 -0
  44. admin_panel/static/index-BeniOHDv.js +525 -0
  45. admin_panel/static/index-vlBToOhT.css +8 -0
  46. admin_panel/static/materialdesignicons-webfont-CYDMK1kx.woff2 +0 -0
  47. admin_panel/static/materialdesignicons-webfont-CgCzGbLl.woff +0 -0
  48. admin_panel/static/materialdesignicons-webfont-D3kAzl71.ttf +0 -0
  49. admin_panel/static/materialdesignicons-webfont-DttUABo4.eot +0 -0
  50. admin_panel/static/tinymce/dark-first/content.min.css +250 -0
  51. admin_panel/static/tinymce/dark-first/skin.min.css +2820 -0
  52. admin_panel/static/tinymce/dark-slim/content.min.css +249 -0
  53. admin_panel/static/tinymce/dark-slim/skin.min.css +2821 -0
  54. admin_panel/static/tinymce/img/example.png +0 -0
  55. admin_panel/static/tinymce/img/tinymce.woff2 +0 -0
  56. admin_panel/static/tinymce/lightgray/content.min.css +1 -0
  57. admin_panel/static/tinymce/lightgray/fonts/tinymce.woff +0 -0
  58. admin_panel/static/tinymce/lightgray/skin.min.css +1 -0
  59. admin_panel/static/tinymce/plugins/accordion/css/accordion.css +17 -0
  60. admin_panel/static/tinymce/plugins/accordion/plugin.js +48 -0
  61. admin_panel/static/tinymce/plugins/codesample/css/prism.css +1 -0
  62. admin_panel/static/tinymce/plugins/customLink/css/link.css +3 -0
  63. admin_panel/static/tinymce/plugins/customLink/plugin.js +147 -0
  64. admin_panel/static/tinymce/tinymce.min.js +2 -0
  65. admin_panel/static/vanilla-picker-B6E6ObS_.js +8 -0
  66. admin_panel/templates/index.html +25 -0
  67. admin_panel/translations.py +145 -0
  68. admin_panel/utils.py +50 -0
  69. brilliance_admin-0.42.0.dist-info/METADATA +155 -0
  70. brilliance_admin-0.42.0.dist-info/RECORD +73 -0
  71. brilliance_admin-0.42.0.dist-info/WHEEL +5 -0
  72. brilliance_admin-0.42.0.dist-info/licenses/LICENSE +17 -0
  73. brilliance_admin-0.42.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2820 @@
1
+ body {
2
+ --main-bg-color: #010d26;
3
+ --header-color: #001c3b;
4
+ --footer-color: #001c3b;
5
+ --preview-bg-color: #001c3b;
6
+ }
7
+
8
+ .mce-container,.mce-container *,.mce-widget,.mce-widget *,.mce-reset {
9
+ position: static;
10
+ float: none;
11
+ margin: 0;
12
+ padding: 0;
13
+ width: auto;
14
+ max-width: none;
15
+ height: auto;
16
+ border: 0;
17
+ -moz-box-sizing: content-box;
18
+ -webkit-box-sizing: content-box;
19
+ box-sizing: content-box;
20
+ outline: 0;
21
+ vertical-align: top;
22
+ text-decoration: none;
23
+ text-shadow: none!important;
24
+ color: #999;
25
+ line-height: normal;
26
+ direction: ltr;
27
+ text-align: left;
28
+ font-family: 'Trebuchet MS','Tahoma','Arial','Verdana','Helvetica','sans-serif';
29
+ font-size: 14px;
30
+ font-weight: normal;
31
+ white-space: nowrap;
32
+ cursor: inherit;
33
+ -webkit-box-shadow: none!important;
34
+ -moz-box-shadow: none!important;
35
+ box-shadow: none!important;
36
+ -webkit-tap-highlight-color: transparent
37
+ }
38
+
39
+ .mce-panel iframe {
40
+ background: transparent
41
+ }
42
+
43
+ .mce-panel a {
44
+ color: #bbb;
45
+ text-decoration: underline
46
+ }
47
+
48
+ .mce-panel a:hover,.mce-panel a:focus {
49
+ color: #999;
50
+ cursor: pointer!important
51
+ }
52
+
53
+ .mce-panel input,.mce-panel button,.mce-panel textarea {
54
+ -moz-appearance: none;
55
+ -webkit-appearance: none;
56
+ appearance: none;
57
+ display: inline-block;
58
+ position: relative;
59
+ margin: 0;
60
+ padding: 2px 3px;
61
+ height: 24px;
62
+ border: 0;
63
+ border-radius: .01px;
64
+ font-family: 'Verdana','Tahoma','Arial';
65
+ font-size: 13px;
66
+ font-weight: normal;
67
+ line-height: 20px;
68
+ background: var(--main-bg-color);
69
+ color: #999
70
+ }
71
+
72
+ .mce-panel textarea {
73
+ height: auto;
74
+ overflow: auto
75
+ }
76
+
77
+ .mce-panel input[type="checkbox"] {
78
+ margin: 1px;
79
+ width: 16px;
80
+ height: 16px;
81
+ vertical-align: middle;
82
+ cursor: pointer!important
83
+ }
84
+
85
+ .mce-panel button,.mce-panel button[disabled]:hover,.mce-panel .mce-disabled button:hover,.mce-panel input[type="button"],.mce-panel input[type="button"][disabled]:hover,.mce-panel .mce-disabled input[type="button"]:hover,.mce-panel input[type="reset"],.mce-panel input[type="reset"][disabled]:hover,.mce-panel .mce-disabled input[type="reset"]:hover,.mce-panel input[type="submit"],.mce-panel input[type="submit"][disabled]:hover,.mce-panel .mce-disabled input[type="submit"]:hover {
86
+ padding: 4px 12px;
87
+ height: auto;
88
+ color: #999;
89
+ background: #444;
90
+ font-size: 13px;
91
+ text-align: center;
92
+ -webkit-user-select: none;
93
+ -moz-user-select: none;
94
+ user-select: none;
95
+ cursor: pointer!important
96
+ }
97
+
98
+ .mce-panel button[disabled],.mce-panel .mce-disabled button,.mce-panel input[disabled],.mce-panel .mce-disabled input,.mce-panel textarea[disabled],.mce-panel .mce-disabled textarea {
99
+ pointer-events: none;
100
+ cursor: not-allowed!important;
101
+ color: #888;
102
+ opacity: .4
103
+ }
104
+
105
+ .mce-panel input:focus,.mce-panel textarea:focus {
106
+ border: 0;
107
+ outline: 0;
108
+ background: #4e4e4e
109
+ }
110
+
111
+ .mce-btn.mce-active *,.mce-btn.mce-active :hover,.mce-btn.mce-active :focus,.mce-btn.mce-disabled *,.mce-panel button:hover,.mce-panel input[type="button"]:hover,.mce-panel input[type="reset"]:hover,.mce-panel input[type="submit"]:hover,.mce-panel button:focus,.mce-panel input[type="button"]:focus,.mce-panel input[type="reset"]:focus,.mce-panel input[type="submit"]:focus {
112
+ background: var(--footer-color)
113
+ }
114
+
115
+ .mce-btn button:active,.mce-panel input[type="button"]:active,.mce-panel input[type="reset"]:active,.mce-panel input[type="submit"]:active,.mce-panel input[type="checkbox"]:active {
116
+ -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.2)!important;
117
+ -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.2)!important;
118
+ box-shadow: inset 0 2px 4px rgba(0,0,0,.2)!important
119
+ }
120
+
121
+ .mce-panel input[type="checkbox"]:checked:before {
122
+ content: '';
123
+ position: absolute;
124
+ top: -5px;
125
+ left: 7px;
126
+ display: table;
127
+ width: 5px;
128
+ height: 14px;
129
+ border: 2px solid #999;
130
+ border-top: 0;
131
+ border-left: 0;
132
+ -webkit-transform: rotate(45deg);
133
+ -moz-transform: rotate(45deg);
134
+ transform: rotate(45deg)
135
+ }
136
+
137
+ .mce-panel button::-moz-focus-inner,.mce-panel input::-moz-focus-inner {
138
+ padding: 0;
139
+ border: 0
140
+ }
141
+
142
+ .mce-panel input:-moz-placeholder,.mce-panel textarea:-moz-placeholder,.mce-panel input::-webkit-input-placeholder,.mce-panel textarea::-webkit-input-placeholder {
143
+ color: #999
144
+ }
145
+
146
+ .mce-container b {
147
+ font-weight: bold
148
+ }
149
+
150
+ .mce-container p {
151
+ margin-bottom: 5px
152
+ }
153
+
154
+ .mce-container ul {
155
+ margin-left: 15px
156
+ }
157
+
158
+ .mce-widget button {
159
+ -moz-box-sizing: border-box;
160
+ -webkit-box-sizing: border-box;
161
+ box-sizing: border-box
162
+ }
163
+
164
+ .mce-caret {
165
+ content: '';
166
+ display: inline-block;
167
+ width: 0;
168
+ height: 0;
169
+ vertical-align: top;
170
+ border-top: 4px solid #999;
171
+ border-right: 4px solid transparent;
172
+ border-left: 4px solid transparent
173
+ }
174
+
175
+ .mce-caret.mce-up {
176
+ border-top: 0;
177
+ border-bottom: 4px solid #999
178
+ }
179
+
180
+ .mce-disabled .mce-caret {
181
+ border-top-color: #555
182
+ }
183
+
184
+ .mce-btn {
185
+ position: relative;
186
+ display: inline-block
187
+ }
188
+
189
+ .mce-primary.mce-btn-has-text {
190
+ min-width: 50px
191
+ }
192
+
193
+ .mce-panel .mce-primary * {
194
+ color: #d6d6d6;
195
+ background: #247524
196
+ }
197
+
198
+ .mce-panel .mce-primary.mce-active *,.mce-panel .mce-primary.mce-disabled *,.mce-panel .mce-primary:hover *,.mce-panel .mce-primary:focus * {
199
+ background: #1d651d
200
+ }
201
+
202
+ .mce-btn .mce-txt {
203
+ font-size: inherit;
204
+ line-height: inherit;
205
+ color: inherit
206
+ }
207
+
208
+ .mce-btn-large button {
209
+ padding: 9px 14px;
210
+ font-size: 16px;
211
+ line-height: normal
212
+ }
213
+
214
+ .mce-btn-large i {
215
+ margin-top: 2px
216
+ }
217
+
218
+ .mce-btn-small button {
219
+ padding: 1px 5px;
220
+ font-size: 12px
221
+ }
222
+
223
+ .mce-btn-small i {
224
+ line-height: 20px;
225
+ vertical-align: top
226
+ }
227
+
228
+ .mce-btn .mce-caret,.mce-btn-small .mce-caret {
229
+ margin-top: 8px;
230
+ margin-left: 0
231
+ }
232
+
233
+ .mce-btn-flat {
234
+ padding: 2px;
235
+ box-sizing: border-box;
236
+ text-align: center
237
+ }
238
+
239
+ .mce-btn-has-text .mce-ico {
240
+ padding-right: 5px
241
+ }
242
+
243
+ .mce-rtl .mce-btn button {
244
+ direction: rtl
245
+ }
246
+
247
+ .mce-btn-group:not(:last-child) {
248
+ border-right: 1px solid rgba(153,153,153,.2)
249
+ }
250
+
251
+ .mce-btn-group {
252
+ margin-left: 2px
253
+ }
254
+
255
+ .mce-btn-group .mce-btn.mce-flow-layout-item {
256
+ margin: 0
257
+ }
258
+
259
+ .mce-rtl .mce-btn-group .mce-btn {
260
+ margin-left: 0;
261
+ margin-right: 2px
262
+ }
263
+
264
+ .mce-rtl .mce-btn-group .mce-first {
265
+ margin-right: 0
266
+ }
267
+
268
+ .mce-rtl .mce-btn-group:not(:first-child) {
269
+ border-left: none;
270
+ border-right: 1px solid #555
271
+ }
272
+
273
+ .mce-rtl .mce-splitbtn {
274
+ direction: rtl;
275
+ text-align: right
276
+ }
277
+
278
+ .mce-splitbtn .mce-open {
279
+ padding-right: 4px;
280
+ padding-left: 4px;
281
+ border-left: 1px solid transparent
282
+ }
283
+
284
+ .mce-rtl .mce-splitbtn .mce-open {
285
+ padding-right: 4px;
286
+ padding-left: 4px;
287
+ border-left: 0;
288
+ border-right: 1px solid transparent
289
+ }
290
+
291
+ .mce-splitbtn:hover .mce-open,.mce-splitbtn:focus .mce-open {
292
+ border-color: #999
293
+ }
294
+
295
+ .mce-splitbtn.mce-btn-small .mce-open {
296
+ padding: 0 3px
297
+ }
298
+
299
+ .mce-colorbutton .mce-ico {
300
+ position: relative
301
+ }
302
+
303
+ .mce-colorbutton-grid {
304
+ margin: 4px
305
+ }
306
+
307
+ .mce-colorbutton .mce-preview {
308
+ display: block;
309
+ position: absolute;
310
+ left: 50%;
311
+ top: 50%;
312
+ margin-left: -7px;
313
+ margin-top: 7px;
314
+ background: #999;
315
+ width: 15px;
316
+ height: 2px;
317
+ overflow: hidden
318
+ }
319
+
320
+ .mce-colorbutton.mce-btn-small .mce-preview {
321
+ margin-left: -16px;
322
+ padding-right: 0;
323
+ width: 16px
324
+ }
325
+
326
+ .mce-rtl .mce-colorbutton {
327
+ direction: rtl
328
+ }
329
+
330
+ div.mce-menubtn.mce-opened {
331
+ z-index: 65537
332
+ }
333
+
334
+ div.mce-menubtn.mce-opened.mce-opened-under {
335
+ z-index: 0
336
+ }
337
+
338
+ .mce-menubtn.mce-btn-small span {
339
+ font-size: 12px
340
+ }
341
+
342
+ .mce-menubtn.mce-fixed-width span {
343
+ display: inline-block;
344
+ overflow-x: hidden;
345
+ text-overflow: ellipsis
346
+ }
347
+
348
+ .mce-rtl .mce-menubtn button {
349
+ direction: rtl;
350
+ text-align: right
351
+ }
352
+
353
+ .mce-rtl .mce-menubtn.mce-fixed-width span {
354
+ direction: rtl;
355
+ text-align: right
356
+ }
357
+
358
+ .mce-listbox button {
359
+ text-align: left;
360
+ padding-right: 20px;
361
+ position: relative
362
+ }
363
+
364
+ .mce-listbox .mce-caret {
365
+ position: absolute;
366
+ margin-top: -2px;
367
+ right: 8px;
368
+ top: 50%
369
+ }
370
+
371
+ .mce-rtl .mce-listbox .mce-caret {
372
+ right: auto;
373
+ left: 8px
374
+ }
375
+
376
+ .mce-rtl .mce-listbox button {
377
+ padding-right: 10px;
378
+ padding-left: 20px
379
+ }
380
+
381
+ .mce-container [unselectable] {
382
+ -moz-user-select: none;
383
+ -webkit-user-select: none;
384
+ user-select: none
385
+ }
386
+
387
+ .mce-tinymce {
388
+ display: block;
389
+ position: relative;
390
+ visibility: inherit!important;
391
+ background: var(--preview-bg-color)
392
+ }
393
+
394
+ .mce-container,.mce-container-body {
395
+ display: block
396
+ }
397
+
398
+ div.mce-edit-area {
399
+ background: var(--main-bg-color)
400
+ }
401
+
402
+ .mce-fullscreen {
403
+ border: 0;
404
+ padding: 0;
405
+ margin: 0;
406
+ overflow: hidden;
407
+ height: 100%;
408
+ z-index: 100
409
+ }
410
+
411
+ .mce-fullscreen .mce-resizehandle {
412
+ display: none
413
+ }
414
+
415
+ div.mce-fullscreen {
416
+ position: fixed;
417
+ top: 0;
418
+ left: 0;
419
+ width: 100%;
420
+ height: auto
421
+ }
422
+
423
+ .mce-top-part {
424
+ position: relative;
425
+ background: var(--header-color)
426
+ }
427
+
428
+ .mce-top-part::before {
429
+ content: '';
430
+ position: absolute;
431
+ top: 0;
432
+ right: 0;
433
+ bottom: 0;
434
+ left: 0;
435
+ pointer-events: none
436
+ }
437
+
438
+ .mce-menubar {
439
+ padding-bottom: 2px;
440
+ border-bottom: 1px solid rgba(153,153,153,.2)
441
+ }
442
+
443
+ .mce-menubar .mce-menubtn {
444
+ margin: 0
445
+ }
446
+
447
+ .mce-menubar .mce-menubtn.mce-active {
448
+ z-index: 65537
449
+ }
450
+
451
+ .mce-menubar .mce-menubtn * {
452
+ background: var(--header-color)
453
+ }
454
+
455
+ .mce-menubar .mce-menubtn:hover,.mce-menubar .mce-menubtn:hover *,.mce-menubar .mce-menubtn:focus,.mce-menubar .mce-menubtn:focus *,.mce-menubar .mce-menubtn.mce-active,.mce-menubar .mce-menubtn.mce-active * {
456
+ background: var(--main-bg-color)
457
+ }
458
+
459
+ .mce-menubar .mce-menubtn button:active {
460
+ -webkit-box-shadow: none!important;
461
+ -moz-box-shadow: none!important;
462
+ box-shadow: none!important
463
+ }
464
+
465
+ .mce-toolbar-grp {
466
+ padding-top: 2px
467
+ }
468
+
469
+ .mce-toolbar-grp .mce-btn-group {
470
+ margin: 0 0 2px!important
471
+ }
472
+
473
+ .mce-toolbar-grp .mce-btn:not(.mce-listbox) button:not(.mce-open) {
474
+ padding: 4px 10px
475
+ }
476
+
477
+ .mce-toolbar-grp .mce-btn :not(.mce-preview) {
478
+ background: var(--header-color)
479
+ }
480
+
481
+ .mce-toolbar-grp .mce-btn:not(.mce-disabled):hover,.mce-toolbar-grp .mce-btn:not(.mce-disabled):hover :not(.mce-preview),.mce-toolbar-grp .mce-btn:not(.mce-disabled):focus,.mce-toolbar-grp .mce-btn:not(.mce-disabled):focus :not(.mce-preview),.mce-toolbar-grp .mce-btn.mce-active * {
482
+ color: #ccc;
483
+ background: var(--header-color)
484
+ }
485
+
486
+ .mce-toolbar-grp .mce-btn button:active {
487
+ -webkit-box-shadow: none!important;
488
+ -moz-box-shadow: none!important;
489
+ box-shadow: none!important
490
+ }
491
+
492
+ .mce-toolbar-grp .mce-btn.mce-active * {
493
+ background: var(--main-bg-color)!important
494
+ }
495
+
496
+ .mce-toolbar-grp .mce-splitbtn.mce-opened *,.mce-toolbar-grp .mce-listbox.mce-active *,.mce-toolbar-grp .mce-listbox.mce-active:hover *,.mce-toolbar-grp .mce-listbox.mce-active:focus * {
497
+ background: var(--main-bg-color)!important
498
+ }
499
+
500
+ .mce-toolbar-grp .mce-menubtn:hover .mce-caret,.mce-toolbar-grp .mce-menubtn:focus .mce-caret,.mce-toolbar-grp .mce-menubtn.mce-active .mce-caret {
501
+ border-top-color: #ccc
502
+ }
503
+
504
+ .mce-edit-aria-container > .mce-container-body .mce-sidebar-panel {
505
+ min-width: 250px;
506
+ max-width: 250px;
507
+ position: relative
508
+ }
509
+
510
+ .mce-edit-aria-container > .mce-container-body .mce-sidebar > .mce-container-body {
511
+ display: flex;
512
+ align-items: stretch;
513
+ height: 100%
514
+ }
515
+
516
+ .mce-edit-aria-container > .mce-container-body .mce-sidebar-panel > .mce-container-body {
517
+ position: absolute;
518
+ width: 100%;
519
+ height: 100%;
520
+ overflow: auto;
521
+ top: 0;
522
+ left: 0
523
+ }
524
+
525
+ .mce-sidebar-panel {
526
+ border-left: 0 solid #4e4e4e
527
+ }
528
+
529
+ .mce-statusbar {
530
+ position: relative;
531
+ background: var(--footer-color)
532
+ }
533
+
534
+ .mce-statusbar .mce-container-body {
535
+ position: relative;
536
+ font-size: 11px
537
+ }
538
+
539
+ .mce-statusbar > .mce-container-body {
540
+ display: flex;
541
+ padding-right: 16px
542
+ }
543
+
544
+ .mce-statusbar .mce-flow-layout-item {
545
+ margin: 0
546
+ }
547
+
548
+ .mce-branding {
549
+ font-size: inherit;
550
+ text-transform: uppercase;
551
+ white-space: pre;
552
+ padding: 8px 0
553
+ }
554
+
555
+ .mce-branding a {
556
+ font-size: inherit
557
+ }
558
+
559
+ .mce-statusbar > .mce-container-body .mce-path {
560
+ flex: 1
561
+ }
562
+
563
+ .mce-path {
564
+ display: inline-block;
565
+ padding: 8px;
566
+ white-space: normal;
567
+ font-size: inherit
568
+ }
569
+
570
+ .mce-path .mce-txt {
571
+ display: inline-block;
572
+ padding-right: 3px
573
+ }
574
+
575
+ .mce-path .mce-path-body {
576
+ display: inline-block
577
+ }
578
+
579
+ .mce-path-item {
580
+ display: inline-block;
581
+ cursor: pointer!important;
582
+ font-size: inherit;
583
+ text-transform: uppercase
584
+ }
585
+
586
+ .mce-path-item:hover {
587
+ text-decoration: underline
588
+ }
589
+
590
+ .mce-path-item:focus {
591
+ background: #555c66;
592
+ color: white
593
+ }
594
+
595
+ .mce-path .mce-divider {
596
+ display: inline;
597
+ font-size: inherit
598
+ }
599
+
600
+ .mce-disabled .mce-path-item {
601
+ color: #aaa
602
+ }
603
+
604
+ .mce-rtl .mce-path {
605
+ direction: rtl;
606
+ text-align: right;
607
+ padding-right: 16px
608
+ }
609
+
610
+ .mce-rtl .mce-statusbar > .mce-container-body > :last-child {
611
+ padding-right: 0;
612
+ padding-left: 10px
613
+ }
614
+
615
+ .mce-tooltip {
616
+ position: absolute;
617
+ padding: 5px;
618
+ opacity: .9;
619
+ zoom: 1;
620
+ margin-top: 1px
621
+ }
622
+
623
+ .mce-tooltip-inner {
624
+ padding: 2px 8px;
625
+ max-width: 200px;
626
+ background: #272727;
627
+ font-size: 12px;
628
+ line-height: 20px;
629
+ text-align: center;
630
+ white-space: normal
631
+ }
632
+
633
+ .mce-tooltip-arrow {
634
+ position: absolute;
635
+ width: 0;
636
+ height: 0;
637
+ line-height: 0;
638
+ border: 5px dashed #272727
639
+ }
640
+
641
+ .mce-tooltip-arrow-n {
642
+ border-bottom-color: #272727
643
+ }
644
+
645
+ .mce-tooltip-arrow-s {
646
+ border-top-color: #272727
647
+ }
648
+
649
+ .mce-tooltip-arrow-e {
650
+ border-left-color: #272727
651
+ }
652
+
653
+ .mce-tooltip-arrow-w {
654
+ border-right-color: #272727
655
+ }
656
+
657
+ .mce-tooltip-nw,.mce-tooltip-sw {
658
+ margin-left: -14px
659
+ }
660
+
661
+ .mce-tooltip-ne,.mce-tooltip-se {
662
+ margin-left: 14px
663
+ }
664
+
665
+ .mce-tooltip-n .mce-tooltip-arrow {
666
+ top: 0;
667
+ left: 50%;
668
+ margin-left: -5px;
669
+ border-bottom-style: solid;
670
+ border-top: none;
671
+ border-left-color: transparent;
672
+ border-right-color: transparent
673
+ }
674
+
675
+ .mce-tooltip-nw .mce-tooltip-arrow {
676
+ top: 0;
677
+ left: 10px;
678
+ border-bottom-style: solid;
679
+ border-top: none;
680
+ border-left-color: transparent;
681
+ border-right-color: transparent
682
+ }
683
+
684
+ .mce-tooltip-ne .mce-tooltip-arrow {
685
+ top: 0;
686
+ right: 10px;
687
+ border-bottom-style: solid;
688
+ border-top: none;
689
+ border-left-color: transparent;
690
+ border-right-color: transparent
691
+ }
692
+
693
+ .mce-tooltip-s .mce-tooltip-arrow {
694
+ bottom: 0;
695
+ left: 50%;
696
+ margin-left: -5px;
697
+ border-top-style: solid;
698
+ border-bottom: none;
699
+ border-left-color: transparent;
700
+ border-right-color: transparent
701
+ }
702
+
703
+ .mce-tooltip-sw .mce-tooltip-arrow {
704
+ bottom: 0;
705
+ left: 10px;
706
+ border-top-style: solid;
707
+ border-bottom: none;
708
+ border-left-color: transparent;
709
+ border-right-color: transparent
710
+ }
711
+
712
+ .mce-tooltip-se .mce-tooltip-arrow {
713
+ bottom: 0;
714
+ right: 10px;
715
+ border-top-style: solid;
716
+ border-bottom: none;
717
+ border-left-color: transparent;
718
+ border-right-color: transparent
719
+ }
720
+
721
+ .mce-tooltip-e .mce-tooltip-arrow {
722
+ right: 0;
723
+ top: 50%;
724
+ margin-top: -5px;
725
+ border-left-style: solid;
726
+ border-right: none;
727
+ border-top-color: transparent;
728
+ border-bottom-color: transparent
729
+ }
730
+
731
+ .mce-tooltip-w .mce-tooltip-arrow {
732
+ left: 0;
733
+ top: 50%;
734
+ margin-top: -5px;
735
+ border-right-style: solid;
736
+ border-left: none;
737
+ border-top-color: transparent;
738
+ border-bottom-color: transparent
739
+ }
740
+
741
+ .mce-tabs {
742
+ display: block;
743
+ background: var(--header-color)
744
+ }
745
+
746
+ .mce-tabs * {
747
+ color: #666;
748
+ text-decoration: underline
749
+ }
750
+
751
+ .mce-tab {
752
+ display: inline-block;
753
+ padding: 6px 10px;
754
+ background: #222;
755
+ cursor: pointer!important
756
+ }
757
+
758
+ .mce-tab:hover,.mce-tab:focus,.mce-tab.mce-active {
759
+ color: #999
760
+ }
761
+
762
+ .mce-tab.mce-active {
763
+ background: var(--preview-bg-color);
764
+ text-decoration: none
765
+ }
766
+
767
+ .mce-rtl .mce-tabs {
768
+ text-align: right;
769
+ direction: rtl
770
+ }
771
+
772
+ .mce-panel .mce-table-striped {
773
+ margin: 10px;
774
+ border-collapse: collapse;
775
+ background: var(--footer-color)
776
+ }
777
+
778
+ .mce-panel .mce-table-striped thead > tr {
779
+ background-color: var(--main-bg-color)
780
+ }
781
+
782
+ .mce-panel .mce-table-striped thead > tr th {
783
+ border-right: 1px solid var(--footer-color);
784
+ font-weight: bold
785
+ }
786
+
787
+ .mce-panel .mce-table-striped thead > tr th:last-child {
788
+ border: 0
789
+ }
790
+
791
+ .mce-panel .mce-table-striped td,.mce-panel .mce-table-striped th {
792
+ padding: 5px
793
+ }
794
+
795
+ .mce-panel .mce-table-striped td {
796
+ border-bottom: 1px solid var(--main-bg-color)
797
+ }
798
+
799
+ .mce-panel .mce-table-striped tr:last-child td {
800
+ border: 0
801
+ }
802
+
803
+ .mce-panel .mce-table-striped tbody > tr:hover {
804
+ background-color: #2d2d2d
805
+ }
806
+
807
+ .mce-charmap {
808
+ border-collapse: collapse
809
+ }
810
+
811
+ .mce-charmap td {
812
+ cursor: default;
813
+ border: 1px solid #444;
814
+ width: 20px;
815
+ height: 20px;
816
+ line-height: 20px;
817
+ text-align: center;
818
+ vertical-align: middle;
819
+ padding: 2px
820
+ }
821
+
822
+ .mce-charmap td div {
823
+ text-align: center
824
+ }
825
+
826
+ .mce-charmap td:hover {
827
+ background: white
828
+ }
829
+
830
+ .mce-grid td.mce-grid-cell div {
831
+ border: 1px solid #c5c5c5;
832
+ width: 15px;
833
+ height: 15px;
834
+ margin: 0;
835
+ cursor: pointer
836
+ }
837
+
838
+ .mce-grid td.mce-grid-cell div:focus {
839
+ border-color: #91bbe9
840
+ }
841
+
842
+ .mce-grid td.mce-grid-cell div[disabled] {
843
+ cursor: not-allowed
844
+ }
845
+
846
+ .mce-grid {
847
+ border-spacing: 2px;
848
+ border-collapse: separate
849
+ }
850
+
851
+ .mce-grid a {
852
+ display: block;
853
+ border: 1px solid #4e4e4e
854
+ }
855
+
856
+ .mce-grid-border {
857
+ margin: 4px
858
+ }
859
+
860
+ .mce-grid-border a {
861
+ width: 13px;
862
+ height: 13px
863
+ }
864
+
865
+ .mce-grid-border a:hover,.mce-grid-border a.mce-active {
866
+ background: #4e4e4e
867
+ }
868
+
869
+ .mce-floatpanel {
870
+ position: absolute;
871
+ background: var(--main-bg-color)
872
+ }
873
+
874
+ .mce-floatpanel.mce-fixed {
875
+ position: fixed
876
+ }
877
+
878
+ .mce-floatpanel.mce-popover {
879
+ top: 0;
880
+ left: 0
881
+ }
882
+
883
+ .mce-floatpanel .mce-arrow,.mce-floatpanel .mce-arrow:after {
884
+ position: absolute;
885
+ display: block;
886
+ width: 0;
887
+ height: 0;
888
+ border-color: transparent;
889
+ border-style: solid
890
+ }
891
+
892
+ .mce-floatpanel .mce-arrow {
893
+ border-width: 11px
894
+ }
895
+
896
+ .mce-floatpanel .mce-arrow:after {
897
+ content: '';
898
+ border-width: 10px
899
+ }
900
+
901
+ .mce-floatpanel.mce-tinymce-inline .mce-btn * {
902
+ background: var(--main-bg-color)
903
+ }
904
+
905
+ .mce-floatpanel.mce-tinymce-inline .mce-btn:hover *,.mce-floatpanel.mce-tinymce-inline .mce-btn button:focus,.mce-floatpanel.mce-tinymce-inline .mce-btn button:focus *,.mce-floatpanel.mce-tinymce-inline .mce-btn button:active,.mce-floatpanel.mce-tinymce-inline .mce-btn button:active *,.mce-floatpanel.mce-tinymce-inline .mce-active.mce-btn * {
906
+ color: #ccc;
907
+ -webkit-box-shadow: none!important;
908
+ -moz-box-shadow: none!important;
909
+ box-shadow: none!important
910
+ }
911
+
912
+ .mce-floatpanel.mce-tinymce-inline .mce-active.mce-btn * {
913
+ background: #4e4e4e
914
+ }
915
+
916
+ .mce-floatpanel.mce-popover.mce-bottom {
917
+ margin-top: 10px
918
+ }
919
+
920
+ .mce-floatpanel.mce-popover.mce-bottom > .mce-arrow {
921
+ top: -11px;
922
+ left: 50%;
923
+ margin-left: -11px;
924
+ border-top-width: 0
925
+ }
926
+
927
+ .mce-floatpanel.mce-popover.mce-bottom > .mce-arrow:after {
928
+ top: 1px;
929
+ margin-left: -10px;
930
+ border-top-width: 0;
931
+ border-bottom-color: var(--main-bg-color)
932
+ }
933
+
934
+ .mce-floatpanel.mce-popover.mce-top {
935
+ margin-top: -10px
936
+ }
937
+
938
+ .mce-floatpanel.mce-popover.mce-top > .mce-arrow {
939
+ top: auto;
940
+ left: 50%;
941
+ bottom: -11px;
942
+ margin-left: -11px;
943
+ border-bottom-width: 0
944
+ }
945
+
946
+ .mce-floatpanel.mce-popover.mce-top > .mce-arrow:after {
947
+ bottom: 1px;
948
+ margin-left: -10px;
949
+ border-bottom-width: 0;
950
+ border-top-color: var(--main-bg-color)
951
+ }
952
+
953
+ .mce-floatpanel.mce-popover.mce-bottom.mce-start,.mce-floatpanel.mce-popover.mce-top.mce-start {
954
+ margin-left: -22px
955
+ }
956
+
957
+ .mce-floatpanel.mce-popover.mce-bottom.mce-start > .mce-arrow,.mce-floatpanel.mce-popover.mce-top.mce-start > .mce-arrow {
958
+ left: 20px
959
+ }
960
+
961
+ .mce-floatpanel.mce-popover.mce-bottom.mce-end,.mce-floatpanel.mce-popover.mce-top.mce-end {
962
+ margin-left: 22px
963
+ }
964
+
965
+ .mce-floatpanel.mce-popover.mce-bottom.mce-end > .mce-arrow,.mce-floatpanel.mce-popover.mce-top.mce-end > .mce-arrow {
966
+ right: 10px;
967
+ left: auto
968
+ }
969
+
970
+ .mce-arrow-up {
971
+ margin-top: 12px
972
+ }
973
+
974
+ .mce-arrow-down {
975
+ margin-top: -12px
976
+ }
977
+
978
+ .mce-arrow:after {
979
+ content: '';
980
+ position: absolute;
981
+ left: 50%;
982
+ display: block;
983
+ width: 0;
984
+ height: 0;
985
+ border-style: solid;
986
+ border-color: transparent
987
+ }
988
+
989
+ .mce-arrow.mce-arrow-up:after {
990
+ top: -8px;
991
+ border-bottom-color: var(--main-bg-color);
992
+ border-width: 0 8px 8px;
993
+ margin-left: -8px
994
+ }
995
+
996
+ .mce-arrow.mce-arrow-down:after {
997
+ bottom: -8px;
998
+ border-top-color: var(--main-bg-color);
999
+ border-width: 8px 8px 0;
1000
+ margin-left: -8px
1001
+ }
1002
+
1003
+ .mce-arrow.mce-arrow-left:after {
1004
+ left: 9px;
1005
+ margin: 0
1006
+ }
1007
+
1008
+ .mce-arrow.mce-arrow-right:after {
1009
+ left: auto;
1010
+ right: 9px;
1011
+ margin: 0
1012
+ }
1013
+
1014
+ .mce-arrow.mce-arrow-center.mce-arrow.mce-arrow-left:after {
1015
+ left: -8px;
1016
+ top: 50%;
1017
+ border-right-color: var(--main-bg-color);
1018
+ border-width: 8px 8px 8px 0;
1019
+ margin-top: -8px
1020
+ }
1021
+
1022
+ .mce-arrow.mce-arrow-center.mce-arrow.mce-arrow-left {
1023
+ margin-left: 12px
1024
+ }
1025
+
1026
+ .mce-arrow.mce-arrow-center.mce-arrow.mce-arrow-right:after {
1027
+ right: -8px;
1028
+ top: 50%;
1029
+ border-left-color: var(--main-bg-color);
1030
+ border-width: 8px 0 8px 8px;
1031
+ margin-top: -8px
1032
+ }
1033
+
1034
+ .mce-arrow.mce-arrow-center.mce-arrow.mce-arrow-right {
1035
+ margin-left: -14px
1036
+ }
1037
+
1038
+ .mce-menu {
1039
+ position: absolute;
1040
+ left: 0;
1041
+ top: 0;
1042
+ padding: 5px 0;
1043
+ margin: -1px 0 0;
1044
+ min-width: 180px;
1045
+ max-height: 500px;
1046
+ background: var(--main-bg-color);
1047
+ overflow: auto;
1048
+ overflow-x: hidden;
1049
+ z-index: 1002
1050
+ }
1051
+
1052
+ .mce-menu.mce-animate {
1053
+ opacity: .01;
1054
+ transform: rotateY(10deg) rotateX(-10deg);
1055
+ transform-origin: left top
1056
+ }
1057
+
1058
+ .mce-menu.mce-menu-align .mce-menu-shortcut,.mce-menu.mce-menu-align .mce-caret {
1059
+ position: absolute;
1060
+ right: 0
1061
+ }
1062
+
1063
+ .mce-menu i {
1064
+ display: none
1065
+ }
1066
+
1067
+ .mce-menu-has-icons i {
1068
+ display: inline-block
1069
+ }
1070
+
1071
+ .mce-menu.mce-in.mce-animate {
1072
+ opacity: 1;
1073
+ transform: rotateY(0) rotateX(0);
1074
+ transition: opacity .075s ease,transform .1s ease
1075
+ }
1076
+
1077
+ .mce-menu-sub-tr-tl {
1078
+ margin: -6px 0 0 -1px
1079
+ }
1080
+
1081
+ .mce-menu-sub-br-bl {
1082
+ margin: 6px 0 0 -1px
1083
+ }
1084
+
1085
+ .mce-menu-sub-tl-tr {
1086
+ margin: -6px 0 0 1px
1087
+ }
1088
+
1089
+ .mce-menu-sub-bl-br {
1090
+ margin: 6px 0 0 1px
1091
+ }
1092
+
1093
+ .mce-rtl .mce-menu-item .mce-ico {
1094
+ padding-right: 0;
1095
+ padding-left: 4px
1096
+ }
1097
+
1098
+ .mce-rtl.mce-menu-align .mce-caret,.mce-rtl .mce-menu-shortcut {
1099
+ right: auto;
1100
+ left: 0
1101
+ }
1102
+
1103
+ .mce-menu.mce-combobox-menu {
1104
+ border-top: 0;
1105
+ margin-top: 0;
1106
+ max-height: 200px
1107
+ }
1108
+
1109
+ .mce-menu.mce-combobox-menu .mce-menu-item {
1110
+ padding: 4px 6px 4px 4px;
1111
+ font-size: 11px
1112
+ }
1113
+
1114
+ .mce-menu.mce-combobox-menu .mce-menu-item-sep {
1115
+ padding: 0
1116
+ }
1117
+
1118
+ .mce-menu.mce-combobox-menu .mce-text,.mce-menu.mce-combobox-menu .mce-text b {
1119
+ font-size: 11px
1120
+ }
1121
+
1122
+ .mce-menu.mce-combobox-menu .mce-menu-item-link,.mce-menu.mce-combobox-menu .mce-menu-item-link b {
1123
+ font-size: 11px
1124
+ }
1125
+
1126
+ .mce-menu-item {
1127
+ display: block;
1128
+ padding: 6px 4px;
1129
+ clear: both;
1130
+ white-space: nowrap;
1131
+ cursor: pointer;
1132
+ border-left: 4px solid transparent
1133
+ }
1134
+
1135
+ .mce-menu-item:hover,.mce-menu-item:hover *,.mce-menu-item:focus,.mce-menu-item:focus *,.mce-menu-item.mce-active,.mce-menu-item.mce-active *,.mce-menu-item.mce-selected,.mce-menu-item.mce-selected * {
1136
+ color: #ccc;
1137
+ background: #4e4e4e
1138
+ }
1139
+
1140
+ .mce-menu-item.mce-disabled {
1141
+ cursor: default
1142
+ }
1143
+
1144
+ .mce-menu-item.mce-disabled,.mce-menu-item.mce-disabled *,.mce-menu-item.mce-disabled:hover,.mce-menu-item.mce-disabled:hover *,.mce-menu-item.mce-disabled:focus,.mce-menu-item.mce-disabled:focus * {
1145
+ color: #555;
1146
+ background: transparent
1147
+ }
1148
+
1149
+ .mce-menu-item.mce-menu-item-preview.mce-active {
1150
+ border-left: 4px solid #999
1151
+ }
1152
+
1153
+ .mce-menu-item .mce-caret {
1154
+ margin-top: 4px;
1155
+ margin-right: 6px;
1156
+ border-top: 4px solid transparent;
1157
+ border-bottom: 4px solid transparent;
1158
+ border-left: 4px solid #999
1159
+ }
1160
+
1161
+ .mce-rtl .mce-menu-item .mce-caret {
1162
+ margin-left: 6px;
1163
+ margin-right: 0;
1164
+ border-left: 0;
1165
+ border-right: 4px solid #999
1166
+ }
1167
+
1168
+ .mce-menu-item.mce-selected .mce-caret,.mce-menu-item:focus .mce-caret,.mce-menu-item:hover .mce-caret {
1169
+ border-left-color: #ccc
1170
+ }
1171
+
1172
+ .mce-rtl .mce-menu-item.mce-selected .mce-caret,.mce-rtl .mce-menu-item:focus .mce-caret,.mce-rtl .mce-menu-item:hover .mce-caret {
1173
+ border-right-color: #ccc
1174
+ }
1175
+
1176
+ .mce-menu-item .mce-text,.mce-menu-item .mce-text b {
1177
+ line-height: 1;
1178
+ vertical-align: initial
1179
+ }
1180
+
1181
+ .mce-menu-item .mce-menu-shortcut {
1182
+ display: inline-block;
1183
+ padding: 0 10px 0 20px
1184
+ }
1185
+
1186
+ .mce-menu-item .mce-ico {
1187
+ padding-right: 4px
1188
+ }
1189
+
1190
+ .mce-menu-item.mce-active.mce-menu-item-checkbox .mce-ico {
1191
+ visibility: visible
1192
+ }
1193
+
1194
+ .mce-menu-item-link {
1195
+ color: #093;
1196
+ overflow: hidden;
1197
+ text-overflow: ellipsis;
1198
+ white-space: nowrap
1199
+ }
1200
+
1201
+ .mce-menu-item-link b {
1202
+ color: #093
1203
+ }
1204
+
1205
+ .mce-menu-item-ellipsis {
1206
+ display: block;
1207
+ text-overflow: ellipsis;
1208
+ white-space: nowrap;
1209
+ overflow: hidden
1210
+ }
1211
+
1212
+ div.mce-menu .mce-menu-item-sep,.mce-menu-item-sep:hover {
1213
+ border: 0;
1214
+ padding: 0;
1215
+ height: 1px;
1216
+ margin: 9px 1px;
1217
+ overflow: hidden;
1218
+ background: transparent;
1219
+ border-bottom: 1px solid rgba(153,153,153,.1);
1220
+ cursor: default
1221
+ }
1222
+
1223
+ div.mce-menu .mce-menu-item b {
1224
+ font-weight: bold
1225
+ }
1226
+
1227
+ .mce-menu-item-indent-1 {
1228
+ padding-left: 20px
1229
+ }
1230
+
1231
+ .mce-menu-item-indent-2 {
1232
+ padding-left: 35px;
1233
+ padding-left: 35px
1234
+ }
1235
+
1236
+ .mce-menu-item-indent-3 {
1237
+ padding-left: 40px
1238
+ }
1239
+
1240
+ .mce-menu-item-indent-4 {
1241
+ padding-left: 45px
1242
+ }
1243
+
1244
+ .mce-menu-item-indent-5 {
1245
+ padding-left: 50px
1246
+ }
1247
+
1248
+ .mce-menu-item-indent-6 {
1249
+ padding-left: 55px
1250
+ }
1251
+
1252
+ .mce-menu.mce-rtl {
1253
+ direction: rtl
1254
+ }
1255
+
1256
+ .mce-rtl .mce-menu-item {
1257
+ text-align: right;
1258
+ direction: rtl;
1259
+ padding: 6px 12px 6px 15px
1260
+ }
1261
+
1262
+ .mce-rtl .mce-menu-item .mce-ico {
1263
+ padding-right: 0;
1264
+ padding-left: 4px
1265
+ }
1266
+
1267
+ .mce-window-move {
1268
+ cursor: move
1269
+ }
1270
+
1271
+ .mce-window {
1272
+ position: fixed;
1273
+ top: 0;
1274
+ left: 0;
1275
+ background: var(--preview-bg-color);
1276
+ opacity: 0;
1277
+ transform: scale(.1);
1278
+ transition: transform 100ms ease-in,opacity 150ms ease-in
1279
+ }
1280
+
1281
+ .mce-window.mce-in {
1282
+ transform: scale(1);
1283
+ opacity: 1
1284
+ }
1285
+
1286
+ .mce-window-head {
1287
+ position: relative;
1288
+ padding: 9px 15px;
1289
+ background: var(--header-color)
1290
+ }
1291
+
1292
+ .mce-window-head .mce-close {
1293
+ position: absolute;
1294
+ right: 0;
1295
+ top: 0;
1296
+ padding: 9px 9px 0 0;
1297
+ background: transparent;
1298
+ text-align: center;
1299
+ cursor: pointer
1300
+ }
1301
+
1302
+ .mce-rtl .mce-window-head .mce-close {
1303
+ position: absolute;
1304
+ right: auto;
1305
+ left: 0
1306
+ }
1307
+
1308
+ .mce-panel .mce-close,.mce-panel .mce-close * {
1309
+ width: auto;
1310
+ height: auto
1311
+ }
1312
+
1313
+ .mce-panel .mce-close:hover,.mce-panel .mce-close:focus,.mce-panel .mce-close:active {
1314
+ background: transparent;
1315
+ -webkit-box-shadow: none!important;
1316
+ -moz-box-shadow: none!important;
1317
+ box-shadow: none!important
1318
+ }
1319
+
1320
+ .mce-panel .mce-close:hover i {
1321
+ color: #c32020
1322
+ }
1323
+
1324
+ .mce-window-head .mce-title {
1325
+ padding-right: 20px;
1326
+ font-size: 110%;
1327
+ font-weight: bold
1328
+ }
1329
+
1330
+ .mce-rtl .mce-window-head .mce-title {
1331
+ direction: rtl;
1332
+ text-align: right;
1333
+ padding-right: 0;
1334
+ padding-left: 20px
1335
+ }
1336
+
1337
+ .mce-window .mce-container-body {
1338
+ display: block
1339
+ }
1340
+
1341
+ .mce-foot {
1342
+ display: block;
1343
+ border-top: 1px solid var(--main-bg-color)
1344
+ }
1345
+
1346
+ .mce-window-head .mce-dragh {
1347
+ position: absolute;
1348
+ top: 0;
1349
+ left: 0;
1350
+ cursor: move;
1351
+ width: 90%;
1352
+ height: 100%
1353
+ }
1354
+
1355
+ .mce-rtl .mce-window-head .mce-dragh {
1356
+ left: auto;
1357
+ right: 0
1358
+ }
1359
+
1360
+ .mce-window iframe {
1361
+ width: 100%;
1362
+ height: 100%
1363
+ }
1364
+
1365
+ .mce-window[aria-label='Help'] .mce-abs-layout-item.mce-last .mce-abs-layout-item.mce-last * {
1366
+ background: transparent!important
1367
+ }
1368
+
1369
+ .mce-colorpicker {
1370
+ position: relative;
1371
+ width: 250px;
1372
+ height: 220px
1373
+ }
1374
+
1375
+ .mce-colorpicker-sv {
1376
+ position: absolute;
1377
+ top: 0;
1378
+ left: 0;
1379
+ width: 90%;
1380
+ height: 100%;
1381
+ cursor: crosshair;
1382
+ overflow: hidden
1383
+ }
1384
+
1385
+ .mce-colorpicker-h-chunk {
1386
+ width: 100%
1387
+ }
1388
+
1389
+ .mce-colorpicker-overlay1,.mce-colorpicker-overlay2 {
1390
+ width: 100%;
1391
+ height: 100%;
1392
+ position: absolute;
1393
+ top: 0;
1394
+ left: 0
1395
+ }
1396
+
1397
+ .mce-colorpicker-overlay1 {
1398
+ background: linear-gradient(to right,#fff,rgba(255,255,255,0))
1399
+ }
1400
+
1401
+ .mce-colorpicker-overlay2 {
1402
+ background: linear-gradient(to bottom,rgba(0,0,0,0),#000)
1403
+ }
1404
+
1405
+ .mce-colorpicker-selector1 {
1406
+ background: none;
1407
+ position: absolute;
1408
+ width: 12px;
1409
+ height: 12px;
1410
+ margin: -8px 0 0 -8px;
1411
+ border: 1px solid black;
1412
+ border-radius: 50%
1413
+ }
1414
+
1415
+ .mce-colorpicker-selector2 {
1416
+ position: absolute;
1417
+ width: 10px;
1418
+ height: 10px;
1419
+ border: 1px solid white;
1420
+ border-radius: 50%
1421
+ }
1422
+
1423
+ .mce-colorpicker-h {
1424
+ position: absolute;
1425
+ top: 0;
1426
+ right: 0;
1427
+ width: 6.5%;
1428
+ height: 100%;
1429
+ cursor: crosshair
1430
+ }
1431
+
1432
+ .mce-colorpicker-h-marker {
1433
+ margin-top: -4px;
1434
+ position: absolute;
1435
+ top: 0;
1436
+ width: 100%;
1437
+ height: 4px;
1438
+ border-top: 1px solid #777;
1439
+ border-bottom: 1px solid #777;
1440
+ background: white;
1441
+ z-index: 100
1442
+ }
1443
+
1444
+ .mce-imagetool.mce-btn .mce-ico {
1445
+ display: block;
1446
+ width: 20px;
1447
+ height: 20px;
1448
+ text-align: center;
1449
+ line-height: 20px;
1450
+ font-size: 20px;
1451
+ padding: 5px
1452
+ }
1453
+
1454
+ .mce-croprect-container {
1455
+ position: absolute;
1456
+ top: 0;
1457
+ left: 0
1458
+ }
1459
+
1460
+ .mce-croprect-handle {
1461
+ position: absolute;
1462
+ top: 0;
1463
+ left: 0;
1464
+ width: 20px;
1465
+ height: 20px;
1466
+ border: 2px solid white
1467
+ }
1468
+
1469
+ .mce-croprect-handle-nw {
1470
+ border-width: 2px 0 0 2px;
1471
+ margin: -2px 0 0 -2px;
1472
+ cursor: nw-resize;
1473
+ top: 100px;
1474
+ left: 100px
1475
+ }
1476
+
1477
+ .mce-croprect-handle-ne {
1478
+ border-width: 2px 2px 0 0;
1479
+ margin: -2px 0 0 -20px;
1480
+ cursor: ne-resize;
1481
+ top: 100px;
1482
+ left: 200px
1483
+ }
1484
+
1485
+ .mce-croprect-handle-sw {
1486
+ border-width: 0 0 2px 2px;
1487
+ margin: -20px 2px 0 -2px;
1488
+ cursor: sw-resize;
1489
+ top: 200px;
1490
+ left: 100px
1491
+ }
1492
+
1493
+ .mce-croprect-handle-se {
1494
+ border-width: 0 2px 2px 0;
1495
+ margin: -20px 0 0 -20px;
1496
+ cursor: se-resize;
1497
+ top: 200px;
1498
+ left: 200px
1499
+ }
1500
+
1501
+ .mce-croprect-handle-move {
1502
+ position: absolute;
1503
+ cursor: move;
1504
+ border: 0
1505
+ }
1506
+
1507
+ .mce-croprect-block {
1508
+ opacity: .5;
1509
+ zoom: 1;
1510
+ position: absolute;
1511
+ background: black
1512
+ }
1513
+
1514
+ .mce-croprect-handle:focus {
1515
+ border-color: #2276d2
1516
+ }
1517
+
1518
+ .mce-croprect-handle-move:focus {
1519
+ outline: 1px solid #2276d2
1520
+ }
1521
+
1522
+ .mce-imagepanel {
1523
+ overflow: auto
1524
+ }
1525
+
1526
+ .mce-imagepanel-bg {
1527
+ position: absolute;
1528
+ background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)
1529
+ }
1530
+
1531
+ .mce-imagepanel img {
1532
+ position: absolute
1533
+ }
1534
+
1535
+ .mce-dropzone {
1536
+ border: 2px dashed #999;
1537
+ text-align: center
1538
+ }
1539
+
1540
+ .mce-dropzone span {
1541
+ text-transform: uppercase;
1542
+ display: inline-block;
1543
+ vertical-align: middle
1544
+ }
1545
+
1546
+ .mce-dropzone:after {
1547
+ content: '';
1548
+ height: 100%;
1549
+ display: inline-block;
1550
+ vertical-align: middle
1551
+ }
1552
+
1553
+ .mce-dropzone.mce-disabled {
1554
+ opacity: .4;
1555
+ zoom: 1
1556
+ }
1557
+
1558
+ .mce-dropzone.mce-disabled.mce-dragenter {
1559
+ cursor: not-allowed
1560
+ }
1561
+
1562
+ .mce-browsebutton {
1563
+ position: relative;
1564
+ overflow: hidden
1565
+ }
1566
+
1567
+ .mce-browsebutton button {
1568
+ position: relative;
1569
+ z-index: 1
1570
+ }
1571
+
1572
+ .mce-browsebutton input {
1573
+ opacity: 0;
1574
+ zoom: 1;
1575
+ position: absolute;
1576
+ top: 0;
1577
+ left: 0;
1578
+ width: 100%;
1579
+ height: 100%;
1580
+ z-index: 0
1581
+ }
1582
+
1583
+ .mce-checkbox {
1584
+ cursor: pointer
1585
+ }
1586
+
1587
+ i.mce-i-checkbox {
1588
+ margin: 0 3px 0 0;
1589
+ background-color: var(--main-bg-color);
1590
+ text-indent: -10em;
1591
+ overflow: hidden
1592
+ }
1593
+
1594
+ .mce-checked i.mce-i-checkbox {
1595
+ color: #999;
1596
+ font-size: 16px;
1597
+ line-height: 16px;
1598
+ text-indent: 0;
1599
+ overflow: visible
1600
+ }
1601
+
1602
+ i.mce-i-checkbox:before {
1603
+ position: relative;
1604
+ top: -3px;
1605
+ left: -1px;
1606
+ font-size: 140%
1607
+ }
1608
+
1609
+ .mce-checkbox:focus i.mce-i-checkbox,.mce-checkbox.mce-focus i.mce-i-checkbox {
1610
+ background-color: #4e4e4e
1611
+ }
1612
+
1613
+ .mce-checkbox.mce-disabled .mce-label,.mce-checkbox.mce-disabled i.mce-i-checkbox {
1614
+ cursor: not-allowed!important;
1615
+ color: #888;
1616
+ opacity: .4
1617
+ }
1618
+
1619
+ .mce-checkbox.mce-disabled i.mce-i-checkbox {
1620
+ -webkit-box-shadow: inset 1px 2px 3px rgba(0,0,0,.1)!important;
1621
+ -moz-box-shadow: inset 1px 2px 3px rgba(0,0,0,.1)!important;
1622
+ box-shadow: inset 1px 2px 3px rgba(0,0,0,.1)!important
1623
+ }
1624
+
1625
+ .mce-checkbox .mce-label {
1626
+ vertical-align: middle
1627
+ }
1628
+
1629
+ .mce-rtl .mce-checkbox {
1630
+ direction: rtl;
1631
+ text-align: right
1632
+ }
1633
+
1634
+ .mce-rtl i.mce-i-checkbox {
1635
+ margin: 0 0 0 3px
1636
+ }
1637
+
1638
+ .mce-slider {
1639
+ display: block;
1640
+ position: relative;
1641
+ width: 100px;
1642
+ height: 10px;
1643
+ background: var(--main-bg-color)
1644
+ }
1645
+
1646
+ .mce-slider.mce-vertical {
1647
+ width: 10px;
1648
+ height: 100px
1649
+ }
1650
+
1651
+ .mce-slider-handle {
1652
+ display: block;
1653
+ position: absolute;
1654
+ top: -2px;
1655
+ left: 0;
1656
+ width: 13px;
1657
+ height: 13px;
1658
+ background: #4e4e4e;
1659
+ border: 2px solid #4e4e4e
1660
+ }
1661
+
1662
+ #mce-modal-block {
1663
+ position: fixed;
1664
+ left: 0;
1665
+ top: 0;
1666
+ right: 0;
1667
+ bottom: 0;
1668
+ padding-top: 55px;
1669
+ background: var(--header-color);
1670
+ opacity: 0
1671
+ }
1672
+
1673
+ #mce-modal-block.mce-in {
1674
+ opacity: .9
1675
+ }
1676
+
1677
+ .mce-progress {
1678
+ display: inline-block;
1679
+ position: relative;
1680
+ height: 20px
1681
+ }
1682
+
1683
+ .mce-progress .mce-bar-container {
1684
+ display: inline-block;
1685
+ width: 100px;
1686
+ height: 100%;
1687
+ margin-top: 3px;
1688
+ margin-right: 8px;
1689
+ overflow: hidden
1690
+ }
1691
+
1692
+ .mce-progress .mce-text {
1693
+ display: inline-block;
1694
+ margin-top: auto;
1695
+ margin-bottom: auto;
1696
+ font-size: 14px;
1697
+ width: 40px;
1698
+ color: #595959
1699
+ }
1700
+
1701
+ .mce-bar {
1702
+ display: block;
1703
+ width: 0;
1704
+ height: 100%;
1705
+ background-color: #dfdfdf;
1706
+ -webkit-transition: width .2s ease;
1707
+ transition: width .2s ease
1708
+ }
1709
+
1710
+ .mce-notification {
1711
+ position: absolute;
1712
+ background: rgba(255,255,255,.5);
1713
+ padding: 5px;
1714
+ margin-top: 5px;
1715
+ box-sizing: border-box;
1716
+ opacity: 0;
1717
+ transition: transform 100ms ease-in,opacity 150ms ease-in
1718
+ }
1719
+
1720
+ .mce-notification.mce-in {
1721
+ opacity: 1
1722
+ }
1723
+
1724
+ .mce-notification-success {
1725
+ background-color: #dff0d8
1726
+ }
1727
+
1728
+ .mce-notification-info {
1729
+ background-color: #d9edf7
1730
+ }
1731
+
1732
+ .mce-notification-warning {
1733
+ background-color: #fcf8e3
1734
+ }
1735
+
1736
+ .mce-notification-error {
1737
+ background-color: #f2dede
1738
+ }
1739
+
1740
+ .mce-notification.mce-has-close {
1741
+ padding-right: 15px
1742
+ }
1743
+
1744
+ .mce-notification .mce-ico {
1745
+ margin-top: 5px
1746
+ }
1747
+
1748
+ .mce-notification-inner {
1749
+ display: inline-block;
1750
+ margin: 5px 8px 4px;
1751
+ color: #31708f;
1752
+ font-size: 14px;
1753
+ text-align: center;
1754
+ white-space: normal;
1755
+ word-wrap: break-word;
1756
+ word-break: break-all;
1757
+ word-break: break-word;
1758
+ -moz-hyphens: auto;
1759
+ -webkit-hyphens: auto;
1760
+ hyphens: auto
1761
+ }
1762
+
1763
+ .mce-notification-inner a {
1764
+ text-decoration: underline;
1765
+ cursor: pointer
1766
+ }
1767
+
1768
+ .mce-notification .mce-progress {
1769
+ margin-right: 8px
1770
+ }
1771
+
1772
+ .mce-notification .mce-progress .mce-text {
1773
+ margin-top: 5px
1774
+ }
1775
+
1776
+ .mce-notification *,.mce-notification .mce-progress .mce-text {
1777
+ color: #595959
1778
+ }
1779
+
1780
+ .mce-notification .mce-progress .mce-bar-container {
1781
+ background: #ddd
1782
+ }
1783
+
1784
+ .mce-notification .mce-progress .mce-bar-container .mce-bar {
1785
+ background-color: #595959
1786
+ }
1787
+
1788
+ .mce-notification-success *,.mce-notification-success .mce-progress .mce-text {
1789
+ color: #3c763d
1790
+ }
1791
+
1792
+ .mce-notification-success .mce-progress .mce-bar-container {
1793
+ background: #98d899
1794
+ }
1795
+
1796
+ .mce-notification-success .mce-progress .mce-bar-container .mce-bar {
1797
+ background-color: #3c763d
1798
+ }
1799
+
1800
+ .mce-notification-info *,.mce-notification-info .mce-progress .mce-text {
1801
+ color: #31708f
1802
+ }
1803
+
1804
+ .mce-notification-info .mce-progress .mce-bar-container {
1805
+ background: #81bdda
1806
+ }
1807
+
1808
+ .mce-notification-info .mce-progress .mce-bar-container .mce-bar {
1809
+ background-color: #31708f
1810
+ }
1811
+
1812
+ .mce-notification-warning *,.mce-notification-warning .mce-progress .mce-text {
1813
+ color: #8a6d3b
1814
+ }
1815
+
1816
+ .mce-notification-warning .mce-progress .mce-bar-container {
1817
+ background: #e0ccaa
1818
+ }
1819
+
1820
+ .mce-notification-warning .mce-progress .mce-bar-container .mce-bar {
1821
+ background-color: #8a6d3b
1822
+ }
1823
+
1824
+ .mce-notification-error *,.mce-notification-error .mce-progress .mce-text {
1825
+ color: #a94442
1826
+ }
1827
+
1828
+ .mce-notification-error .mce-progress .mce-bar-container {
1829
+ background: #dcb2b2
1830
+ }
1831
+
1832
+ .mce-notification-error .mce-progress .mce-bar-container .mce-bar {
1833
+ background-color: #a94442
1834
+ }
1835
+
1836
+ .mce-notification .mce-close {
1837
+ position: absolute;
1838
+ top: 7px;
1839
+ right: 8px;
1840
+ padding: 0;
1841
+ background: transparent;
1842
+ line-height: 20px;
1843
+ font-size: 20px;
1844
+ font-weight: bold
1845
+ }
1846
+
1847
+ @font-face {
1848
+ font-family:'tinymce';src:url(../img/tinymce.woff2) format("woff2"),url(../img/tinymce.woff) format("woff"),url(../img/tinymce.svg) format("svg"),url(../img/tinymce.ttf) format("truetype"),url(../img/tinymce.eot) format("embedded-opentype");font-weight:normal;font-style:normal
1849
+ }
1850
+
1851
+ @font-face {
1852
+ font-family:'tinymce-small';src:url(../img/tinymce-small.woff2) format("woff2"),url(../img/tinymce-small.woff) format("woff"),url(../img/tinymce-small.svg) format("svg"),url(../img/tinymce-small.ttf) format("truetype"),url(../img/tinymce-small.eot) format("embedded-opentype");font-weight:normal;font-style:normal
1853
+ }
1854
+
1855
+ .mce-ico {
1856
+ font-family: 'tinymce',Arial;
1857
+ font-style: normal;
1858
+ font-weight: normal;
1859
+ font-variant: normal;
1860
+ font-size: 16px;
1861
+ line-height: 16px;
1862
+ speak: none;
1863
+ vertical-align: text-top;
1864
+ -webkit-font-smoothing: antialiased;
1865
+ -moz-osx-font-smoothing: grayscale;
1866
+ display: inline-block;
1867
+ background: transparent center center;
1868
+ background-size: cover;
1869
+ width: 16px;
1870
+ height: 16px
1871
+ }
1872
+
1873
+ .mce-btn-small .mce-ico {
1874
+ font-family: 'tinymce-small',Arial
1875
+ }
1876
+
1877
+ .mce-i-save:before {
1878
+ content: '\e000'
1879
+ }
1880
+
1881
+ .mce-i-newdocument:before {
1882
+ content: '\e001'
1883
+ }
1884
+
1885
+ .mce-i-fullpage:before {
1886
+ content: '\e002'
1887
+ }
1888
+
1889
+ .mce-i-alignleft:before {
1890
+ content: '\e003'
1891
+ }
1892
+
1893
+ .mce-i-aligncenter:before {
1894
+ content: '\e004'
1895
+ }
1896
+
1897
+ .mce-i-alignright:before {
1898
+ content: '\e005'
1899
+ }
1900
+
1901
+ .mce-i-alignjustify:before {
1902
+ content: '\e006'
1903
+ }
1904
+
1905
+ .mce-i-alignnone:before {
1906
+ content: '\e003'
1907
+ }
1908
+
1909
+ .mce-i-cut:before {
1910
+ content: '\e007'
1911
+ }
1912
+
1913
+ .mce-i-paste:before {
1914
+ content: '\e008'
1915
+ }
1916
+
1917
+ .mce-i-searchreplace:before {
1918
+ content: '\e009'
1919
+ }
1920
+
1921
+ .mce-i-bullist:before {
1922
+ content: '\e00a'
1923
+ }
1924
+
1925
+ .mce-i-numlist:before {
1926
+ content: '\e00b'
1927
+ }
1928
+
1929
+ .mce-i-indent:before {
1930
+ content: '\e00c'
1931
+ }
1932
+
1933
+ .mce-i-outdent:before {
1934
+ content: '\e00d'
1935
+ }
1936
+
1937
+ .mce-i-blockquote:before {
1938
+ content: '\e00e'
1939
+ }
1940
+
1941
+ .mce-i-undo:before {
1942
+ content: '\e00f'
1943
+ }
1944
+
1945
+ .mce-i-redo:before {
1946
+ content: '\e010'
1947
+ }
1948
+
1949
+ .mce-i-link:before {
1950
+ content: '\e011'
1951
+ }
1952
+
1953
+ .mce-i-unlink:before {
1954
+ content: '\e012'
1955
+ }
1956
+
1957
+ .mce-i-anchor:before {
1958
+ content: '\e013'
1959
+ }
1960
+
1961
+ .mce-i-image:before {
1962
+ content: '\e014'
1963
+ }
1964
+
1965
+ .mce-i-media:before {
1966
+ content: '\e015'
1967
+ }
1968
+
1969
+ .mce-i-help:before {
1970
+ content: '\e016'
1971
+ }
1972
+
1973
+ .mce-i-code:before {
1974
+ content: '\e017'
1975
+ }
1976
+
1977
+ .mce-i-insertdatetime:before {
1978
+ content: '\e018'
1979
+ }
1980
+
1981
+ .mce-i-preview:before {
1982
+ content: '\e019'
1983
+ }
1984
+
1985
+ .mce-i-forecolor:before {
1986
+ content: '\e01a'
1987
+ }
1988
+
1989
+ .mce-i-backcolor:before {
1990
+ content: '\e01a'
1991
+ }
1992
+
1993
+ .mce-i-table:before {
1994
+ content: '\e01b'
1995
+ }
1996
+
1997
+ .mce-i-hr:before {
1998
+ content: '\e01c'
1999
+ }
2000
+
2001
+ .mce-i-removeformat:before {
2002
+ content: '\e01d'
2003
+ }
2004
+
2005
+ .mce-i-subscript:before {
2006
+ content: '\e01e'
2007
+ }
2008
+
2009
+ .mce-i-superscript:before {
2010
+ content: '\e01f'
2011
+ }
2012
+
2013
+ .mce-i-charmap:before {
2014
+ content: '\e020'
2015
+ }
2016
+
2017
+ .mce-i-emoticons:before {
2018
+ content: '\e021'
2019
+ }
2020
+
2021
+ .mce-i-print:before {
2022
+ content: '\e022'
2023
+ }
2024
+
2025
+ .mce-i-fullscreen:before {
2026
+ content: '\e023'
2027
+ }
2028
+
2029
+ .mce-i-spellchecker:before {
2030
+ content: '\e024'
2031
+ }
2032
+
2033
+ .mce-i-nonbreaking:before {
2034
+ content: '\e025'
2035
+ }
2036
+
2037
+ .mce-i-template:before {
2038
+ content: '\e026'
2039
+ }
2040
+
2041
+ .mce-i-pagebreak:before {
2042
+ content: '\e027'
2043
+ }
2044
+
2045
+ .mce-i-restoredraft:before {
2046
+ content: '\e028'
2047
+ }
2048
+
2049
+ .mce-i-bold:before {
2050
+ content: '\e02a'
2051
+ }
2052
+
2053
+ .mce-i-italic:before {
2054
+ content: '\e02b'
2055
+ }
2056
+
2057
+ .mce-i-underline:before {
2058
+ content: '\e02c'
2059
+ }
2060
+
2061
+ .mce-i-strikethrough:before {
2062
+ content: '\e02d'
2063
+ }
2064
+
2065
+ .mce-i-visualchars:before {
2066
+ content: '\e02e'
2067
+ }
2068
+
2069
+ .mce-i-visualblocks:before {
2070
+ content: '\e02e'
2071
+ }
2072
+
2073
+ .mce-i-ltr:before {
2074
+ content: '\e02f'
2075
+ }
2076
+
2077
+ .mce-i-rtl:before {
2078
+ content: '\e030'
2079
+ }
2080
+
2081
+ .mce-i-copy:before {
2082
+ content: '\e031'
2083
+ }
2084
+
2085
+ .mce-i-resize:before {
2086
+ content: '\e032'
2087
+ }
2088
+
2089
+ .mce-i-browse:before {
2090
+ content: '\e034'
2091
+ }
2092
+
2093
+ .mce-i-pastetext:before {
2094
+ content: '\e035'
2095
+ }
2096
+
2097
+ .mce-i-rotateleft:before {
2098
+ content: '\eaa8'
2099
+ }
2100
+
2101
+ .mce-i-rotateright:before {
2102
+ content: '\eaa9'
2103
+ }
2104
+
2105
+ .mce-i-crop:before {
2106
+ content: '\ee78'
2107
+ }
2108
+
2109
+ .mce-i-editimage:before {
2110
+ content: '\e915'
2111
+ }
2112
+
2113
+ .mce-i-options:before {
2114
+ content: '\ec6a'
2115
+ }
2116
+
2117
+ .mce-i-flipv:before {
2118
+ content: '\eaaa'
2119
+ }
2120
+
2121
+ .mce-i-fliph:before {
2122
+ content: '\eaac'
2123
+ }
2124
+
2125
+ .mce-i-zoomin:before {
2126
+ content: '\eb35'
2127
+ }
2128
+
2129
+ .mce-i-zoomout:before {
2130
+ content: '\eb36'
2131
+ }
2132
+
2133
+ .mce-i-sun:before {
2134
+ content: '\eccc'
2135
+ }
2136
+
2137
+ .mce-i-moon:before {
2138
+ content: '\eccd'
2139
+ }
2140
+
2141
+ .mce-i-arrowleft:before {
2142
+ content: '\edc0'
2143
+ }
2144
+
2145
+ .mce-i-arrowright:before {
2146
+ content: '\e93c'
2147
+ }
2148
+
2149
+ .mce-i-drop:before {
2150
+ content: '\e935'
2151
+ }
2152
+
2153
+ .mce-i-contrast:before {
2154
+ content: '\ecd4'
2155
+ }
2156
+
2157
+ .mce-i-sharpen:before {
2158
+ content: '\eba7'
2159
+ }
2160
+
2161
+ .mce-i-resize2:before {
2162
+ content: '\edf9'
2163
+ }
2164
+
2165
+ .mce-i-orientation:before {
2166
+ content: '\e601'
2167
+ }
2168
+
2169
+ .mce-i-invert:before {
2170
+ content: '\e602'
2171
+ }
2172
+
2173
+ .mce-i-gamma:before {
2174
+ content: '\e600'
2175
+ }
2176
+
2177
+ .mce-i-remove:before {
2178
+ content: '\ed6a';
2179
+ font-size: 90%
2180
+ }
2181
+
2182
+ .mce-i-tablerowprops:before {
2183
+ content: '\e604'
2184
+ }
2185
+
2186
+ .mce-i-tablecellprops:before {
2187
+ content: '\e605'
2188
+ }
2189
+
2190
+ .mce-i-table2:before {
2191
+ content: '\e606'
2192
+ }
2193
+
2194
+ .mce-i-tablemergecells:before {
2195
+ content: '\e607'
2196
+ }
2197
+
2198
+ .mce-i-tableinsertcolbefore:before {
2199
+ content: '\e608'
2200
+ }
2201
+
2202
+ .mce-i-tableinsertcolafter:before {
2203
+ content: '\e609'
2204
+ }
2205
+
2206
+ .mce-i-tableinsertrowbefore:before {
2207
+ content: '\e60a'
2208
+ }
2209
+
2210
+ .mce-i-tableinsertrowafter:before {
2211
+ content: '\e60b'
2212
+ }
2213
+
2214
+ .mce-i-tablesplitcells:before {
2215
+ content: '\e60d'
2216
+ }
2217
+
2218
+ .mce-i-tabledelete:before {
2219
+ content: '\e60e'
2220
+ }
2221
+
2222
+ .mce-i-tableleftheader:before {
2223
+ content: '\e62a'
2224
+ }
2225
+
2226
+ .mce-i-tabletopheader:before {
2227
+ content: '\e62b'
2228
+ }
2229
+
2230
+ .mce-i-tabledeleterow:before {
2231
+ content: '\e800'
2232
+ }
2233
+
2234
+ .mce-i-tabledeletecol:before {
2235
+ content: '\e801'
2236
+ }
2237
+
2238
+ .mce-i-codesample:before {
2239
+ content: '\e603'
2240
+ }
2241
+
2242
+ .mce-i-fill:before {
2243
+ content: '\e902'
2244
+ }
2245
+
2246
+ .mce-i-borderwidth:before {
2247
+ content: '\e903'
2248
+ }
2249
+
2250
+ .mce-i-line:before {
2251
+ content: '\e904'
2252
+ }
2253
+
2254
+ .mce-i-count:before {
2255
+ content: '\e905'
2256
+ }
2257
+
2258
+ .mce-i-translate:before {
2259
+ content: '\e907'
2260
+ }
2261
+
2262
+ .mce-i-drag:before {
2263
+ content: '\e908'
2264
+ }
2265
+
2266
+ .mce-i-home:before {
2267
+ content: '\e90b'
2268
+ }
2269
+
2270
+ .mce-i-upload:before {
2271
+ content: '\e914'
2272
+ }
2273
+
2274
+ .mce-i-bubble:before {
2275
+ content: '\e91c'
2276
+ }
2277
+
2278
+ .mce-i-user:before {
2279
+ content: '\e91d'
2280
+ }
2281
+
2282
+ .mce-i-lock:before {
2283
+ content: '\e926'
2284
+ }
2285
+
2286
+ .mce-i-unlock:before {
2287
+ content: '\e927'
2288
+ }
2289
+
2290
+ .mce-i-settings:before {
2291
+ content: '\e928'
2292
+ }
2293
+
2294
+ .mce-i-remove2:before {
2295
+ content: '\e92a'
2296
+ }
2297
+
2298
+ .mce-i-menu:before {
2299
+ content: '\e92d'
2300
+ }
2301
+
2302
+ .mce-i-warning:before {
2303
+ content: '\e930'
2304
+ }
2305
+
2306
+ .mce-i-question:before {
2307
+ content: '\e016'
2308
+ }
2309
+
2310
+ .mce-i-pluscircle:before {
2311
+ content: '\e932'
2312
+ }
2313
+
2314
+ .mce-i-info:before {
2315
+ content: '\e933'
2316
+ }
2317
+
2318
+ .mce-i-notice:before {
2319
+ content: '\e934'
2320
+ }
2321
+
2322
+ .mce-i-arrowup:before {
2323
+ content: '\e93b'
2324
+ }
2325
+
2326
+ .mce-i-arrowdown:before {
2327
+ content: '\e93d'
2328
+ }
2329
+
2330
+ .mce-i-arrowup2:before {
2331
+ content: '\e93f'
2332
+ }
2333
+
2334
+ .mce-i-arrowdown2:before {
2335
+ content: '\e940'
2336
+ }
2337
+
2338
+ .mce-i-menu2:before {
2339
+ content: '\e941'
2340
+ }
2341
+
2342
+ .mce-i-newtab:before {
2343
+ content: '\e961'
2344
+ }
2345
+
2346
+ .mce-i-a11y:before {
2347
+ content: '\e900'
2348
+ }
2349
+
2350
+ .mce-i-plus:before {
2351
+ content: '\e93a'
2352
+ }
2353
+
2354
+ .mce-i-insert:before {
2355
+ content: '\e93a'
2356
+ }
2357
+
2358
+ .mce-i-minus:before {
2359
+ content: '\e939'
2360
+ }
2361
+
2362
+ .mce-i-books:before {
2363
+ content: '\e911'
2364
+ }
2365
+
2366
+ .mce-i-reload:before {
2367
+ content: '\e906'
2368
+ }
2369
+
2370
+ .mce-i-toc:before {
2371
+ content: '\e901'
2372
+ }
2373
+
2374
+ .mce-i-checkmark:before {
2375
+ content: '\e033'
2376
+ }
2377
+
2378
+ .mce-i-format-painter:before {
2379
+ content: '\e909'
2380
+ }
2381
+
2382
+ .mce-i-checkbox:before,.mce-i-selected:before {
2383
+ content: '\e033'
2384
+ }
2385
+
2386
+ .mce-i-insert {
2387
+ font-size: 14px
2388
+ }
2389
+
2390
+ .mce-i-selected {
2391
+ visibility: hidden
2392
+ }
2393
+
2394
+ i.mce-i-backcolor {
2395
+ background: var(--footer-color)!important
2396
+ }
2397
+
2398
+ .mce-rtl .mce-filepicker input {
2399
+ direction: ltr
2400
+ }
2401
+
2402
+ .mce-tooltip-inner,.mce-floatpanel,.mce-window {
2403
+ -webkit-box-shadow: 0 -2px 20px 2px rgba(0,0,0,.2),0 6px 26px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.4)!important;
2404
+ -moz-box-shadow: 0 -2px 20px 2px rgba(0,0,0,.2),0 6px 26px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.4)!important;
2405
+ box-shadow: 0 -2px 20px 2px rgba(0,0,0,.2),0 6px 26px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.4)!important
2406
+ }
2407
+
2408
+ .word-wrap {
2409
+ word-wrap: break-word;
2410
+ word-break: break-all;
2411
+ word-break: break-word;
2412
+ -moz-hyphens: auto;
2413
+ -webkit-hyphens: auto;
2414
+ hyphens: auto
2415
+ }
2416
+
2417
+ .mce-fade {
2418
+ opacity: 0;
2419
+ -webkit-transition: opacity .15s linear;
2420
+ transition: opacity .15s linear
2421
+ }
2422
+
2423
+ .mce-fade.mce-in {
2424
+ opacity: 1
2425
+ }
2426
+
2427
+ .mce-wordcount {
2428
+ font-size: inherit;
2429
+ text-transform: uppercase;
2430
+ padding: 8px 0
2431
+ }
2432
+
2433
+ .mce-text-center {
2434
+ text-align: center
2435
+ }
2436
+
2437
+ div.mce-tinymce-inline {
2438
+ width: 100%
2439
+ }
2440
+
2441
+ .mce-colorbtn-trans div {
2442
+ vertical-align: middle;
2443
+ font-size: 26px;
2444
+ line-height: 12px;
2445
+ text-align: center
2446
+ }
2447
+
2448
+ .mce-monospace {
2449
+ font-family: 'Courier New',Courier,monospace
2450
+ }
2451
+
2452
+ .mce-rtl .mce-wordcount {
2453
+ left: 0;
2454
+ right: auto
2455
+ }
2456
+
2457
+ .mce-edit-aria-container > .mce-container-body {
2458
+ display: flex
2459
+ }
2460
+
2461
+ .mce-edit-aria-container > .mce-container-body .mce-edit-area {
2462
+ flex: 1
2463
+ }
2464
+
2465
+ .mce-autoscroll {
2466
+ overflow: hidden
2467
+ }
2468
+
2469
+ .mce-scrollbar {
2470
+ position: absolute;
2471
+ width: 7px;
2472
+ height: 100%;
2473
+ top: 2px;
2474
+ right: 2px;
2475
+ opacity: .4;
2476
+ zoom: 1
2477
+ }
2478
+
2479
+ .mce-scrollbar-h {
2480
+ top: auto;
2481
+ right: auto;
2482
+ left: 2px;
2483
+ bottom: 2px;
2484
+ width: 100%;
2485
+ height: 7px
2486
+ }
2487
+
2488
+ .mce-scrollbar-thumb {
2489
+ position: absolute;
2490
+ background-color: #000;
2491
+ border: 1px solid #888;
2492
+ border-color: rgba(85,85,85,0.6);
2493
+ width: 5px;
2494
+ height: 100%
2495
+ }
2496
+
2497
+ .mce-scrollbar-h .mce-scrollbar-thumb {
2498
+ width: 100%;
2499
+ height: 5px
2500
+ }
2501
+
2502
+ .mce-scrollbar:hover,.mce-scrollbar.mce-active {
2503
+ background-color: #AAA;
2504
+ opacity: .6;
2505
+ zoom: 1
2506
+ }
2507
+
2508
+ .mce-scroll {
2509
+ position: relative
2510
+ }
2511
+
2512
+ .mce-abs-layout {
2513
+ position: relative
2514
+ }
2515
+
2516
+ html .mce-abs-layout-item,.mce-abs-end {
2517
+ position: absolute
2518
+ }
2519
+
2520
+ .mce-abs-end {
2521
+ width: 1px;
2522
+ height: 1px
2523
+ }
2524
+
2525
+ .mce-container-body.mce-abs-layout {
2526
+ overflow: hidden
2527
+ }
2528
+
2529
+ .mce-combobox {
2530
+ position: relative;
2531
+ display: inline-block
2532
+ }
2533
+
2534
+ .mce-combobox.mce-disabled input {
2535
+ color: #bdbdbd
2536
+ }
2537
+
2538
+ .mce-combobox button {
2539
+ padding-right: 8px;
2540
+ padding-left: 8px
2541
+ }
2542
+
2543
+ .mce-combobox.mce-disabled .mce-btn button {
2544
+ cursor: default;
2545
+ -webkit-box-shadow: none!important;
2546
+ -moz-box-shadow: none!important;
2547
+ box-shadow: none!important;
2548
+ opacity: .4;
2549
+ zoom: 1
2550
+ }
2551
+
2552
+ .mce-combobox .mce-status {
2553
+ position: absolute;
2554
+ right: 2px;
2555
+ top: 50%;
2556
+ line-height: 16px;
2557
+ margin-top: -8px;
2558
+ font-size: 12px;
2559
+ width: 15px;
2560
+ height: 15px;
2561
+ text-align: center;
2562
+ cursor: pointer
2563
+ }
2564
+
2565
+ .mce-combobox.mce-has-status input {
2566
+ padding-right: 20px
2567
+ }
2568
+
2569
+ .mce-combobox.mce-has-open .mce-status {
2570
+ right: 37px
2571
+ }
2572
+
2573
+ .mce-combobox .mce-status.mce-i-warning {
2574
+ color: #c09853
2575
+ }
2576
+
2577
+ .mce-combobox .mce-status.mce-i-checkmark {
2578
+ color: #468847
2579
+ }
2580
+
2581
+ .mce-colorbox i {
2582
+ border: 1px solid #c5c5c5;
2583
+ width: 14px;
2584
+ height: 14px
2585
+ }
2586
+
2587
+ .mce-fieldset {
2588
+ border: 0 solid #9E9E9E
2589
+ }
2590
+
2591
+ .mce-fieldset > .mce-container-body {
2592
+ margin-top: -15px
2593
+ }
2594
+
2595
+ .mce-fieldset-title {
2596
+ margin-left: 5px;
2597
+ padding: 0 5px
2598
+ }
2599
+
2600
+ .mce-fit-layout {
2601
+ display: inline-block
2602
+ }
2603
+
2604
+ .mce-fit-layout-item {
2605
+ position: absolute
2606
+ }
2607
+
2608
+ .mce-flow-layout-item {
2609
+ display: inline-block;
2610
+ margin: 2px 0 2px 2px
2611
+ }
2612
+
2613
+ .mce-flow-layout-item.mce-last {
2614
+ margin-right: 2px
2615
+ }
2616
+
2617
+ .mce-flow-layout {
2618
+ white-space: normal
2619
+ }
2620
+
2621
+ .mce-tinymce-inline .mce-flow-layout {
2622
+ white-space: nowrap
2623
+ }
2624
+
2625
+ .mce-rtl .mce-flow-layout {
2626
+ text-align: right;
2627
+ direction: rtl
2628
+ }
2629
+
2630
+ .mce-rtl .mce-flow-layout-item {
2631
+ margin: 2px 2px 2px 0
2632
+ }
2633
+
2634
+ .mce-rtl .mce-flow-layout-item.mce-last {
2635
+ margin-left: 2px
2636
+ }
2637
+
2638
+ .mce-iframe {
2639
+ border: 0 solid #c5c5c5;
2640
+ width: 100%;
2641
+ height: 100%
2642
+ }
2643
+
2644
+ .mce-infobox {
2645
+ display: inline-block;
2646
+ text-shadow: 0 1px 1px rgba(255,255,255,0.75)!important;
2647
+ overflow: hidden;
2648
+ border: 1px solid red
2649
+ }
2650
+
2651
+ .mce-infobox div {
2652
+ display: block;
2653
+ margin: 5px
2654
+ }
2655
+
2656
+ .mce-infobox div button {
2657
+ position: absolute;
2658
+ top: 50%;
2659
+ right: 4px;
2660
+ cursor: pointer;
2661
+ margin-top: -8px;
2662
+ display: none
2663
+ }
2664
+
2665
+ .mce-infobox div button:focus {
2666
+ outline: 2px solid #e2e4e7
2667
+ }
2668
+
2669
+ .mce-infobox.mce-has-help div {
2670
+ margin-right: 25px
2671
+ }
2672
+
2673
+ .mce-infobox.mce-has-help button {
2674
+ display: block
2675
+ }
2676
+
2677
+ .mce-infobox.mce-success {
2678
+ background: #dff0d8;
2679
+ border-color: #d6e9c6
2680
+ }
2681
+
2682
+ .mce-infobox.mce-success div {
2683
+ color: #3c763d
2684
+ }
2685
+
2686
+ .mce-infobox.mce-warning {
2687
+ background: #fcf8e3;
2688
+ border-color: #faebcc
2689
+ }
2690
+
2691
+ .mce-infobox.mce-warning div {
2692
+ color: #8a6d3b
2693
+ }
2694
+
2695
+ .mce-infobox.mce-error {
2696
+ background: #f2dede;
2697
+ border-color: #ebccd1
2698
+ }
2699
+
2700
+ .mce-infobox.mce-error div {
2701
+ color: #a94442
2702
+ }
2703
+
2704
+ .mce-rtl .mce-infobox div {
2705
+ text-align: right;
2706
+ direction: rtl
2707
+ }
2708
+
2709
+ .mce-label {
2710
+ display: inline-block;
2711
+ overflow: hidden
2712
+ }
2713
+
2714
+ .mce-label.mce-autoscroll {
2715
+ overflow: auto
2716
+ }
2717
+
2718
+ .mce-label.mce-disabled {
2719
+ color: #aaa
2720
+ }
2721
+
2722
+ .mce-label.mce-multiline {
2723
+ white-space: pre-wrap
2724
+ }
2725
+
2726
+ .mce-label.mce-success {
2727
+ color: #468847
2728
+ }
2729
+
2730
+ .mce-label.mce-warning {
2731
+ color: #c09853
2732
+ }
2733
+
2734
+ .mce-label.mce-error {
2735
+ color: #b94a48
2736
+ }
2737
+
2738
+ .mce-rtl .mce-label {
2739
+ text-align: right;
2740
+ direction: rtl
2741
+ }
2742
+
2743
+ .mce-throbber {
2744
+ position: absolute;
2745
+ top: 0;
2746
+ left: 0;
2747
+ width: 100%;
2748
+ height: 100%;
2749
+ opacity: .6;
2750
+ zoom: 1;
2751
+ background: #fff url(../img/loader.gif) no-repeat center center
2752
+ }
2753
+
2754
+ .mce-throbber-inline {
2755
+ position: static;
2756
+ height: 50px
2757
+ }
2758
+
2759
+ .mce-menu .mce-throbber-inline {
2760
+ height: 25px;
2761
+ background-size: contain
2762
+ }
2763
+
2764
+ .mce-container-body .mce-resizehandle {
2765
+ position: absolute;
2766
+ right: 0;
2767
+ bottom: 0;
2768
+ width: 16px;
2769
+ height: 16px;
2770
+ visibility: visible;
2771
+ cursor: s-resize;
2772
+ margin: 0
2773
+ }
2774
+
2775
+ .mce-container-body .mce-resizehandle-both {
2776
+ cursor: se-resize
2777
+ }
2778
+
2779
+ i.mce-i-resize {
2780
+ color: #595959
2781
+ }
2782
+
2783
+ .mce-selectbox {
2784
+ background: #fff;
2785
+ border: 1px solid #c5c5c5
2786
+ }
2787
+
2788
+ .mce-spacer {
2789
+ visibility: hidden
2790
+ }
2791
+
2792
+ .mce-stack-layout-item {
2793
+ display: block
2794
+ }
2795
+
2796
+ .mce-textbox {
2797
+ display: inline-block;
2798
+ height: 28px;
2799
+ resize: none;
2800
+ padding: 0 4px;
2801
+ white-space: pre-wrap
2802
+ }
2803
+
2804
+ .mce-placeholder .mce-textbox {
2805
+ color: #aaa
2806
+ }
2807
+
2808
+ .mce-textbox.mce-multiline {
2809
+ padding: 4px;
2810
+ height: auto
2811
+ }
2812
+
2813
+ .mce-textbox.mce-disabled {
2814
+ color: #bdbdbd
2815
+ }
2816
+
2817
+ .mce-rtl .mce-textbox {
2818
+ text-align: right;
2819
+ direction: rtl
2820
+ }