quilljs2-rails 2.1.2 → 2.1.3

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,378 +1,593 @@
1
1
  /*!
2
2
  * Quill Editor v2.0.3
3
- * https://quilljs.com/
3
+ * https://quilljs.com
4
+ * Copyright (c) 2017-2024, Slab
4
5
  * Copyright (c) 2014, Jason Chen
5
6
  * Copyright (c) 2013, salesforce.com
6
7
  */
7
8
  .ql-container {
8
- box-sizing: border-box;
9
- font-family: Helvetica, Arial, sans-serif;
10
- font-size: 13px;
11
- height: 100%;
12
- margin: 0px;
13
- position: relative;
14
- }
9
+ box-sizing: border-box;
10
+ font-family: Helvetica, Arial, sans-serif;
11
+ font-size: 13px;
12
+ height: 100%;
13
+ margin: 0;
14
+ position: relative
15
+ }
16
+
15
17
  .ql-container.ql-disabled .ql-tooltip {
16
- visibility: hidden;
18
+ visibility: hidden
19
+ }
20
+
21
+ .ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui, .ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
22
+ cursor: pointer
17
23
  }
24
+
18
25
  .ql-clipboard {
19
- left: -100000px;
20
- height: 1px;
21
- overflow-y: hidden;
22
- position: absolute;
23
- top: 50%;
26
+ left: -100000px;
27
+ height: 1px;
28
+ overflow-y: hidden;
29
+ position: absolute;
30
+ top: 50%
24
31
  }
32
+
25
33
  .ql-clipboard p {
26
- margin: 0;
27
- padding: 0;
34
+ margin: 0;
35
+ padding: 0
28
36
  }
