|
@@ -137,6 +137,958 @@ a{
|
137
|
137
|
.ql-align-right{
|
138
|
138
|
text-align: right;
|
139
|
139
|
}
|
|
140
|
+.ql-align-justify{
|
|
141
|
+ text-align: justify;
|
|
142
|
+}
|
|
143
|
+.ql-align-left{
|
|
144
|
+ text-align: left;
|
|
145
|
+}
|
|
146
|
+/*!
|
|
147
|
+ * Quill Editor v1.3.7
|
|
148
|
+ * https://quilljs.com/
|
|
149
|
+ * Copyright (c) 2014, Jason Chen
|
|
150
|
+ * Copyright (c) 2013, salesforce.com
|
|
151
|
+ */
|
|
152
|
+ .ql-container {
|
|
153
|
+ box-sizing: border-box;
|
|
154
|
+ font-family: Helvetica, Arial, sans-serif;
|
|
155
|
+ font-size: 13px;
|
|
156
|
+ height: 100%;
|
|
157
|
+ margin: 0px;
|
|
158
|
+ position: relative;
|
|
159
|
+ }
|
|
160
|
+ .ql-container.ql-disabled .ql-tooltip {
|
|
161
|
+ visibility: hidden;
|
|
162
|
+ }
|
|
163
|
+ .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
|
|
164
|
+ pointer-events: none;
|
|
165
|
+ }
|
|
166
|
+ .ql-clipboard {
|
|
167
|
+ left: -100000px;
|
|
168
|
+ height: 1px;
|
|
169
|
+ overflow-y: hidden;
|
|
170
|
+ position: absolute;
|
|
171
|
+ top: 50%;
|
|
172
|
+ }
|
|
173
|
+ .ql-clipboard p {
|
|
174
|
+ margin: 0;
|
|
175
|
+ padding: 0;
|
|
176
|
+ }
|
|
177
|
+ .ql-editor {
|
|
178
|
+ box-sizing: border-box;
|
|
179
|
+ line-height: 1.42;
|
|
180
|
+ height: 100%;
|
|
181
|
+ outline: none;
|
|
182
|
+ overflow-y: auto;
|
|
183
|
+ // padding: 12px 15px;
|
|
184
|
+ tab-size: 4;
|
|
185
|
+ -moz-tab-size: 4;
|
|
186
|
+ text-align: left;
|
|
187
|
+ white-space: pre-wrap;
|
|
188
|
+ word-wrap: break-word;
|
|
189
|
+ }
|
|
190
|
+ .ql-editor > * {
|
|
191
|
+ cursor: text;
|
|
192
|
+ }
|
|
193
|
+ .ql-editor p,
|
|
194
|
+ .ql-editor ol,
|
|
195
|
+ .ql-editor ul,
|
|
196
|
+ .ql-editor pre,
|
|
197
|
+ .ql-editor blockquote,
|
|
198
|
+ .ql-editor h1,
|
|
199
|
+ .ql-editor h2,
|
|
200
|
+ .ql-editor h3,
|
|
201
|
+ .ql-editor h4,
|
|
202
|
+ .ql-editor h5,
|
|
203
|
+ .ql-editor h6 {
|
|
204
|
+ margin: 0;
|
|
205
|
+ padding: 0;
|
|
206
|
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
207
|
+ }
|
|
208
|
+ .ql-editor ol,
|
|
209
|
+ .ql-editor ul {
|
|
210
|
+ padding-left: 1.5em;
|
|
211
|
+ }
|
|
212
|
+ .ql-editor ol > li,
|
|
213
|
+ .ql-editor ul > li {
|
|
214
|
+ list-style-type: none;
|
|
215
|
+ }
|
|
216
|
+ .ql-editor ul > li::before {
|
|
217
|
+ content: '\2022';
|
|
218
|
+ }
|
|
219
|
+ .ql-editor ul[data-checked=true],
|
|
220
|
+ .ql-editor ul[data-checked=false] {
|
|
221
|
+ pointer-events: none;
|
|
222
|
+ }
|
|
223
|
+ .ql-editor ul[data-checked=true] > li *,
|
|
224
|
+ .ql-editor ul[data-checked=false] > li * {
|
|
225
|
+ pointer-events: all;
|
|
226
|
+ }
|
|
227
|
+ .ql-editor ul[data-checked=true] > li::before,
|
|
228
|
+ .ql-editor ul[data-checked=false] > li::before {
|
|
229
|
+ color: #777;
|
|
230
|
+ cursor: pointer;
|
|
231
|
+ pointer-events: all;
|
|
232
|
+ }
|
|
233
|
+ .ql-editor ul[data-checked=true] > li::before {
|
|
234
|
+ content: '\2611';
|
|
235
|
+ }
|
|
236
|
+ .ql-editor ul[data-checked=false] > li::before {
|
|
237
|
+ content: '\2610';
|
|
238
|
+ }
|
|
239
|
+ .ql-editor li::before {
|
|
240
|
+ display: inline-block;
|
|
241
|
+ white-space: nowrap;
|
|
242
|
+ width: 1.2em;
|
|
243
|
+ }
|
|
244
|
+ .ql-editor li:not(.ql-direction-rtl)::before {
|
|
245
|
+ margin-left: -1.5em;
|
|
246
|
+ margin-right: 0.3em;
|
|
247
|
+ text-align: right;
|
|
248
|
+ }
|
|
249
|
+ .ql-editor li.ql-direction-rtl::before {
|
|
250
|
+ margin-left: 0.3em;
|
|
251
|
+ margin-right: -1.5em;
|
|
252
|
+ }
|
|
253
|
+ .ql-editor ol li:not(.ql-direction-rtl),
|
|
254
|
+ .ql-editor ul li:not(.ql-direction-rtl) {
|
|
255
|
+ padding-left: 1.5em;
|
|
256
|
+ }
|
|
257
|
+ .ql-editor ol li.ql-direction-rtl,
|
|
258
|
+ .ql-editor ul li.ql-direction-rtl {
|
|
259
|
+ padding-right: 1.5em;
|
|
260
|
+ }
|
|
261
|
+ .ql-editor ol li {
|
|
262
|
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
263
|
+ counter-increment: list-0;
|
|
264
|
+ }
|
|
265
|
+ .ql-editor ol li:before {
|
|
266
|
+ content: counter(list-0, decimal) '. ';
|
|
267
|
+ }
|
|
268
|
+ .ql-editor ol li.ql-indent-1 {
|
|
269
|
+ counter-increment: list-1;
|
|
270
|
+ }
|
|
271
|
+ .ql-editor ol li.ql-indent-1:before {
|
|
272
|
+ content: counter(list-1, lower-alpha) '. ';
|
|
273
|
+ }
|
|
274
|
+ .ql-editor ol li.ql-indent-1 {
|
|
275
|
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
276
|
+ }
|
|
277
|
+ .ql-editor ol li.ql-indent-2 {
|
|
278
|
+ counter-increment: list-2;
|
|
279
|
+ }
|
|
280
|
+ .ql-editor ol li.ql-indent-2:before {
|
|
281
|
+ content: counter(list-2, lower-roman) '. ';
|
|
282
|
+ }
|
|
283
|
+ .ql-editor ol li.ql-indent-2 {
|
|
284
|
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
285
|
+ }
|
|
286
|
+ .ql-editor ol li.ql-indent-3 {
|
|
287
|
+ counter-increment: list-3;
|
|
288
|
+ }
|
|
289
|
+ .ql-editor ol li.ql-indent-3:before {
|
|
290
|
+ content: counter(list-3, decimal) '. ';
|
|
291
|
+ }
|
|
292
|
+ .ql-editor ol li.ql-indent-3 {
|
|
293
|
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
|
|
294
|
+ }
|
|
295
|
+ .ql-editor ol li.ql-indent-4 {
|
|
296
|
+ counter-increment: list-4;
|
|
297
|
+ }
|
|
298
|
+ .ql-editor ol li.ql-indent-4:before {
|
|
299
|
+ content: counter(list-4, lower-alpha) '. ';
|
|
300
|
+ }
|
|
301
|
+ .ql-editor ol li.ql-indent-4 {
|
|
302
|
+ counter-reset: list-5 list-6 list-7 list-8 list-9;
|
|
303
|
+ }
|
|
304
|
+ .ql-editor ol li.ql-indent-5 {
|
|
305
|
+ counter-increment: list-5;
|
|
306
|
+ }
|
|
307
|
+ .ql-editor ol li.ql-indent-5:before {
|
|
308
|
+ content: counter(list-5, lower-roman) '. ';
|
|
309
|
+ }
|
|
310
|
+ .ql-editor ol li.ql-indent-5 {
|
|
311
|
+ counter-reset: list-6 list-7 list-8 list-9;
|
|
312
|
+ }
|
|
313
|
+ .ql-editor ol li.ql-indent-6 {
|
|
314
|
+ counter-increment: list-6;
|
|
315
|
+ }
|
|
316
|
+ .ql-editor ol li.ql-indent-6:before {
|
|
317
|
+ content: counter(list-6, decimal) '. ';
|
|
318
|
+ }
|
|
319
|
+ .ql-editor ol li.ql-indent-6 {
|
|
320
|
+ counter-reset: list-7 list-8 list-9;
|
|
321
|
+ }
|
|
322
|
+ .ql-editor ol li.ql-indent-7 {
|
|
323
|
+ counter-increment: list-7;
|
|
324
|
+ }
|
|
325
|
+ .ql-editor ol li.ql-indent-7:before {
|
|
326
|
+ content: counter(list-7, lower-alpha) '. ';
|
|
327
|
+ }
|
|
328
|
+ .ql-editor ol li.ql-indent-7 {
|
|
329
|
+ counter-reset: list-8 list-9;
|
|
330
|
+ }
|
|
331
|
+ .ql-editor ol li.ql-indent-8 {
|
|
332
|
+ counter-increment: list-8;
|
|
333
|
+ }
|
|
334
|
+ .ql-editor ol li.ql-indent-8:before {
|
|
335
|
+ content: counter(list-8, lower-roman) '. ';
|
|
336
|
+ }
|
|
337
|
+ .ql-editor ol li.ql-indent-8 {
|
|
338
|
+ counter-reset: list-9;
|
|
339
|
+ }
|
|
340
|
+ .ql-editor ol li.ql-indent-9 {
|
|
341
|
+ counter-increment: list-9;
|
|
342
|
+ }
|
|
343
|
+ .ql-editor ol li.ql-indent-9:before {
|
|
344
|
+ content: counter(list-9, decimal) '. ';
|
|
345
|
+ }
|
|
346
|
+ .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
|
|
347
|
+ padding-left: 3em;
|
|
348
|
+ }
|
|
349
|
+ .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
|
|
350
|
+ padding-left: 4.5em;
|
|
351
|
+ }
|
|
352
|
+ .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
|
|
353
|
+ padding-right: 3em;
|
|
354
|
+ }
|
|
355
|
+ .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
|
|
356
|
+ padding-right: 4.5em;
|
|
357
|
+ }
|
|
358
|
+ .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
|
|
359
|
+ padding-left: 6em;
|
|
360
|
+ }
|
|
361
|
+ .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
|
|
362
|
+ padding-left: 7.5em;
|
|
363
|
+ }
|
|
364
|
+ .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
|
|
365
|
+ padding-right: 6em;
|
|
366
|
+ }
|
|
367
|
+ .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
|
|
368
|
+ padding-right: 7.5em;
|
|
369
|
+ }
|
|
370
|
+ .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
|
|
371
|
+ padding-left: 9em;
|
|
372
|
+ }
|
|
373
|
+ .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
|
|
374
|
+ padding-left: 10.5em;
|
|
375
|
+ }
|
|
376
|
+ .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
|
|
377
|
+ padding-right: 9em;
|
|
378
|
+ }
|
|
379
|
+ .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
|
|
380
|
+ padding-right: 10.5em;
|
|
381
|
+ }
|
|
382
|
+ .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
|
|
383
|
+ padding-left: 12em;
|
|
384
|
+ }
|
|
385
|
+ .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
|
|
386
|
+ padding-left: 13.5em;
|
|
387
|
+ }
|
|
388
|
+ .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
|
|
389
|
+ padding-right: 12em;
|
|
390
|
+ }
|
|
391
|
+ .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
|
|
392
|
+ padding-right: 13.5em;
|
|
393
|
+ }
|
|
394
|
+ .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
|
|
395
|
+ padding-left: 15em;
|
|
396
|
+ }
|
|
397
|
+ .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
|
|
398
|
+ padding-left: 16.5em;
|
|
399
|
+ }
|
|
400
|
+ .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
|
|
401
|
+ padding-right: 15em;
|
|
402
|
+ }
|
|
403
|
+ .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
|
|
404
|
+ padding-right: 16.5em;
|
|
405
|
+ }
|
|
406
|
+ .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
|
|
407
|
+ padding-left: 18em;
|
|
408
|
+ }
|
|
409
|
+ .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
|
|
410
|
+ padding-left: 19.5em;
|
|
411
|
+ }
|
|
412
|
+ .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
|
|
413
|
+ padding-right: 18em;
|
|
414
|
+ }
|
|
415
|
+ .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
|
|
416
|
+ padding-right: 19.5em;
|
|
417
|
+ }
|
|
418
|
+ .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
|
|
419
|
+ padding-left: 21em;
|
|
420
|
+ }
|
|
421
|
+ .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
|
|
422
|
+ padding-left: 22.5em;
|
|
423
|
+ }
|
|
424
|
+ .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
|
|
425
|
+ padding-right: 21em;
|
|
426
|
+ }
|
|
427
|
+ .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
|
|
428
|
+ padding-right: 22.5em;
|
|
429
|
+ }
|
|
430
|
+ .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
|
|
431
|
+ padding-left: 24em;
|
|
432
|
+ }
|
|
433
|
+ .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
|
|
434
|
+ padding-left: 25.5em;
|
|
435
|
+ }
|
|
436
|
+ .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
|
|
437
|
+ padding-right: 24em;
|
|
438
|
+ }
|
|
439
|
+ .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
|
|
440
|
+ padding-right: 25.5em;
|
|
441
|
+ }
|
|
442
|
+ .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
|
|
443
|
+ padding-left: 27em;
|
|
444
|
+ }
|
|
445
|
+ .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
|
|
446
|
+ padding-left: 28.5em;
|
|
447
|
+ }
|
|
448
|
+ .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
|
|
449
|
+ padding-right: 27em;
|
|
450
|
+ }
|
|
451
|
+ .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
|
|
452
|
+ padding-right: 28.5em;
|
|
453
|
+ }
|
|
454
|
+ .ql-editor .ql-video {
|
|
455
|
+ display: block;
|
|
456
|
+ max-width: 100%;
|
|
457
|
+ }
|
|
458
|
+ .ql-editor .ql-video.ql-align-center {
|
|
459
|
+ margin: 0 auto;
|
|
460
|
+ }
|
|
461
|
+ .ql-editor .ql-video.ql-align-right {
|
|
462
|
+ margin: 0 0 0 auto;
|
|
463
|
+ }
|
|
464
|
+ .ql-editor .ql-bg-black {
|
|
465
|
+ background-color: #000;
|
|
466
|
+ }
|
|
467
|
+ .ql-editor .ql-bg-red {
|
|
468
|
+ background-color: #e60000;
|
|
469
|
+ }
|
|
470
|
+ .ql-editor .ql-bg-orange {
|
|
471
|
+ background-color: #f90;
|
|
472
|
+ }
|
|
473
|
+ .ql-editor .ql-bg-yellow {
|
|
474
|
+ background-color: #ff0;
|
|
475
|
+ }
|
|
476
|
+ .ql-editor .ql-bg-green {
|
|
477
|
+ background-color: #008a00;
|
|
478
|
+ }
|
|
479
|
+ .ql-editor .ql-bg-blue {
|
|
480
|
+ background-color: #06c;
|
|
481
|
+ }
|
|
482
|
+ .ql-editor .ql-bg-purple {
|
|
483
|
+ background-color: #93f;
|
|
484
|
+ }
|
|
485
|
+ .ql-editor .ql-color-white {
|
|
486
|
+ color: #fff;
|
|
487
|
+ }
|
|
488
|
+ .ql-editor .ql-color-red {
|
|
489
|
+ color: #e60000;
|
|
490
|
+ }
|
|
491
|
+ .ql-editor .ql-color-orange {
|
|
492
|
+ color: #f90;
|
|
493
|
+ }
|
|
494
|
+ .ql-editor .ql-color-yellow {
|
|
495
|
+ color: #ff0;
|
|
496
|
+ }
|
|
497
|
+ .ql-editor .ql-color-green {
|
|
498
|
+ color: #008a00;
|
|
499
|
+ }
|
|
500
|
+ .ql-editor .ql-color-blue {
|
|
501
|
+ color: #06c;
|
|
502
|
+ }
|
|
503
|
+ .ql-editor .ql-color-purple {
|
|
504
|
+ color: #93f;
|
|
505
|
+ }
|
|
506
|
+ .ql-editor .ql-font-serif {
|
|
507
|
+ font-family: Georgia, Times New Roman, serif;
|
|
508
|
+ }
|
|
509
|
+ .ql-editor .ql-font-monospace {
|
|
510
|
+ font-family: Monaco, Courier New, monospace;
|
|
511
|
+ }
|
|
512
|
+ .ql-editor .ql-size-small {
|
|
513
|
+ font-size: 0.75em;
|
|
514
|
+ }
|
|
515
|
+ .ql-editor .ql-size-large {
|
|
516
|
+ font-size: 1.5em;
|
|
517
|
+ }
|
|
518
|
+ .ql-editor .ql-size-huge {
|
|
519
|
+ font-size: 2.5em;
|
|
520
|
+ }
|
|
521
|
+ .ql-editor .ql-direction-rtl {
|
|
522
|
+ direction: rtl;
|
|
523
|
+ text-align: inherit;
|
|
524
|
+ }
|
|
525
|
+ .ql-editor .ql-align-center {
|
|
526
|
+ text-align: center;
|
|
527
|
+ }
|
|
528
|
+ .ql-editor .ql-align-justify {
|
|
529
|
+ text-align: justify;
|
|
530
|
+ }
|
|
531
|
+ .ql-editor .ql-align-right {
|
|
532
|
+ text-align: right;
|
|
533
|
+ }
|
|
534
|
+ .ql-editor.ql-blank::before {
|
|
535
|
+ color: rgba(0,0,0,0.6);
|
|
536
|
+ content: attr(data-placeholder);
|
|
537
|
+ font-style: italic;
|
|
538
|
+ left: 15px;
|
|
539
|
+ pointer-events: none;
|
|
540
|
+ position: absolute;
|
|
541
|
+ right: 15px;
|
|
542
|
+ }
|
|
543
|
+ .ql-snow.ql-toolbar:after,
|
|
544
|
+ .ql-snow .ql-toolbar:after {
|
|
545
|
+ clear: both;
|
|
546
|
+ content: '';
|
|
547
|
+ display: table;
|
|
548
|
+ }
|
|
549
|
+ .ql-snow.ql-toolbar button,
|
|
550
|
+ .ql-snow .ql-toolbar button {
|
|
551
|
+ background: none;
|
|
552
|
+ border: none;
|
|
553
|
+ cursor: pointer;
|
|
554
|
+ display: inline-block;
|
|
555
|
+ float: left;
|
|
556
|
+ height: 24px;
|
|
557
|
+ padding: 3px 5px;
|
|
558
|
+ width: 28px;
|
|
559
|
+ }
|
|
560
|
+ .ql-snow.ql-toolbar button svg,
|
|
561
|
+ .ql-snow .ql-toolbar button svg {
|
|
562
|
+ float: left;
|
|
563
|
+ height: 100%;
|
|
564
|
+ }
|
|
565
|
+ .ql-snow.ql-toolbar button:active:hover,
|
|
566
|
+ .ql-snow .ql-toolbar button:active:hover {
|
|
567
|
+ outline: none;
|
|
568
|
+ }
|
|
569
|
+ .ql-snow.ql-toolbar input.ql-image[type=file],
|
|
570
|
+ .ql-snow .ql-toolbar input.ql-image[type=file] {
|
|
571
|
+ display: none;
|
|
572
|
+ }
|
|
573
|
+ .ql-snow.ql-toolbar button:hover,
|
|
574
|
+ .ql-snow .ql-toolbar button:hover,
|
|
575
|
+ .ql-snow.ql-toolbar button:focus,
|
|
576
|
+ .ql-snow .ql-toolbar button:focus,
|
|
577
|
+ .ql-snow.ql-toolbar button.ql-active,
|
|
578
|
+ .ql-snow .ql-toolbar button.ql-active,
|
|
579
|
+ .ql-snow.ql-toolbar .ql-picker-label:hover,
|
|
580
|
+ .ql-snow .ql-toolbar .ql-picker-label:hover,
|
|
581
|
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active,
|
|
582
|
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active,
|
|
583
|
+ .ql-snow.ql-toolbar .ql-picker-item:hover,
|
|
584
|
+ .ql-snow .ql-toolbar .ql-picker-item:hover,
|
|
585
|
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
|
|
586
|
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
|
|
587
|
+ color: #06c;
|
|
588
|
+ }
|
|
589
|
+ .ql-snow.ql-toolbar button:hover .ql-fill,
|
|
590
|
+ .ql-snow .ql-toolbar button:hover .ql-fill,
|
|
591
|
+ .ql-snow.ql-toolbar button:focus .ql-fill,
|
|
592
|
+ .ql-snow .ql-toolbar button:focus .ql-fill,
|
|
593
|
+ .ql-snow.ql-toolbar button.ql-active .ql-fill,
|
|
594
|
+ .ql-snow .ql-toolbar button.ql-active .ql-fill,
|
|
595
|
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
|
|
596
|
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
|
|
597
|
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
|
|
598
|
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
|
|
599
|
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
|
|
600
|
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
|
|
601
|
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
|
|
602
|
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
|
|
603
|
+ .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
|
|
604
|
+ .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
|
|
605
|
+ .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
|
|
606
|
+ .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
|
|
607
|
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
|
|
608
|
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
|
|
609
|
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
|
|
610
|
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
|
|
611
|
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
|
|
612
|
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
|
|
613
|
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
|
|
614
|
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
|
|
615
|
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
|
|
616
|
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
|
|
617
|
+ fill: #06c;
|
|
618
|
+ }
|
|
619
|
+ .ql-snow.ql-toolbar button:hover .ql-stroke,
|
|
620
|
+ .ql-snow .ql-toolbar button:hover .ql-stroke,
|
|
621
|
+ .ql-snow.ql-toolbar button:focus .ql-stroke,
|
|
622
|
+ .ql-snow .ql-toolbar button:focus .ql-stroke,
|
|
623
|
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke,
|
|
624
|
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke,
|
|
625
|
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
|
|
626
|
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
|
|
627
|
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
|
|
628
|
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
|
|
629
|
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
|
|
630
|
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
|
|
631
|
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
|
|
632
|
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
|
|
633
|
+ .ql-snow.ql-toolbar button:hover .ql-stroke-miter,
|
|
634
|
+ .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
|
|
635
|
+ .ql-snow.ql-toolbar button:focus .ql-stroke-miter,
|
|
636
|
+ .ql-snow .ql-toolbar button:focus .ql-stroke-miter,
|
|
637
|
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
|
|
638
|
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
|
|
639
|
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
|
|
640
|
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
|
|
641
|
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
|
|
642
|
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
|
|
643
|
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
|
|
644
|
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
|
|
645
|
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
|
|
646
|
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
|
|
647
|
+ stroke: #06c;
|
|
648
|
+ }
|
|
649
|
+ @media (pointer: coarse) {
|
|
650
|
+ .ql-snow.ql-toolbar button:hover:not(.ql-active),
|
|
651
|
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) {
|
|
652
|
+ color: #444;
|
|
653
|
+ }
|
|
654
|
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
|
|
655
|
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
|
|
656
|
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
|
|
657
|
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
|
|
658
|
+ fill: #444;
|
|
659
|
+ }
|
|
660
|
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
|
|
661
|
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
|
|
662
|
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
|
|
663
|
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
|
|
664
|
+ stroke: #444;
|
|
665
|
+ }
|
|
666
|
+ }
|
|
667
|
+ .ql-snow {
|
|
668
|
+ box-sizing: border-box;
|
|
669
|
+ }
|
|
670
|
+ .ql-snow * {
|
|
671
|
+ box-sizing: border-box;
|
|
672
|
+ }
|
|
673
|
+ .ql-snow .ql-hidden {
|
|
674
|
+ display: none;
|
|
675
|
+ }
|
|
676
|
+ .ql-snow .ql-out-bottom,
|
|
677
|
+ .ql-snow .ql-out-top {
|
|
678
|
+ visibility: hidden;
|
|
679
|
+ }
|
|
680
|
+ .ql-snow .ql-tooltip {
|
|
681
|
+ position: absolute;
|
|
682
|
+ transform: translateY(10px);
|
|
683
|
+ }
|
|
684
|
+ .ql-snow .ql-tooltip a {
|
|
685
|
+ cursor: pointer;
|
|
686
|
+ text-decoration: none;
|
|
687
|
+ }
|
|
688
|
+ .ql-snow .ql-tooltip.ql-flip {
|
|
689
|
+ transform: translateY(-10px);
|
|
690
|
+ }
|
|
691
|
+ .ql-snow .ql-formats {
|
|
692
|
+ display: inline-block;
|
|
693
|
+ vertical-align: middle;
|
|
694
|
+ }
|
|
695
|
+ .ql-snow .ql-formats:after {
|
|
696
|
+ clear: both;
|
|
697
|
+ content: '';
|
|
698
|
+ display: table;
|
|
699
|
+ }
|
|
700
|
+ .ql-snow .ql-stroke {
|
|
701
|
+ fill: none;
|
|
702
|
+ stroke: #444;
|
|
703
|
+ stroke-linecap: round;
|
|
704
|
+ stroke-linejoin: round;
|
|
705
|
+ stroke-width: 2;
|
|
706
|
+ }
|
|
707
|
+ .ql-snow .ql-stroke-miter {
|
|
708
|
+ fill: none;
|
|
709
|
+ stroke: #444;
|
|
710
|
+ stroke-miterlimit: 10;
|
|
711
|
+ stroke-width: 2;
|
|
712
|
+ }
|
|
713
|
+ .ql-snow .ql-fill,
|
|
714
|
+ .ql-snow .ql-stroke.ql-fill {
|
|
715
|
+ fill: #444;
|
|
716
|
+ }
|
|
717
|
+ .ql-snow .ql-empty {
|
|
718
|
+ fill: none;
|
|
719
|
+ }
|
|
720
|
+ .ql-snow .ql-even {
|
|
721
|
+ fill-rule: evenodd;
|
|
722
|
+ }
|
|
723
|
+ .ql-snow .ql-thin,
|
|
724
|
+ .ql-snow .ql-stroke.ql-thin {
|
|
725
|
+ stroke-width: 1;
|
|
726
|
+ }
|
|
727
|
+ .ql-snow .ql-transparent {
|
|
728
|
+ opacity: 0.4;
|
|
729
|
+ }
|
|
730
|
+ .ql-snow .ql-direction svg:last-child {
|
|
731
|
+ display: none;
|
|
732
|
+ }
|
|
733
|
+ .ql-snow .ql-direction.ql-active svg:last-child {
|
|
734
|
+ display: inline;
|
|
735
|
+ }
|
|
736
|
+ .ql-snow .ql-direction.ql-active svg:first-child {
|
|
737
|
+ display: none;
|
|
738
|
+ }
|
|
739
|
+ .ql-snow .ql-editor h1 {
|
|
740
|
+ font-size: 2em;
|
|
741
|
+ }
|
|
742
|
+ .ql-snow .ql-editor h2 {
|
|
743
|
+ font-size: 1.5em;
|
|
744
|
+ }
|
|
745
|
+ .ql-snow .ql-editor h3 {
|
|
746
|
+ font-size: 1.17em;
|
|
747
|
+ }
|
|
748
|
+ .ql-snow .ql-editor h4 {
|
|
749
|
+ font-size: 1em;
|
|
750
|
+ }
|
|
751
|
+ .ql-snow .ql-editor h5 {
|
|
752
|
+ font-size: 0.83em;
|
|
753
|
+ }
|
|
754
|
+ .ql-snow .ql-editor h6 {
|
|
755
|
+ font-size: 0.67em;
|
|
756
|
+ }
|
|
757
|
+ .ql-snow .ql-editor a {
|
|
758
|
+ text-decoration: underline;
|
|
759
|
+ }
|
|
760
|
+ .ql-snow .ql-editor blockquote {
|
|
761
|
+ border-left: 4px solid #ccc;
|
|
762
|
+ margin-bottom: 5px;
|
|
763
|
+ margin-top: 5px;
|
|
764
|
+ padding-left: 16px;
|
|
765
|
+ }
|
|
766
|
+ .ql-snow .ql-editor code,
|
|
767
|
+ .ql-snow .ql-editor pre {
|
|
768
|
+ background-color: #f0f0f0;
|
|
769
|
+ border-radius: 3px;
|
|
770
|
+ }
|
|
771
|
+ .ql-snow .ql-editor pre {
|
|
772
|
+ white-space: pre-wrap;
|
|
773
|
+ margin-bottom: 5px;
|
|
774
|
+ margin-top: 5px;
|
|
775
|
+ padding: 5px 10px;
|
|
776
|
+ }
|
|
777
|
+ .ql-snow .ql-editor code {
|
|
778
|
+ font-size: 85%;
|
|
779
|
+ padding: 2px 4px;
|
|
780
|
+ }
|
|
781
|
+ .ql-snow .ql-editor pre.ql-syntax {
|
|
782
|
+ background-color: #23241f;
|
|
783
|
+ color: #f8f8f2;
|
|
784
|
+ overflow: visible;
|
|
785
|
+ }
|
|
786
|
+ .ql-snow .ql-editor img {
|
|
787
|
+ max-width: 100%;
|
|
788
|
+ }
|
|
789
|
+ .ql-snow .ql-picker {
|
|
790
|
+ color: #444;
|
|
791
|
+ display: inline-block;
|
|
792
|
+ float: left;
|
|
793
|
+ font-size: 14px;
|
|
794
|
+ font-weight: 500;
|
|
795
|
+ height: 24px;
|
|
796
|
+ position: relative;
|
|
797
|
+ vertical-align: middle;
|
|
798
|
+ }
|
|
799
|
+ .ql-snow .ql-picker-label {
|
|
800
|
+ cursor: pointer;
|
|
801
|
+ display: inline-block;
|
|
802
|
+ height: 100%;
|
|
803
|
+ padding-left: 8px;
|
|
804
|
+ padding-right: 2px;
|
|
805
|
+ position: relative;
|
|
806
|
+ width: 100%;
|
|
807
|
+ }
|
|
808
|
+ .ql-snow .ql-picker-label::before {
|
|
809
|
+ display: inline-block;
|
|
810
|
+ line-height: 22px;
|
|
811
|
+ }
|
|
812
|
+ .ql-snow .ql-picker-options {
|
|
813
|
+ background-color: #fff;
|
|
814
|
+ display: none;
|
|
815
|
+ min-width: 100%;
|
|
816
|
+ padding: 4px 8px;
|
|
817
|
+ position: absolute;
|
|
818
|
+ white-space: nowrap;
|
|
819
|
+ }
|
|
820
|
+ .ql-snow .ql-picker-options .ql-picker-item {
|
|
821
|
+ cursor: pointer;
|
|
822
|
+ display: block;
|
|
823
|
+ padding-bottom: 5px;
|
|
824
|
+ padding-top: 5px;
|
|
825
|
+ }
|
|
826
|
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
827
|
+ color: #ccc;
|
|
828
|
+ z-index: 2;
|
|
829
|
+ }
|
|
830
|
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
|
|
831
|
+ fill: #ccc;
|
|
832
|
+ }
|
|
833
|
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
|
|
834
|
+ stroke: #ccc;
|
|
835
|
+ }
|
|
836
|
+ .ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
837
|
+ display: block;
|
|
838
|
+ margin-top: -1px;
|
|
839
|
+ top: 100%;
|
|
840
|
+ z-index: 1;
|
|
841
|
+ }
|
|
842
|
+ .ql-snow .ql-color-picker,
|
|
843
|
+ .ql-snow .ql-icon-picker {
|
|
844
|
+ width: 28px;
|
|
845
|
+ }
|
|
846
|
+ .ql-snow .ql-color-picker .ql-picker-label,
|
|
847
|
+ .ql-snow .ql-icon-picker .ql-picker-label {
|
|
848
|
+ padding: 2px 4px;
|
|
849
|
+ }
|
|
850
|
+ .ql-snow .ql-color-picker .ql-picker-label svg,
|
|
851
|
+ .ql-snow .ql-icon-picker .ql-picker-label svg {
|
|
852
|
+ right: 4px;
|
|
853
|
+ }
|
|
854
|
+ .ql-snow .ql-icon-picker .ql-picker-options {
|
|
855
|
+ padding: 4px 0px;
|
|
856
|
+ }
|
|
857
|
+ .ql-snow .ql-icon-picker .ql-picker-item {
|
|
858
|
+ height: 24px;
|
|
859
|
+ width: 24px;
|
|
860
|
+ padding: 2px 4px;
|
|
861
|
+ }
|
|
862
|
+ .ql-snow .ql-color-picker .ql-picker-options {
|
|
863
|
+ padding: 3px 5px;
|
|
864
|
+ width: 152px;
|
|
865
|
+ }
|
|
866
|
+ .ql-snow .ql-color-picker .ql-picker-item {
|
|
867
|
+ border: 1px solid transparent;
|
|
868
|
+ float: left;
|
|
869
|
+ height: 16px;
|
|
870
|
+ margin: 2px;
|
|
871
|
+ padding: 0px;
|
|
872
|
+ width: 16px;
|
|
873
|
+ }
|
|
874
|
+ .ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
|
|
875
|
+ position: absolute;
|
|
876
|
+ margin-top: -9px;
|
|
877
|
+ right: 0;
|
|
878
|
+ top: 50%;
|
|
879
|
+ width: 18px;
|
|
880
|
+ }
|
|
881
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
|
|
882
|
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
|
|
883
|
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
|
|
884
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
|
|
885
|
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
|
|
886
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
|
|
887
|
+ content: attr(data-label);
|
|
888
|
+ }
|
|
889
|
+ .ql-snow .ql-picker.ql-header {
|
|
890
|
+ width: 98px;
|
|
891
|
+ }
|
|
892
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label::before,
|
|
893
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item::before {
|
|
894
|
+ content: 'Normal';
|
|
895
|
+ }
|
|
896
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
|
|
897
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
|
|
898
|
+ content: 'Heading 1';
|
|
899
|
+ }
|
|
900
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
|
|
901
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
|
|
902
|
+ content: 'Heading 2';
|
|
903
|
+ }
|
|
904
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
|
|
905
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
|
|
906
|
+ content: 'Heading 3';
|
|
907
|
+ }
|
|
908
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
|
|
909
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
|
|
910
|
+ content: 'Heading 4';
|
|
911
|
+ }
|
|
912
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
|
|
913
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
|
|
914
|
+ content: 'Heading 5';
|
|
915
|
+ }
|
|
916
|
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
|
|
917
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
|
|
918
|
+ content: 'Heading 6';
|
|
919
|
+ }
|
|
920
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
|
|
921
|
+ font-size: 2em;
|
|
922
|
+ }
|
|
923
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
|
|
924
|
+ font-size: 1.5em;
|
|
925
|
+ }
|
|
926
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
|
|
927
|
+ font-size: 1.17em;
|
|
928
|
+ }
|
|
929
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
|
|
930
|
+ font-size: 1em;
|
|
931
|
+ }
|
|
932
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
|
|
933
|
+ font-size: 0.83em;
|
|
934
|
+ }
|
|
935
|
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
|
|
936
|
+ font-size: 0.67em;
|
|
937
|
+ }
|
|
938
|
+ .ql-snow .ql-picker.ql-font {
|
|
939
|
+ width: 108px;
|
|
940
|
+ }
|
|
941
|
+ .ql-snow .ql-picker.ql-font .ql-picker-label::before,
|
|
942
|
+ .ql-snow .ql-picker.ql-font .ql-picker-item::before {
|
|
943
|
+ content: 'Sans Serif';
|
|
944
|
+ }
|
|
945
|
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
|
|
946
|
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
|
|
947
|
+ content: 'Serif';
|
|
948
|
+ }
|
|
949
|
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
|
|
950
|
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
|
|
951
|
+ content: 'Monospace';
|
|
952
|
+ }
|
|
953
|
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
|
|
954
|
+ font-family: Georgia, Times New Roman, serif;
|
|
955
|
+ }
|
|
956
|
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
|
|
957
|
+ font-family: Monaco, Courier New, monospace;
|
|
958
|
+ }
|
|
959
|
+ .ql-snow .ql-picker.ql-size {
|
|
960
|
+ width: 98px;
|
|
961
|
+ }
|
|
962
|
+ .ql-snow .ql-picker.ql-size .ql-picker-label::before,
|
|
963
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item::before {
|
|
964
|
+ content: 'Normal';
|
|
965
|
+ }
|
|
966
|
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
|
|
967
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
|
|
968
|
+ content: 'Small';
|
|
969
|
+ }
|
|
970
|
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
|
|
971
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
|
|
972
|
+ content: 'Large';
|
|
973
|
+ }
|
|
974
|
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
|
|
975
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
|
|
976
|
+ content: 'Huge';
|
|
977
|
+ }
|
|
978
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
|
|
979
|
+ font-size: 10px;
|
|
980
|
+ }
|
|
981
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
|
|
982
|
+ font-size: 18px;
|
|
983
|
+ }
|
|
984
|
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
|
|
985
|
+ font-size: 32px;
|
|
986
|
+ }
|
|
987
|
+ .ql-snow .ql-color-picker.ql-background .ql-picker-item {
|
|
988
|
+ background-color: #fff;
|
|
989
|
+ }
|
|
990
|
+ .ql-snow .ql-color-picker.ql-color .ql-picker-item {
|
|
991
|
+ background-color: #000;
|
|
992
|
+ }
|
|
993
|
+ .ql-toolbar.ql-snow {
|
|
994
|
+ border: 1px solid #ccc;
|
|
995
|
+ box-sizing: border-box;
|
|
996
|
+ font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
|
|
997
|
+ padding: 8px;
|
|
998
|
+ }
|
|
999
|
+ .ql-toolbar.ql-snow .ql-formats {
|
|
1000
|
+ margin-right: 15px;
|
|
1001
|
+ }
|
|
1002
|
+ .ql-toolbar.ql-snow .ql-picker-label {
|
|
1003
|
+ border: 1px solid transparent;
|
|
1004
|
+ }
|
|
1005
|
+ .ql-toolbar.ql-snow .ql-picker-options {
|
|
1006
|
+ border: 1px solid transparent;
|
|
1007
|
+ box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
|
|
1008
|
+ }
|
|
1009
|
+ .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
1010
|
+ border-color: #ccc;
|
|
1011
|
+ }
|
|
1012
|
+ .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
1013
|
+ border-color: #ccc;
|
|
1014
|
+ }
|
|
1015
|
+ .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
|
|
1016
|
+ .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
|
|
1017
|
+ border-color: #000;
|
|
1018
|
+ }
|
|
1019
|
+ .ql-toolbar.ql-snow + .ql-container.ql-snow {
|
|
1020
|
+ border-top: 0px;
|
|
1021
|
+ }
|
|
1022
|
+ .ql-snow .ql-tooltip {
|
|
1023
|
+ background-color: #fff;
|
|
1024
|
+ border: 1px solid #ccc;
|
|
1025
|
+ box-shadow: 0px 0px 5px #ddd;
|
|
1026
|
+ color: #444;
|
|
1027
|
+ padding: 5px 12px;
|
|
1028
|
+ white-space: nowrap;
|
|
1029
|
+ }
|
|
1030
|
+ .ql-snow .ql-tooltip::before {
|
|
1031
|
+ content: "Visit URL:";
|
|
1032
|
+ line-height: 26px;
|
|
1033
|
+ margin-right: 8px;
|
|
1034
|
+ }
|
|
1035
|
+ .ql-snow .ql-tooltip input[type=text] {
|
|
1036
|
+ display: none;
|
|
1037
|
+ border: 1px solid #ccc;
|
|
1038
|
+ font-size: 13px;
|
|
1039
|
+ height: 26px;
|
|
1040
|
+ margin: 0px;
|
|
1041
|
+ padding: 3px 5px;
|
|
1042
|
+ width: 170px;
|
|
1043
|
+ }
|
|
1044
|
+ .ql-snow .ql-tooltip a.ql-preview {
|
|
1045
|
+ display: inline-block;
|
|
1046
|
+ max-width: 200px;
|
|
1047
|
+ overflow-x: hidden;
|
|
1048
|
+ text-overflow: ellipsis;
|
|
1049
|
+ vertical-align: top;
|
|
1050
|
+ }
|
|
1051
|
+ .ql-snow .ql-tooltip a.ql-action::after {
|
|
1052
|
+ border-right: 1px solid #ccc;
|
|
1053
|
+ content: 'Edit';
|
|
1054
|
+ margin-left: 16px;
|
|
1055
|
+ padding-right: 8px;
|
|
1056
|
+ }
|
|
1057
|
+ .ql-snow .ql-tooltip a.ql-remove::before {
|
|
1058
|
+ content: 'Remove';
|
|
1059
|
+ margin-left: 8px;
|
|
1060
|
+ }
|
|
1061
|
+ .ql-snow .ql-tooltip a {
|
|
1062
|
+ line-height: 26px;
|
|
1063
|
+ }
|
|
1064
|
+ .ql-snow .ql-tooltip.ql-editing a.ql-preview,
|
|
1065
|
+ .ql-snow .ql-tooltip.ql-editing a.ql-remove {
|
|
1066
|
+ display: none;
|
|
1067
|
+ }
|
|
1068
|
+ .ql-snow .ql-tooltip.ql-editing input[type=text] {
|
|
1069
|
+ display: inline-block;
|
|
1070
|
+ }
|
|
1071
|
+ .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
|
|
1072
|
+ border-right: 0px;
|
|
1073
|
+ content: 'Save';
|
|
1074
|
+ padding-right: 0px;
|
|
1075
|
+ }
|
|
1076
|
+ .ql-snow .ql-tooltip[data-mode=link]::before {
|
|
1077
|
+ content: "Enter link:";
|
|
1078
|
+ }
|
|
1079
|
+ .ql-snow .ql-tooltip[data-mode=formula]::before {
|
|
1080
|
+ content: "Enter formula:";
|
|
1081
|
+ }
|
|
1082
|
+ .ql-snow .ql-tooltip[data-mode=video]::before {
|
|
1083
|
+ content: "Enter video:";
|
|
1084
|
+ }
|
|
1085
|
+ .ql-snow a {
|
|
1086
|
+ color: #06c;
|
|
1087
|
+ }
|
|
1088
|
+// .ql-container.ql-snow {
|
|
1089
|
+// border: 1px solid #ccc;
|
|
1090
|
+// }
|
|
1091
|
+
|
140
|
1092
|
@media screen and (min-width: 801px) and (max-width: 1400px) {
|
141
|
1093
|
.main{
|
142
|
1094
|
|