@elliemae/ds-basic 3.41.2-rc.1 → 3.42.0-rc.0

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