37
+
29
38
  .ql-editor {
30
- box-sizing: border-box;
31
- cursor: text;
32
- line-height: 1.42;
33
- height: 100%;
34
- outline: none;
35
- overflow-y: auto;
36
- padding: 12px 15px;
37
- tab-size: 4;
38
- -moz-tab-size: 4;
39
- text-align: left;
40
- white-space: pre-wrap;
41
- word-wrap: break-word;
42
- }
43
- .ql-editor p,
44
- .ql-editor ol,
45
- .ql-editor ul,
46
- .ql-editor pre,
47
- .ql-editor blockquote,
48
- .ql-editor h1,
49
- .ql-editor h2,
50
- .ql-editor h3,
51
- .ql-editor h4,
52
- .ql-editor h5,
53
- .ql-editor h6 {
54
- margin: 0;
55
- padding: 0;
56
- counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
57
- }
58
- .ql-editor ol,
59
- .ql-editor ul {
60
- padding-left: 1.5em;
61
- }
62
- .ql-editor ol > li,
63
- .ql-editor ul > li {
64
- list-style-type: none;
65
- }
66
- .ql-editor ul > li::before {
67
- content: '\25CF';
68
- }
69
- .ql-editor ul[data-checked=true],
70
- .ql-editor ul[data-checked=false] {
71
- pointer-events: none;
72
- }
73
- .ql-editor ul[data-checked=true] > li::before,
74
- .ql-editor ul[data-checked=false] > li::before {
75
- color: #777;
76
- cursor: pointer;
77
- pointer-events: all;
78
- }
79
- .ql-editor ul[data-checked=true] > li::before {
80
- content: '\2611';
81
- }
82
- .ql-editor ul[data-checked=false] > li::before {
83
- content: '\2610';
84
- }
85
- .ql-editor li::before {
86
- display: inline-block;
87
- margin-right: 0.3em;
88
- text-align: right;
89
- white-space: nowrap;
90
- width: 1.2em;
91
- }
92
- .ql-editor li:not(.ql-direction-rtl)::before {
93
- margin-left: -1.5em;
94
- }
95
- .ql-editor ol li,
96
- .ql-editor ul li {
97
- padding-left: 1.5em;
98
- }
99
- .ql-editor ol li {
100
- counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
101
- counter-increment: list-num;
102
- }
103
- .ql-editor ol li:before {
104
- content: counter(list-num, decimal) '. ';
105
- }
106
- .ql-editor ol li.ql-indent-1 {
107
- counter-increment: list-1;
108
- }
109
- .ql-editor ol li.ql-indent-1:before {
110
- content: counter(list-1, lower-alpha) '. ';
111
- }
112
- .ql-editor ol li.ql-indent-1 {
113
- counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
114
- }
115
- .ql-editor ol li.ql-indent-2 {
116
- counter-increment: list-2;
117
- }
118
- .ql-editor ol li.ql-indent-2:before {
119
- content: counter(list-2, lower-roman) '. ';
120
- }
121
- .ql-editor ol li.ql-indent-2 {
122
- counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
123
- }
124
- .ql-editor ol li.ql-indent-3 {
125
- counter-increment: list-3;
126
- }
127
- .ql-editor ol li.ql-indent-3:before {
128
- content: counter(list-3, decimal) '. ';
129
- }
130
- .ql-editor ol li.ql-indent-3 {
131
- counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
132
- }
133
- .ql-editor ol li.ql-indent-4 {
134
- counter-increment: list-4;
135
- }
136
- .ql-editor ol li.ql-indent-4:before {
137
- content: counter(list-4, lower-alpha) '. ';
138
- }
139
- .ql-editor ol li.ql-indent-4 {
140
- counter-reset: list-5 list-6 list-7 list-8 list-9;
141
- }
142
- .ql-editor ol li.ql-indent-5 {
143
- counter-increment: list-5;
144
- }
145
- .ql-editor ol li.ql-indent-5:before {
146
- content: counter(list-5, lower-roman) '. ';
147
- }
148
- .ql-editor ol li.ql-indent-5 {
149
- counter-reset: list-6 list-7 list-8 list-9;
150
- }
151
- .ql-editor ol li.ql-indent-6 {
152
- counter-increment: list-6;
153
- }
154
- .ql-editor ol li.ql-indent-6:before {
155
- content: counter(list-6, decimal) '. ';
156
- }
157
- .ql-editor ol li.ql-indent-6 {
158
- counter-reset: list-7 list-8 list-9;
159
- }
160
- .ql-editor ol li.ql-indent-7 {
161
- counter-increment: list-7;
162
- }
163
- .ql-editor ol li.ql-indent-7:before {
164
- content: counter(list-7, lower-alpha) '. ';
165
- }
166
- .ql-editor ol li.ql-indent-7 {
167
- counter-reset: list-8 list-9;
168
- }
169
- .ql-editor ol li.ql-indent-8 {
170
- counter-increment: list-8;
171
- }
172
- .ql-editor ol li.ql-indent-8:before {
173
- content: counter(list-8, lower-roman) '. ';
174
- }
175
- .ql-editor ol li.ql-indent-8 {
176
- counter-reset: list-9;
177
- }
178
- .ql-editor ol li.ql-indent-9 {
179
- counter-increment: list-9;
180
- }
181
- .ql-editor ol li.ql-indent-9:before {
182
- content: counter(list-9, decimal) '. ';
183
- }
39
+ box-sizing: border-box;
40
+ counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
41
+ line-height: 1.42;
42
+ height: 100%;
43
+ outline: none;
44
+ overflow-y: auto;
45
+ padding: 12px 15px;
46
+ tab-size: 4;
47
+ -moz-tab-size: 4;
48
+ text-align: left;
49
+ white-space: pre-wrap;
50
+ word-wrap: break-word
51
+ }
52
+
53
+ .ql-editor > * {
54
+ cursor: text
55
+ }
56
+
57
+ .ql-editor p, .ql-editor ol, .ql-editor pre, .ql-editor blockquote, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
58
+ margin: 0;
59
+ padding: 0
60
+ }
61
+
62
+ @supports (counter-set:none) {
63
+ .ql-editor p, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
64
+ counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
65
+ }
66
+ }
67
+
68
+ @supports not (counter-set:none) {
69
+ .ql-editor p, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
70
+ counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
71
+ }
72
+ }
73
+
74
+ .ql-editor table {
75
+ border-collapse: collapse
76
+ }
77
+
78
+ .ql-editor td {
79
+ border: 1px solid #000;
80
+ padding: 2px 5px
81
+ }
82
+
83
+ .ql-editor ol {
84
+ padding-left: 1.5em
85
+ }
86
+
87
+ .ql-editor li {
88
+ list-style-type: none;
89
+ padding-left: 1.5em;
90
+ position: relative
91
+ }
92
+
93
+ .ql-editor li > .ql-ui:before {
94
+ display: inline-block;
95
+ margin-left: -1.5em;
96
+ margin-right: .3em;
97
+ text-align: right;
98
+ white-space: nowrap;
99
+ width: 1.2em
100
+ }
101
+
102
+ .ql-editor li[data-list=checked] > .ql-ui, .ql-editor li[data-list=unchecked] > .ql-ui {
103
+ color: #777
104
+ }
105
+
106
+ .ql-editor li[data-list=bullet] > .ql-ui:before {
107
+ content: '\2022'
108
+ }
109
+
110
+ .ql-editor li[data-list=checked] > .ql-ui:before {
111
+ content: '\2611'
112
+ }
113
+
114
+ .ql-editor li[data-list=unchecked] > .ql-ui:before {
115
+ content: '\2610'
116
+ }
117
+
118
+ @supports (counter-set:none) {
119
+ .ql-editor li[data-list] {
120
+ counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
121
+ }
122
+ }
123
+
124
+ @supports not (counter-set:none) {
125
+ .ql-editor li[data-list] {
126
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
127
+ }
128
+ }
129
+
130
+ .ql-editor li[data-list=ordered] {
131
+ counter-increment: list-0
132
+ }
133
+
134
+ .ql-editor li[data-list=ordered] > .ql-ui:before {
135
+ content: counter(list-0, decimal) '. '
136
+ }
137
+
138
+ .ql-editor li[data-list=ordered].ql-indent-1 {
139
+ counter-increment: list-1
140
+ }
141
+
142
+ .ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
143
+ content: counter(list-1, lower-alpha) '. '
144
+ }
145
+
146
+ @supports (counter-set:none) {
147
+ .ql-editor li[data-list].ql-indent-1 {
148
+ counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
149
+ }
150
+ }
151
+
152
+ @supports not (counter-set:none) {
153
+ .ql-editor li[data-list].ql-indent-1 {
154
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
155
+ }
156
+ }
157
+
158
+ .ql-editor li[data-list=ordered].ql-indent-2 {
159
+ counter-increment: list-2
160
+ }
161
+
162
+ .ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
163
+ content: counter(list-2, lower-roman) '. '
164
+ }
165
+
166
+ @supports (counter-set:none) {
167
+ .ql-editor li[data-list].ql-indent-2 {
168
+ counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9
169
+ }
170
+ }
171
+
172
+ @supports not (counter-set:none) {
173
+ .ql-editor li[data-list].ql-indent-2 {
174
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9
175
+ }
176
+ }
177
+
178
+ .ql-editor li[data-list=ordered].ql-indent-3 {
179
+ counter-increment: list-3
180
+ }
181
+
182
+ .ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
183
+ content: counter(list-3, decimal) '. '
184
+ }
185
+
186
+ @supports (counter-set:none) {
187
+ .ql-editor li[data-list].ql-indent-3 {
188
+ counter-set: list-4 list-5 list-6 list-7 list-8 list-9
189
+ }
190
+ }
191
+
192
+ @supports not (counter-set:none) {
193
+ .ql-editor li[data-list].ql-indent-3 {
194
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9
195
+ }
196
+ }
197
+
198
+ .ql-editor li[data-list=ordered].ql-indent-4 {
199
+ counter-increment: list-4
200
+ }
201
+
202
+ .ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
203
+ content: counter(list-4, lower-alpha) '. '
204
+ }
205
+
206
+ @supports (counter-set:none) {
207
+ .ql-editor li[data-list].ql-indent-4 {
208
+ counter-set: list-5 list-6 list-7 list-8 list-9
209
+ }
210
+ }
211
+
212
+ @supports not (counter-set:none) {
213
+ .ql-editor li[data-list].ql-indent-4 {
214
+ counter-reset: list-5 list-6 list-7 list-8 list-9
215
+ }
216
+ }
217
+
218
+ .ql-editor li[data-list=ordered].ql-indent-5 {
219
+ counter-increment: list-5
220
+ }
221
+
222
+ .ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
223
+ content: counter(list-5, lower-roman) '. '
224
+ }
225
+
226
+ @supports (counter-set:none) {
227
+ .ql-editor li[data-list].ql-indent-5 {
228
+ counter-set: list-6 list-7 list-8 list-9
229
+ }
230
+ }
231
+
232
+ @supports not (counter-set:none) {
233
+ .ql-editor li[data-list].ql-indent-5 {
234
+ counter-reset: list-6 list-7 list-8 list-9
235
+ }
236
+ }
237
+
238
+ .ql-editor li[data-list=ordered].ql-indent-6 {
239
+ counter-increment: list-6
240
+ }
241
+
242
+ .ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
243
+ content: counter(list-6, decimal) '. '
244
+ }
245
+
246
+ @supports (counter-set:none) {
247
+ .ql-editor li[data-list].ql-indent-6 {
248
+ counter-set: list-7 list-8 list-9
249
+ }
250
+ }
251
+
252
+ @supports not (counter-set:none) {
253
+ .ql-editor li[data-list].ql-indent-6 {
254
+ counter-reset: list-7 list-8 list-9
255
+ }
256
+ }
257
+
258
+ .ql-editor li[data-list=ordered].ql-indent-7 {
259
+ counter-increment: list-7
260
+ }
261
+
262
+ .ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
263
+ content: counter(list-7, lower-alpha) '. '
264
+ }
265
+
266
+ @supports (counter-set:none) {
267
+ .ql-editor li[data-list].ql-indent-7 {
268
+ counter-set: list-8 list-9
269
+ }
270
+ }
271
+
272
+ @supports not (counter-set:none) {
273
+ .ql-editor li[data-list].ql-indent-7 {
274
+ counter-reset: list-8 list-9
275
+ }
276
+ }
277
+
278
+ .ql-editor li[data-list=ordered].ql-indent-8 {
279
+ counter-increment: list-8
280
+ }
281
+
282
+ .ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
283
+ content: counter(list-8, lower-roman) '. '
284
+ }
285
+
286
+ @supports (counter-set:none) {
287
+ .ql-editor li[data-list].ql-indent-8 {
288
+ counter-set: list-9
289
+ }
290
+ }
291
+
292
+ @supports not (counter-set:none) {
293
+ .ql-editor li[data-list].ql-indent-8 {
294
+ counter-reset: list-9
295
+ }
296
+ }
297
+
298
+ .ql-editor li[data-list=ordered].ql-indent-9 {
299
+ counter-increment: list-9
300
+ }
301
+
302
+ .ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
303
+ content: counter(list-9, decimal) '. '
304
+ }
305
+
184
306
  .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
