@lets-events/react 12.1.11 → 12.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1300 +0,0 @@
1
- /* ../../node_modules/quill/dist/quill.snow.css */
2
- .ql-container {
3
- box-sizing: border-box;
4
- font-family:
5
- Helvetica,
6
- Arial,
7
- sans-serif;
8
- font-size: 13px;
9
- height: 100%;
10
- margin: 0;
11
- position: relative;
12
- }
13
-
14
- .ql-container.ql-disabled .ql-tooltip {
15
- visibility: hidden;
16
- }
17
-
18
- .ql-container:not(.ql-disabled) li[data-list=checked]>.ql-ui,
19
- .ql-container:not(.ql-disabled) li[data-list=unchecked]>.ql-ui {
20
- cursor: pointer;
21
- }
22
-
23
- .ql-clipboard {
24
- left: -100000px;
25
- height: 1px;
26
- overflow-y: hidden;
27
- position: absolute;
28
- top: 50%;
29
- }
30
-
31
- .ql-clipboard p {
32
- margin: 0;
33
- padding: 0;
34
- }
35
-
36
- .ql-editor {
37
- box-sizing: border-box;
38
- counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
39
- line-height: 1.42;
40
- height: 100%;
41
- outline: none;
42
- overflow-y: auto;
43
- padding: 12px 15px;
44
- tab-size: 4;
45
- -moz-tab-size: 4;
46
- text-align: left;
47
- white-space: pre-wrap;
48
- word-wrap: break-word;
49
- }
50
-
51
- .ql-editor>* {
52
- cursor: text;
53
- }
54
-
55
- .ql-editor p,
56
- .ql-editor ol,
57
- .ql-editor pre,
58
- .ql-editor blockquote,
59
- .ql-editor h1,
60
- .ql-editor h2,
61
- .ql-editor h3,
62
- .ql-editor h4,
63
- .ql-editor h5,
64
- .ql-editor h6 {
65
- margin: 0;
66
- padding: 0;
67
- }
68
-
69
- @supports (counter-set:none) {
70
-
71
- .ql-editor p,
72
- .ql-editor h1,
73
- .ql-editor h2,
74
- .ql-editor h3,
75
- .ql-editor h4,
76
- .ql-editor h5,
77
- .ql-editor h6 {
78
- counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
79
- }
80
- }
81
-
82
- @supports not (counter-set:none) {
83
-
84
- .ql-editor p,
85
- .ql-editor h1,
86
- .ql-editor h2,
87
- .ql-editor h3,
88
- .ql-editor h4,
89
- .ql-editor h5,
90
- .ql-editor h6 {
91
- counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
92
- }
93
- }
94
-
95
- .ql-editor table {
96
- border-collapse: collapse;
97
- }
98
-
99
- .ql-editor td {
100
- border: 1px solid #000;
101
- padding: 2px 5px;
102
- }
103
-
104
- .ql-editor ol {
105
- padding-left: 1.5em;
106
- }
107
-
108
- .ql-editor li {
109
- list-style-type: none;
110
- padding-left: 1.5em;
111
- position: relative;
112
- }
113
-
114
- .ql-editor li>.ql-ui:before {
115
- display: inline-block;
116
- margin-left: -1.5em;
117
- margin-right: .3em;
118
- text-align: right;
119
- white-space: nowrap;
120
- width: 1.2em;
121
- }
122
-
123
- .ql-editor li[data-list=checked]>.ql-ui,
124
- .ql-editor li[data-list=unchecked]>.ql-ui {
125
- color: #777;
126
- }
127
-
128
- .ql-editor li[data-list=bullet]>.ql-ui:before {
129
- content: "\2022";
130
- }
131
-
132
- .ql-editor li[data-list=checked]>.ql-ui:before {
133
- content: "\2611";
134
- }
135
-
136
- .ql-editor li[data-list=unchecked]>.ql-ui:before {
137
- content: "\2610";
138
- }
139
-
140
- @supports (counter-set:none) {
141
- .ql-editor li[data-list] {
142
- counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
143
- }
144
- }
145
-
146
- @supports not (counter-set:none) {
147
- .ql-editor li[data-list] {
148
- counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
149
- }
150
- }
151
-
152
- .ql-editor li[data-list=ordered] {
153
- counter-increment: list-0;
154
- }
155
-
156
- .ql-editor li[data-list=ordered]>.ql-ui:before {
157
- content: counter(list-0, decimal) ". ";
158
- }
159
-
160
- .ql-editor li[data-list=ordered].ql-indent-1 {
161
- counter-increment: list-1;
162
- }
163
-
164
- .ql-editor li[data-list=ordered].ql-indent-1>.ql-ui:before {
165
- content: counter(list-1, lower-alpha) ". ";
166
- }
167
-
168
- @supports (counter-set:none) {
169
- .ql-editor li[data-list].ql-indent-1 {
170
- counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
171
- }
172
- }
173
-
174
- @supports not (counter-set:none) {
175
- .ql-editor li[data-list].ql-indent-1 {
176
- counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
177
- }
178
- }
179
-
180
- .ql-editor li[data-list=ordered].ql-indent-2 {
181
- counter-increment: list-2;
182
- }
183
-
184
- .ql-editor li[data-list=ordered].ql-indent-2>.ql-ui:before {
185
- content: counter(list-2, lower-roman) ". ";
186
- }
187
-
188
- @supports (counter-set:none) {
189
- .ql-editor li[data-list].ql-indent-2 {
190
- counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
191
- }
192
- }
193
-
194
- @supports not (counter-set:none) {
195
- .ql-editor li[data-list].ql-indent-2 {
196
- counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
197
- }
198
- }
199
-
200
- .ql-editor li[data-list=ordered].ql-indent-3 {
201
- counter-increment: list-3;
202
- }
203
-
204
- .ql-editor li[data-list=ordered].ql-indent-3>.ql-ui:before {
205
- content: counter(list-3, decimal) ". ";
206
- }
207
-
208
- @supports (counter-set:none) {
209
- .ql-editor li[data-list].ql-indent-3 {
210
- counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
211
- }
212
- }
213
-
214
- @supports not (counter-set:none) {
215
- .ql-editor li[data-list].ql-indent-3 {
216
- counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
217
- }
218
- }
219
-
220
- .ql-editor li[data-list=ordered].ql-indent-4 {
221
- counter-increment: list-4;
222
- }
223
-
224
- .ql-editor li[data-list=ordered].ql-indent-4>.ql-ui:before {
225
- content: counter(list-4, lower-alpha) ". ";
226
- }
227
-
228
- @supports (counter-set:none) {
229
- .ql-editor li[data-list].ql-indent-4 {
230
- counter-set: list-5 list-6 list-7 list-8 list-9;
231
- }
232
- }
233
-
234
- @supports not (counter-set:none) {
235
- .ql-editor li[data-list].ql-indent-4 {
236
- counter-reset: list-5 list-6 list-7 list-8 list-9;
237
- }
238
- }
239
-
240
- .ql-editor li[data-list=ordered].ql-indent-5 {
241
- counter-increment: list-5;
242
- }
243
-
244
- .ql-editor li[data-list=ordered].ql-indent-5>.ql-ui:before {
245
- content: counter(list-5, lower-roman) ". ";
246
- }
247
-
248
- @supports (counter-set:none) {
249
- .ql-editor li[data-list].ql-indent-5 {
250
- counter-set: list-6 list-7 list-8 list-9;
251
- }
252
- }
253
-
254
- @supports not (counter-set:none) {
255
- .ql-editor li[data-list].ql-indent-5 {
256
- counter-reset: list-6 list-7 list-8 list-9;
257
- }
258
- }
259
-
260
- .ql-editor li[data-list=ordered].ql-indent-6 {
261
- counter-increment: list-6;
262
- }
263
-
264
- .ql-editor li[data-list=ordered].ql-indent-6>.ql-ui:before {
265
- content: counter(list-6, decimal) ". ";
266
- }
267
-
268
- @supports (counter-set:none) {
269
- .ql-editor li[data-list].ql-indent-6 {
270
- counter-set: list-7 list-8 list-9;
271
- }
272
- }
273
-
274
- @supports not (counter-set:none) {
275
- .ql-editor li[data-list].ql-indent-6 {
276
- counter-reset: list-7 list-8 list-9;
277
- }
278
- }
279
-
280
- .ql-editor li[data-list=ordered].ql-indent-7 {
281
- counter-increment: list-7;
282
- }
283
-
284
- .ql-editor li[data-list=ordered].ql-indent-7>.ql-ui:before {
285
- content: counter(list-7, lower-alpha) ". ";
286
- }
287
-
288
- @supports (counter-set:none) {
289
- .ql-editor li[data-list].ql-indent-7 {
290
- counter-set: list-8 list-9;
291
- }
292
- }
293
-
294
- @supports not (counter-set:none) {
295
- .ql-editor li[data-list].ql-indent-7 {
296
- counter-reset: list-8 list-9;
297
- }
298
- }
299
-
300
- .ql-editor li[data-list=ordered].ql-indent-8 {
301
- counter-increment: list-8;
302
- }
303
-
304
- .ql-editor li[data-list=ordered].ql-indent-8>.ql-ui:before {
305
- content: counter(list-8, lower-roman) ". ";
306
- }
307
-
308
- @supports (counter-set:none) {
309
- .ql-editor li[data-list].ql-indent-8 {
310
- counter-set: list-9;
311
- }
312
- }
313
-
314
- @supports not (counter-set:none) {
315
- .ql-editor li[data-list].ql-indent-8 {
316
- counter-reset: list-9;
317
- }
318
- }
319
-
320
- .ql-editor li[data-list=ordered].ql-indent-9 {
321
- counter-increment: list-9;
322
- }
323
-
324
- .ql-editor li[data-list=ordered].ql-indent-9>.ql-ui:before {
325
- content: counter(list-9, decimal) ". ";
326
- }
327
-
328
- .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
329
- padding-left: 3em;
330
- }
331
-
332
- .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
333
- padding-left: 4.5em;
334
- }
335
-
336
- .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
337
- padding-right: 3em;
338
- }
339
-
340
- .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
341
- padding-right: 4.5em;
342
- }
343
-
344
- .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
345
- padding-left: 6em;
346
- }
347
-
348
- .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
349
- padding-left: 7.5em;
350
- }
351
-
352
- .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
353
- padding-right: 6em;
354
- }
355
-
356
- .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
357
- padding-right: 7.5em;
358
- }
359
-
360
- .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
361
- padding-left: 9em;
362
- }
363
-
364
- .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
365
- padding-left: 10.5em;
366
- }
367
-
368
- .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
369
- padding-right: 9em;
370
- }
371
-
372
- .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
373
- padding-right: 10.5em;
374
- }
375
-
376
- .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
377
- padding-left: 12em;
378
- }
379
-
380
- .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
381
- padding-left: 13.5em;
382
- }
383
-
384
- .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
385
- padding-right: 12em;
386
- }
387
-
388
- .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
389
- padding-right: 13.5em;
390
- }
391
-
392
- .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
393
- padding-left: 15em;
394
- }
395
-
396
- .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
397
- padding-left: 16.5em;
398
- }
399
-
400
- .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
401
- padding-right: 15em;
402
- }
403
-
404
- .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
405
- padding-right: 16.5em;
406
- }
407
-
408
- .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
409
- padding-left: 18em;
410
- }
411
-
412
- .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
413
- padding-left: 19.5em;
414
- }
415
-
416
- .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
417
- padding-right: 18em;
418
- }
419
-
420
- .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
421
- padding-right: 19.5em;
422
- }
423
-
424
- .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
425
- padding-left: 21em;
426
- }
427
-
428
- .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
429
- padding-left: 22.5em;
430
- }
431
-
432
- .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
433
- padding-right: 21em;
434
- }
435
-
436
- .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
437
- padding-right: 22.5em;
438
- }
439
-
440
- .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
441
- padding-left: 24em;
442
- }
443
-
444
- .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
445
- padding-left: 25.5em;
446
- }
447
-
448
- .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
449
- padding-right: 24em;
450
- }
451
-
452
- .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
453
- padding-right: 25.5em;
454
- }
455
-
456
- .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
457
- padding-left: 27em;
458
- }
459
-
460
- .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
461
- padding-left: 28.5em;
462
- }
463
-
464
- .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
465
- padding-right: 27em;
466
- }
467
-
468
- .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
469
- padding-right: 28.5em;
470
- }
471
-
472
- .ql-editor li.ql-direction-rtl {
473
- padding-right: 1.5em;
474
- }
475
-
476
- .ql-editor li.ql-direction-rtl>.ql-ui:before {
477
- margin-left: .3em;
478
- margin-right: -1.5em;
479
- text-align: left;
480
- }
481
-
482
- .ql-editor table {
483
- table-layout: fixed;
484
- width: 100%;
485
- }
486
-
487
- .ql-editor table td {
488
- outline: none;
489
- }
490
-
491
- .ql-editor .ql-code-block-container {
492
- font-family: monospace;
493
- }
494
-
495
- .ql-editor .ql-video {
496
- display: block;
497
- max-width: 100%;
498
- }
499
-
500
- .ql-editor .ql-video.ql-align-center {
501
- margin: 0 auto;
502
- }
503
-
504
- .ql-editor .ql-video.ql-align-right {
505
- margin: 0 0 0 auto;
506
- }
507
-
508
- .ql-editor .ql-bg-black {
509
- background-color: #000;
510
- }
511
-
512
- .ql-editor .ql-bg-red {
513
- background-color: #e60000;
514
- }
515
-
516
- .ql-editor .ql-bg-orange {
517
- background-color: #f90;
518
- }
519
-
520
- .ql-editor .ql-bg-yellow {
521
- background-color: #ff0;
522
- }
523
-
524
- .ql-editor .ql-bg-green {
525
- background-color: #008a00;
526
- }
527
-
528
- .ql-editor .ql-bg-blue {
529
- background-color: #06c;
530
- }
531
-
532
- .ql-editor .ql-bg-purple {
533
- background-color: #93f;
534
- }
535
-
536
- .ql-editor .ql-color-white {
537
- color: #fff;
538
- }
539
-
540
- .ql-editor .ql-color-red {
541
- color: #e60000;
542
- }
543
-
544
- .ql-editor .ql-color-orange {
545
- color: #f90;
546
- }
547
-
548
- .ql-editor .ql-color-yellow {
549
- color: #ff0;
550
- }
551
-
552
- .ql-editor .ql-color-green {
553
- color: #008a00;
554
- }
555
-
556
- .ql-editor .ql-color-blue {
557
- color: #06c;
558
- }
559
-
560
- .ql-editor .ql-color-purple {
561
- color: #93f;
562
- }
563
-
564
- .ql-editor .ql-font-serif {
565
- font-family:
566
- Georgia,
567
- Times New Roman,
568
- serif;
569
- }
570
-
571
- .ql-editor .ql-font-monospace {
572
- font-family:
573
- Monaco,
574
- Courier New,
575
- monospace;
576
- }
577
-
578
- .ql-editor .ql-size-small {
579
- font-size: .75em;
580
- }
581
-
582
- .ql-editor .ql-size-large {
583
- font-size: 1.5em;
584
- }
585
-
586
- .ql-editor .ql-size-huge {
587
- font-size: 2.5em;
588
- }
589
-
590
- .ql-editor .ql-direction-rtl {
591
- direction: rtl;
592
- text-align: inherit;
593
- }
594
-
595
- .ql-editor .ql-align-center {
596
- text-align: center;
597
- }
598
-
599
- .ql-editor .ql-align-justify {
600
- text-align: justify;
601
- }
602
-
603
- .ql-editor .ql-align-right {
604
- text-align: right;
605
- }
606
-
607
- .ql-editor .ql-ui {
608
- position: absolute;
609
- }
610
-
611
- .ql-editor.ql-blank::before {
612
- color: rgba(0, 0, 0, 0.6);
613
- content: attr(data-placeholder);
614
- font-style: italic;
615
- left: 15px;
616
- pointer-events: none;
617
- position: absolute;
618
- right: 15px;
619
- }
620
-
621
- .ql-snow.ql-toolbar:after,
622
- .ql-snow .ql-toolbar:after {
623
- clear: both;
624
- content: "";
625
- display: table;
626
- }
627
-
628
- .ql-snow.ql-toolbar button,
629
- .ql-snow .ql-toolbar button {
630
- background: none;
631
- border: none;
632
- cursor: pointer;
633
- display: inline-block;
634
- float: left;
635
- height: 24px;
636
- padding: 3px 5px;
637
- width: 28px;
638
- }
639
-
640
- .ql-snow.ql-toolbar button svg,
641
- .ql-snow .ql-toolbar button svg {
642
- float: left;
643
- height: 100%;
644
- }
645
-
646
- .ql-snow.ql-toolbar button:active:hover,
647
- .ql-snow .ql-toolbar button:active:hover {
648
- outline: none;
649
- }
650
-
651
- .ql-snow.ql-toolbar input.ql-image[type=file],
652
- .ql-snow .ql-toolbar input.ql-image[type=file] {
653
- display: none;
654
- }
655
-
656
- .ql-snow.ql-toolbar button:hover,
657
- .ql-snow .ql-toolbar button:hover,
658
- .ql-snow.ql-toolbar button:focus,
659
- .ql-snow .ql-toolbar button:focus,
660
- .ql-snow.ql-toolbar button.ql-active,
661
- .ql-snow .ql-toolbar button.ql-active,
662
- .ql-snow.ql-toolbar .ql-picker-label:hover,
663
- .ql-snow .ql-toolbar .ql-picker-label:hover,
664
- .ql-snow.ql-toolbar .ql-picker-label.ql-active,
665
- .ql-snow .ql-toolbar .ql-picker-label.ql-active,
666
- .ql-snow.ql-toolbar .ql-picker-item:hover,
667
- .ql-snow .ql-toolbar .ql-picker-item:hover,
668
- .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
669
- .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
670
- color: #06c;
671
- }
672
-
673
- .ql-snow.ql-toolbar button:hover .ql-fill,
674
- .ql-snow .ql-toolbar button:hover .ql-fill,
675
- .ql-snow.ql-toolbar button:focus .ql-fill,
676
- .ql-snow .ql-toolbar button:focus .ql-fill,
677
- .ql-snow.ql-toolbar button.ql-active .ql-fill,
678
- .ql-snow .ql-toolbar button.ql-active .ql-fill,
679
- .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
680
- .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
681
- .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
682
- .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
683
- .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
684
- .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
685
- .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
686
- .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
687
- .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
688
- .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
689
- .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
690
- .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
691
- .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
692
- .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
693
- .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
694
- .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
695
- .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
696
- .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
697
- .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
698
- .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
699
- .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
700
- .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
701
- fill: #06c;
702
- }
703
-
704
- .ql-snow.ql-toolbar button:hover .ql-stroke,
705
- .ql-snow .ql-toolbar button:hover .ql-stroke,
706
- .ql-snow.ql-toolbar button:focus .ql-stroke,
707
- .ql-snow .ql-toolbar button:focus .ql-stroke,
708
- .ql-snow.ql-toolbar button.ql-active .ql-stroke,
709
- .ql-snow .ql-toolbar button.ql-active .ql-stroke,
710
- .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
711
- .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
712
- .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
713
- .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
714
- .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
715
- .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
716
- .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
717
- .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
718
- .ql-snow.ql-toolbar button:hover .ql-stroke-miter,
719
- .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
720
- .ql-snow.ql-toolbar button:focus .ql-stroke-miter,
721
- .ql-snow .ql-toolbar button:focus .ql-stroke-miter,
722
- .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
723
- .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
724
- .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
725
- .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
726
- .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
727
- .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
728
- .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
729
- .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
730
- .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
731
- .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
732
- stroke: #06c;
733
- }
734
-
735
- @media (pointer:coarse) {
736
-
737
- .ql-snow.ql-toolbar button:hover:not(.ql-active),
738
- .ql-snow .ql-toolbar button:hover:not(.ql-active) {
739
- color: #444;
740
- }
741
-
742
- .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
743
- .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
744
- .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
745
- .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
746
- fill: #444;
747
- }
748
-
749
- .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
750
- .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
751
- .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
752
- .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
753
- stroke: #444;
754
- }
755
- }
756
-
757
- .ql-snow {
758
- box-sizing: border-box;
759
- }
760
-
761
- .ql-snow * {
762
- box-sizing: border-box;
763
- }
764
-
765
- .ql-snow .ql-hidden {
766
- display: none;
767
- }
768
-
769
- .ql-snow .ql-out-bottom,
770
- .ql-snow .ql-out-top {
771
- visibility: hidden;
772
- }
773
-
774
- .ql-snow .ql-tooltip {
775
- position: absolute;
776
- transform: translateY(10px);
777
- }
778
-
779
- .ql-snow .ql-tooltip a {
780
- cursor: pointer;
781
- text-decoration: none;
782
- }
783
-
784
- .ql-snow .ql-tooltip.ql-flip {
785
- transform: translateY(-10px);
786
- }
787
-
788
- .ql-snow .ql-formats {
789
- display: inline-block;
790
- vertical-align: middle;
791
- }
792
-
793
- .ql-snow .ql-formats:after {
794
- clear: both;
795
- content: "";
796
- display: table;
797
- }
798
-
799
- .ql-snow .ql-stroke {
800
- fill: none;
801
- stroke: #444;
802
- stroke-linecap: round;
803
- stroke-linejoin: round;
804
- stroke-width: 2;
805
- }
806
-
807
- .ql-snow .ql-stroke-miter {
808
- fill: none;
809
- stroke: #444;
810
- stroke-miterlimit: 10;
811
- stroke-width: 2;
812
- }
813
-
814
- .ql-snow .ql-fill,
815
- .ql-snow .ql-stroke.ql-fill {
816
- fill: #444;
817
- }
818
-
819
- .ql-snow .ql-empty {
820
- fill: none;
821
- }
822
-
823
- .ql-snow .ql-even {
824
- fill-rule: evenodd;
825
- }
826
-
827
- .ql-snow .ql-thin,
828
- .ql-snow .ql-stroke.ql-thin {
829
- stroke-width: 1;
830
- }
831
-
832
- .ql-snow .ql-transparent {
833
- opacity: .4;
834
- }
835
-
836
- .ql-snow .ql-direction svg:last-child {
837
- display: none;
838
- }
839
-
840
- .ql-snow .ql-direction.ql-active svg:last-child {
841
- display: inline;
842
- }
843
-
844
- .ql-snow .ql-direction.ql-active svg:first-child {
845
- display: none;
846
- }
847
-
848
- .ql-snow .ql-editor h1 {
849
- font-size: 2em;
850
- }
851
-
852
- .ql-snow .ql-editor h2 {
853
- font-size: 1.5em;
854
- }
855
-
856
- .ql-snow .ql-editor h3 {
857
- font-size: 1.17em;
858
- }
859
-
860
- .ql-snow .ql-editor h4 {
861
- font-size: 1em;
862
- }
863
-
864
- .ql-snow .ql-editor h5 {
865
- font-size: .83em;
866
- }
867
-
868
- .ql-snow .ql-editor h6 {
869
- font-size: .67em;
870
- }
871
-
872
- .ql-snow .ql-editor a {
873
- text-decoration: underline;
874
- }
875
-
876
- .ql-snow .ql-editor blockquote {
877
- border-left: 4px solid #ccc;
878
- margin-bottom: 5px;
879
- margin-top: 5px;
880
- padding-left: 16px;
881
- }
882
-
883
- .ql-snow .ql-editor code,
884
- .ql-snow .ql-editor .ql-code-block-container {
885
- background-color: #f0f0f0;
886
- border-radius: 3px;
887
- }
888
-
889
- .ql-snow .ql-editor .ql-code-block-container {
890
- margin-bottom: 5px;
891
- margin-top: 5px;
892
- padding: 5px 10px;
893
- }
894
-
895
- .ql-snow .ql-editor code {
896
- font-size: 85%;
897
- padding: 2px 4px;
898
- }
899
-
900
- .ql-snow .ql-editor .ql-code-block-container {
901
- background-color: #23241f;
902
- color: #f8f8f2;
903
- overflow: visible;
904
- }
905
-
906
- .ql-snow .ql-editor img {
907
- max-width: 100%;
908
- }
909
-
910
- .ql-snow .ql-picker {
911
- color: #444;
912
- display: inline-block;
913
- float: left;
914
- font-size: 14px;
915
- font-weight: 500;
916
- height: 24px;
917
- position: relative;
918
- vertical-align: middle;
919
- }
920
-
921
- .ql-snow .ql-picker-label {
922
- cursor: pointer;
923
- display: inline-block;
924
- height: 100%;
925
- padding-left: 8px;
926
- padding-right: 2px;
927
- position: relative;
928
- width: 100%;
929
- }
930
-
931
- .ql-snow .ql-picker-label::before {
932
- display: inline-block;
933
- line-height: 22px;
934
- }
935
-
936
- .ql-snow .ql-picker-options {
937
- background-color: #fff;
938
- display: none;
939
- min-width: 100%;
940
- padding: 4px 8px;
941
- position: absolute;
942
- white-space: nowrap;
943
- }
944
-
945
- .ql-snow .ql-picker-options .ql-picker-item {
946
- cursor: pointer;
947
- display: block;
948
- padding-bottom: 5px;
949
- padding-top: 5px;
950
- }
951
-
952
- .ql-snow .ql-picker.ql-expanded .ql-picker-label {
953
- color: #ccc;
954
- z-index: 2;
955
- }
956
-
957
- .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
958
- fill: #ccc;
959
- }
960
-
961
- .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
962
- stroke: #ccc;
963
- }
964
-
965
- .ql-snow .ql-picker.ql-expanded .ql-picker-options {
966
- display: block;
967
- margin-top: -1px;
968
- top: 100%;
969
- z-index: 1;
970
- }
971
-
972
- .ql-snow .ql-color-picker,
973
- .ql-snow .ql-icon-picker {
974
- width: 28px;
975
- }
976
-
977
- .ql-snow .ql-color-picker .ql-picker-label,
978
- .ql-snow .ql-icon-picker .ql-picker-label {
979
- padding: 2px 4px;
980
- }
981
-
982
- .ql-snow .ql-color-picker .ql-picker-label svg,
983
- .ql-snow .ql-icon-picker .ql-picker-label svg {
984
- right: 4px;
985
- }
986
-
987
- .ql-snow .ql-icon-picker .ql-picker-options {
988
- padding: 4px 0;
989
- }
990
-
991
- .ql-snow .ql-icon-picker .ql-picker-item {
992
- height: 24px;
993
- width: 24px;
994
- padding: 2px 4px;
995
- }
996
-
997
- .ql-snow .ql-color-picker .ql-picker-options {
998
- padding: 3px 5px;
999
- width: 152px;
1000
- }
1001
-
1002
- .ql-snow .ql-color-picker .ql-picker-item {
1003
- border: 1px solid transparent;
1004
- float: left;
1005
- height: 16px;
1006
- margin: 2px;
1007
- padding: 0;
1008
- width: 16px;
1009
- }
1010
-
1011
- .ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
1012
- position: absolute;
1013
- margin-top: -9px;
1014
- right: 0;
1015
- top: 50%;
1016
- width: 18px;
1017
- }
1018
-
1019
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
1020
- .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
1021
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
1022
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
1023
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
1024
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
1025
- content: attr(data-label);
1026
- }
1027
-
1028
- .ql-snow .ql-picker.ql-header {
1029
- width: 98px;
1030
- }
1031
-
1032
- .ql-snow .ql-picker.ql-header .ql-picker-label::before,
1033
- .ql-snow .ql-picker.ql-header .ql-picker-item::before {
1034
- content: "Normal";
1035
- }
1036
-
1037
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
1038
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
1039
- content: "Heading 1";
1040
- }
1041
-
1042
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
1043
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
1044
- content: "Heading 2";
1045
- }
1046
-
1047
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
1048
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
1049
- content: "Heading 3";
1050
- }
1051
-
1052
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
1053
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
1054
- content: "Heading 4";
1055
- }
1056
-
1057
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
1058
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
1059
- content: "Heading 5";
1060
- }
1061
-
1062
- .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
1063
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
1064
- content: "Heading 6";
1065
- }
1066
-
1067
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
1068
- font-size: 2em;
1069
- }
1070
-
1071
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
1072
- font-size: 1.5em;
1073
- }
1074
-
1075
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
1076
- font-size: 1.17em;
1077
- }
1078
-
1079
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
1080
- font-size: 1em;
1081
- }
1082
-
1083
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
1084
- font-size: .83em;
1085
- }
1086
-
1087
- .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
1088
- font-size: .67em;
1089
- }
1090
-
1091
- .ql-snow .ql-picker.ql-font {
1092
- width: 108px;
1093
- }
1094
-
1095
- .ql-snow .ql-picker.ql-font .ql-picker-label::before,
1096
- .ql-snow .ql-picker.ql-font .ql-picker-item::before {
1097
- content: "Sans Serif";
1098
- }
1099
-
1100
- .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
1101
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
1102
- content: "Serif";
1103
- }
1104
-
1105
- .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
1106
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
1107
- content: "Monospace";
1108
- }
1109
-
1110
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
1111
- font-family:
1112
- Georgia,
1113
- Times New Roman,
1114
- serif;
1115
- }
1116
-
1117
- .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
1118
- font-family:
1119
- Monaco,
1120
- Courier New,
1121
- monospace;
1122
- }
1123
-
1124
- .ql-snow .ql-picker.ql-size {
1125
- width: 98px;
1126
- }
1127
-
1128
- .ql-snow .ql-picker.ql-size .ql-picker-label::before,
1129
- .ql-snow .ql-picker.ql-size .ql-picker-item::before {
1130
- content: "Normal";
1131
- }
1132
-
1133
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
1134
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
1135
- content: "Small";
1136
- }
1137
-
1138
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
1139
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
1140
- content: "Large";
1141
- }
1142
-
1143
- .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
1144
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
1145
- content: "Huge";
1146
- }
1147
-
1148
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
1149
- font-size: 10px;
1150
- }
1151
-
1152
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
1153
- font-size: 18px;
1154
- }
1155
-
1156
- .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
1157
- font-size: 32px;
1158
- }
1159
-
1160
- .ql-snow .ql-color-picker.ql-background .ql-picker-item {
1161
- background-color: #fff;
1162
- }
1163
-
1164
- .ql-snow .ql-color-picker.ql-color .ql-picker-item {
1165
- background-color: #000;
1166
- }
1167
-
1168
- .ql-code-block-container {
1169
- position: relative;
1170
- }
1171
-
1172
- .ql-code-block-container .ql-ui {
1173
- right: 5px;
1174
- top: 5px;
1175
- }
1176
-
1177
- .ql-toolbar.ql-snow {
1178
- border: 1px solid #ccc;
1179
- box-sizing: border-box;
1180
- font-family:
1181
- "Helvetica Neue",
1182
- "Helvetica",
1183
- "Arial",
1184
- sans-serif;
1185
- padding: 8px;
1186
- }
1187
-
1188
- .ql-toolbar.ql-snow .ql-formats {
1189
- margin-right: 15px;
1190
- }
1191
-
1192
- .ql-toolbar.ql-snow .ql-picker-label {
1193
- border: 1px solid transparent;
1194
- }
1195
-
1196
- .ql-toolbar.ql-snow .ql-picker-options {
1197
- border: 1px solid transparent;
1198
- box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
1199
- }
1200
-
1201
- .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
1202
- border-color: #ccc;
1203
- }
1204
-
1205
- .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
1206
- border-color: #ccc;
1207
- }
1208
-
1209
- .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
1210
- .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
1211
- border-color: #000;
1212
- }
1213
-
1214
- .ql-toolbar.ql-snow+.ql-container.ql-snow {
1215
- border-top: 0;
1216
- }
1217
-
1218
- .ql-snow .ql-tooltip {
1219
- background-color: #fff;
1220
- border: 1px solid #ccc;
1221
- box-shadow: 0 0 5px #ddd;
1222
- color: #444;
1223
- padding: 5px 12px;
1224
- white-space: nowrap;
1225
- }
1226
-
1227
- .ql-snow .ql-tooltip::before {
1228
- content: "Visit URL:";
1229
- line-height: 26px;
1230
- margin-right: 8px;
1231
- }
1232
-
1233
- .ql-snow .ql-tooltip input[type=text] {
1234
- display: none;
1235
- border: 1px solid #ccc;
1236
- font-size: 13px;
1237
- height: 26px;
1238
- margin: 0;
1239
- padding: 3px 5px;
1240
- width: 170px;
1241
- }
1242
-
1243
- .ql-snow .ql-tooltip a.ql-preview {
1244
- display: inline-block;
1245
- max-width: 200px;
1246
- overflow-x: hidden;
1247
- text-overflow: ellipsis;
1248
- vertical-align: top;
1249
- }
1250
-
1251
- .ql-snow .ql-tooltip a.ql-action::after {
1252
- border-right: 1px solid #ccc;
1253
- content: "Edit";
1254
- margin-left: 16px;
1255
- padding-right: 8px;
1256
- }
1257
-
1258
- .ql-snow .ql-tooltip a.ql-remove::before {
1259
- content: "Remove";
1260
- margin-left: 8px;
1261
- }
1262
-
1263
- .ql-snow .ql-tooltip a {
1264
- line-height: 26px;
1265
- }
1266
-
1267
- .ql-snow .ql-tooltip.ql-editing a.ql-preview,
1268
- .ql-snow .ql-tooltip.ql-editing a.ql-remove {
1269
- display: none;
1270
- }
1271
-
1272
- .ql-snow .ql-tooltip.ql-editing input[type=text] {
1273
- display: inline-block;
1274
- }
1275
-
1276
- .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
1277
- border-right: 0;
1278
- content: "Save";
1279
- padding-right: 0;
1280
- }
1281
-
1282
- .ql-snow .ql-tooltip[data-mode=link]::before {
1283
- content: "Enter link:";
1284
- }
1285
-
1286
- .ql-snow .ql-tooltip[data-mode=formula]::before {
1287
- content: "Enter formula:";
1288
- }
1289
-
1290
- .ql-snow .ql-tooltip[data-mode=video]::before {
1291
- content: "Enter video:";
1292
- }
1293
-
1294
- .ql-snow a {
1295
- color: #06c;
1296
- }
1297
-
1298
- .ql-container.ql-snow {
1299
- border: 1px solid #ccc;
1300
- }