185
- padding-left: 3em;
307
+ padding-left: 3em
186
308
  }
309
+
187
310
  .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
188
- padding-left: 4.5em;
311
+ padding-left: 4.5em
189
312
  }
313
+
190
314
  .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
191
- padding-right: 3em;
315
+ padding-right: 3em
192
316
  }
317
+
193
318
  .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
194
- padding-right: 4.5em;
319
+ padding-right: 4.5em
195
320
  }
321
+
196
322
  .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
197
- padding-left: 6em;
323
+ padding-left: 6em
198
324
  }
325
+
199
326
  .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
200
- padding-left: 7.5em;
327
+ padding-left: 7.5em
201
328
  }
329
+
202
330
  .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
203
- padding-right: 6em;
331
+ padding-right: 6em
204
332
  }
333
+
205
334
  .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
206
- padding-right: 7.5em;
335
+ padding-right: 7.5em
207
336
  }
337
+
208
338
  .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
209
- padding-left: 9em;
339
+ padding-left: 9em
210
340
  }
341
+
211
342
  .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
212
- padding-left: 10.5em;
343
+ padding-left: 10.5em
213
344
  }
345
+
214
346
  .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
215
- padding-right: 9em;
347
+ padding-right: 9em
216
348
  }
349
+
217
350
  .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
218
- padding-right: 10.5em;
351
+ padding-right: 10.5em
219
352
  }
353
+
220
354
  .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
221
- padding-left: 12em;
355
+ padding-left: 12em
222
356
  }
357
+
223
358
  .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
224
- padding-left: 13.5em;
359
+ padding-left: 13.5em
225
360
  }
361
+
226
362
  .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
227
- padding-right: 12em;
363
+ padding-right: 12em
228
364
  }
365
+
229
366
  .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
230
- padding-right: 13.5em;
367
+ padding-right: 13.5em
231
368
  }
369
+
232
370
  .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
233
- padding-left: 15em;
371
+ padding-left: 15em
234
372
  }
373
+
235
374
  .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
236
- padding-left: 16.5em;
375
+ padding-left: 16.5em
237
376
  }
377
+
238
378
  .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
239
- padding-right: 15em;
379
+ padding-right: 15em
240
380
  }
381
+
241
382
  .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
242
- padding-right: 16.5em;
383
+ padding-right: 16.5em
243
384
  }
385
+
244
386
  .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
245
- padding-left: 18em;
387
+ padding-left: 18em
246
388
  }
389
+
247
390
  .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
248
- padding-left: 19.5em;
391
+ padding-left: 19.5em
249
392
  }
393
+
250
394
  .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
251
- padding-right: 18em;
395
+ padding-right: 18em
252
396
  }
397
+
253
398
  .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
254
- padding-right: 19.5em;
399
+ padding-right: 19.5em
255
400
  }
401
+
256
402
  .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
257
- padding-left: 21em;
403
+ padding-left: 21em
258
404
  }
405
+
259
406
  .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
260
- padding-left: 22.5em;
407
+ padding-left: 22.5em
261
408
  }
409
+
262
410
  .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
263
- padding-right: 21em;
411
+ padding-right: 21em
264
412
  }
413
+
265
414
  .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
266
- padding-right: 22.5em;
415
+ padding-right: 22.5em
267
416
  }
417
+
268
418
  .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
269
- padding-left: 24em;
419
+ padding-left: 24em
270
420
  }
421
+
271
422
  .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
272
- padding-left: 25.5em;
423
+ padding-left: 25.5em
273
424
  }
425
+
274
426
  .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
275
- padding-right: 24em;
427
+ padding-right: 24em
276
428
  }
429
+
277
430
  .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
278
- padding-right: 25.5em;
431
+ padding-right: 25.5em
279
432
  }
433
+
280
434
  .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
281
- padding-left: 27em;
435
+ padding-left: 27em
282
436
  }
437
+
283
438
  .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
284
- padding-left: 28.5em;
439
+ padding-left: 28.5em
285
440
  }
441
+
286
442
  .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
287
- padding-right: 27em;
443
+ padding-right: 27em
288
444
  }
445
+
289
446
  .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
290
- padding-right: 28.5em;
447
+ padding-right: 28.5em
448
+ }
449
+
450
+ .ql-editor li.ql-direction-rtl {
451
+ padding-right: 1.5em
291
452
  }
453
+
454
+ .ql-editor li.ql-direction-rtl > .ql-ui:before {
455
+ margin-left: .3em;
456
+ margin-right: -1.5em;
457
+ text-align: left
458
+ }
459
+
460
+ .ql-editor table {
461
+ table-layout: fixed;
462
+ width: 100%
463
+ }
464
+
465
+ .ql-editor table td {
466
+ outline: none
467
+ }
468
+
469
+ .ql-editor .ql-code-block-container {
470
+ font-family: monospace
471
+ }
472
+
292
473
  .ql-editor .ql-video {
293
- display: block;
294
- max-width: 100%;
474
+ display: block;
475
+ max-width: 100%
295
476
  }
477
+
296
478
  .ql-editor .ql-video.ql-align-center {
297
- margin: 0 auto;
479
+ margin: 0 auto
298
480
  }
481
+
299
482
  .ql-editor .ql-video.ql-align-right {
300
- margin: 0 0 0 auto;
483
+ margin: 0 0 0 auto
301
484
  }
485
+
302
486
  .ql-editor .ql-bg-black {
303
- background-color: #000;
487
+ background-color: #000
304
488
  }
489
+
305
490
  .ql-editor .ql-bg-red {
306
- background-color: #e60000;
491
+ background-color: #e60000
307
492
  }
493
+
308
494
  .ql-editor .ql-bg-orange {
309
- background-color: #f90;
495
+ background-color: #f90
310
496
  }
497
+
311
498
  .ql-editor .ql-bg-yellow {
312
- background-color: #ff0;
499
+ background-color: #ff0
313
500
  }
501
+
314
502
  .ql-editor .ql-bg-green {
315
- background-color: #008a00;
503
+ background-color: #008a00
316
504
  }
505
+
317
506
  .ql-editor .ql-bg-blue {
318
- background-color: #06c;
507
+ background-color: #06c
319
508
  }
509
+
320
510
  .ql-editor .ql-bg-purple {
321
- background-color: #93f;
511
+ background-color: #93f
322
512
  }
513
+
323
514
  .ql-editor .ql-color-white {
324
- color: #fff;
515
+ color: #fff
325
516
  }
517
+
326
518
  .ql-editor .ql-color-red {
327
- color: #e60000;
519
+ color: #e60000
328
520
  }
521
+
329
522
  .ql-editor .ql-color-orange {
330
- color: #f90;
523
+ color: #f90
331
524
  }
525
+
332
526
  .ql-editor .ql-color-yellow {
333
- color: #ff0;
527
+ color: #ff0
334
528
  }
529
+
335
530
  .ql-editor .ql-color-green {
336
- color: #008a00;
531
+ color: #008a00
337
532
  }
533
+
338
534
  .ql-editor .ql-color-blue {
339
- color: #06c;
535
+ color: #06c
340
536
  }
537
+
341
538
  .ql-editor .ql-color-purple {
342
- color: #93f;
539
+ color: #93f
343
540
  }
541
+
344
542
  .ql-editor .ql-font-serif {
345
- font-family: Georgia, Times New Roman, serif;
543
+ font-family: Georgia, Times New Roman, serif
346
544
  }
545
+
347
546
  .ql-editor .ql-font-monospace {
348
- font-family: Monaco, Courier New, monospace;
547
+ font-family: Monaco, Courier New, monospace
349
548
  }
549
+
350
550
  .ql-editor .ql-size-small {
351
- font-size: 0.75em;
551
+ font-size: .75em
352
552
  }
553
+
353
554
  .ql-editor .ql-size-large {
354
- font-size: 1.5em;
555
+ font-size: 1.5em
355
556
  }
557
+
356
558
  .ql-editor .ql-size-huge {
357
- font-size: 2.5em;
559
+ font-size: 2.5em
358
560
  }
561
+
359
562
  .ql-editor .ql-direction-rtl {
360
- direction: rtl;
361
- text-align: inherit;
563
+ direction: rtl;
564
+ text-align: inherit
362
565
  }
566
+
363
567
  .ql-editor .ql-align-center {
364
- text-align: center;
568
+ text-align: center
365
569
  }
570
+
366
571
  .ql-editor .ql-align-justify {
367
- text-align: justify;
572
+ text-align: justify
368
573
  }
574
+
369
575
  .ql-editor .ql-align-right {
370
- text-align: right;
576
+ text-align: right
577
+ }
578
+
579
+ .ql-editor .ql-ui {
580
+ position: absolute
371
581
  }
582
+
372
583
  .ql-editor.ql-blank::before {
373
- color: rgba(0,0,0,0.6);
374
- content: attr(data-placeholder);
375
- font-style: italic;
376
- pointer-events: none;
377
- position: absolute;
378
- }
584
+ color: rgba(0, 0, 0, 0.6);
585
+ content: attr(data-placeholder);
586
+ font-style: italic;
587
+ left: 15px;
588
+ pointer-events: none;
589
+ position: absolute;
590
+ right: 15px
591
+ }
592
+
593
+ /*# sourceMappingURL=quill.core.css.map*/