@uxland/primary-shell 1.0.16 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist/UI/components/primaria-breadcumbs/primaria-breadcumbs.d.ts +1 -0
  2. package/dist/UI/index.d.ts +1 -0
  3. package/dist/UI/shared-components/dss-container/dss-container.d.ts +7 -0
  4. package/dist/UI/shared-components/index.d.ts +2 -0
  5. package/dist/UI/shared-components/primaria-content-switcher/primaria-content-switcher.d.ts +14 -0
  6. package/dist/UI/shared-components/primaria-interaction/components/dialog-component.d.ts +20 -0
  7. package/dist/UI/shared-components/primaria-interaction/components/notifier-component.d.ts +12 -0
  8. package/dist/UI/shared-components/primaria-interaction/confirm-mixin.d.ts +16 -0
  9. package/dist/UI/shared-components/primaria-interaction/confirm.d.ts +3 -0
  10. package/dist/UI/shared-components/primaria-interaction/index.d.ts +4 -0
  11. package/dist/UI/shared-components/primaria-interaction/notify.d.ts +4 -0
  12. package/dist/UI/shared-components/primaria-interaction/typings.d.ts +28 -0
  13. package/dist/UI/shared-components/primaria-menu-item/primaria-menu-item.d.ts +10 -0
  14. package/dist/UI/shared-components/primaria-menu-item/template.d.ts +3 -0
  15. package/dist/UI/shared-components/primaria-text-editor/primaria-rich-text-editor.d.ts +57 -0
  16. package/dist/UI/shared-components/primaria-text-editor/template.d.ts +1 -0
  17. package/dist/UI/shared-components/primaria-text-editor/utils.d.ts +1 -0
  18. package/dist/api/interaction-manager/interaction.d.ts +1 -1
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +24029 -14713
  21. package/dist/index.js.map +1 -1
  22. package/dist/index.umd.cjs +526 -383
  23. package/dist/index.umd.cjs.map +1 -1
  24. package/package.json +3 -2
  25. package/src/UI/components/clinical-monitoring/styles.scss +1 -0
  26. package/src/UI/components/index.ts +1 -1
  27. package/src/UI/components/primaria-breadcumbs/primaria-breadcumbs.ts +5 -1
  28. package/src/UI/components/primaria-shell/styles.scss +1 -3
  29. package/src/UI/components/primaria-shell/template.ts +1 -3
  30. package/src/UI/index.ts +1 -0
  31. package/src/UI/shared-components/design-system.css +1 -0
  32. package/src/UI/shared-components/dss-container/dss-container.ts +32 -0
  33. package/src/UI/shared-components/dss-container/styles.scss +21 -0
  34. package/src/UI/shared-components/index.ts +5 -0
  35. package/src/UI/shared-components/primaria-content-switcher/primaria-content-switcher.ts +79 -0
  36. package/src/UI/shared-components/primaria-interaction/components/dialog-component-styles.scss +155 -0
  37. package/src/UI/shared-components/primaria-interaction/components/dialog-component.ts +119 -0
  38. package/src/UI/shared-components/primaria-interaction/components/notifier-component-styles.scss +128 -0
  39. package/src/UI/shared-components/primaria-interaction/components/notifier-component.ts +73 -0
  40. package/src/UI/shared-components/primaria-interaction/confirm-mixin.ts +39 -0
  41. package/src/UI/shared-components/primaria-interaction/confirm.ts +26 -0
  42. package/src/UI/shared-components/primaria-interaction/index.ts +4 -0
  43. package/src/UI/shared-components/primaria-interaction/notify.ts +153 -0
  44. package/src/UI/shared-components/primaria-interaction/typings.ts +32 -0
  45. package/src/UI/shared-components/primaria-menu-item/primaria-menu-item.ts +25 -0
  46. package/src/UI/shared-components/primaria-menu-item/styles.scss +10 -0
  47. package/src/UI/shared-components/primaria-menu-item/template.ts +8 -0
  48. package/src/UI/shared-components/primaria-text-editor/primaria-rich-text-editor.ts +230 -0
  49. package/src/UI/shared-components/primaria-text-editor/styles.scss +972 -0
  50. package/src/UI/shared-components/primaria-text-editor/template.ts +8 -0
  51. package/src/UI/shared-components/primaria-text-editor/utils.ts +39 -0
  52. package/src/api/interaction-manager/interaction.ts +1 -1
  53. package/src/index.ts +2 -0
  54. package/src/initializer.ts +1 -1
@@ -0,0 +1,972 @@
1
+ :host {
2
+ height: 100%;
3
+ // @include layout;
4
+ // @include layout-flex;
5
+ }
6
+ .container {
7
+ width: 100%;
8
+ height: 100%;
9
+ display: flex;
10
+ flex-direction: column;
11
+ flex: 1;
12
+ }
13
+
14
+ .ql-container {
15
+ box-sizing: border-box;
16
+ font-family: Helvetica, Arial, sans-serif;
17
+ font-size: 13px;
18
+ height: 100%;
19
+ margin: 0;
20
+ position: relative;
21
+ color: black;
22
+ overflow-y: auto;
23
+ }
24
+
25
+ .ql-container.ql-disabled .ql-tooltip {
26
+ visibility: hidden;
27
+ }
28
+ .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
29
+ pointer-events: none;
30
+ }
31
+ .ql-clipboard {
32
+ left: -100000px;
33
+ height: 1px;
34
+ overflow-y: hidden;
35
+ position: absolute;
36
+ top: 50%;
37
+ }
38
+ .ql-clipboard p {
39
+ margin: 0;
40
+ padding: 0;
41
+ }
42
+ .ql-editor {
43
+ box-sizing: border-box;
44
+ line-height: 1.42;
45
+ height: 100%;
46
+ outline: none;
47
+ overflow-y: auto;
48
+ padding: 12px 15px;
49
+ tab-size: 4;
50
+ -moz-tab-size: 4;
51
+ text-align: left;
52
+ white-space: pre-wrap;
53
+ word-wrap: break-word;
54
+ }
55
+ .ql-editor > * {
56
+ cursor: text;
57
+ }
58
+ .ql-editor p,
59
+ .ql-editor ol,
60
+ .ql-editor ul,
61
+ .ql-editor pre,
62
+ .ql-editor blockquote,
63
+ .ql-editor h1,
64
+ .ql-editor h2,
65
+ .ql-editor h3,
66
+ .ql-editor h4,
67
+ .ql-editor h5,
68
+ .ql-editor h6 {
69
+ margin: 0;
70
+ padding: 0;
71
+ //counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
72
+ }
73
+ .ql-editor ol,
74
+ .ql-editor ul {
75
+ padding-left: 1.5em;
76
+ }
77
+ .ql-editor ol > li {
78
+ list-style-type: none;
79
+ }
80
+ .ql-editor ul > li {
81
+ list-style-type: disc;
82
+ }
83
+ .ql-editor ul[data-checked="true"],
84
+ .ql-editor ul[data-checked="false"] {
85
+ pointer-events: none;
86
+ }
87
+ .ql-editor ul[data-checked="true"] > li *,
88
+ .ql-editor ul[data-checked="false"] > li * {
89
+ pointer-events: all;
90
+ }
91
+ .ql-editor ul[data-checked="true"] > li::before,
92
+ .ql-editor ul[data-checked="false"] > li::before {
93
+ color: #777;
94
+ cursor: pointer;
95
+ pointer-events: all;
96
+ }
97
+ .ql-editor ul[data-checked="true"] > li::before {
98
+ content: #{"\2611"};
99
+ }
100
+ .ql-editor ul[data-checked="false"] > li::before {
101
+ content: #{"\2610"};
102
+ }
103
+ .ql-editor li::before {
104
+ display: inline-block;
105
+ white-space: nowrap;
106
+ width: 1.2em;
107
+ }
108
+ .ql-editor li:not(.ql-direction-rtl)::before {
109
+ margin-left: -1.5em;
110
+ margin-right: 0.3em;
111
+ text-align: right;
112
+ }
113
+ .ql-editor li.ql-direction-rtl::before {
114
+ margin-left: 0.3em;
115
+ margin-right: -1.5em;
116
+ }
117
+ .ql-editor ol li:not(.ql-direction-rtl),
118
+ .ql-editor ul li:not(.ql-direction-rtl) {
119
+ padding-left: 1.5em;
120
+ }
121
+ .ql-editor ol li.ql-direction-rtl,
122
+ .ql-editor ul li.ql-direction-rtl {
123
+ padding-right: 1.5em;
124
+ }
125
+ .ql-editor ol li {
126
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
127
+ counter-increment: list-0;
128
+ }
129
+ .ql-editor ol li:before {
130
+ content: counter(list-0, decimal) ". ";
131
+ }
132
+ .ql-editor ol li.ql-indent-1 {
133
+ counter-increment: list-1;
134
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
135
+ }
136
+ .ql-editor ol li.ql-indent-1:before {
137
+ content: counter(list-1, lower-alpha) ". ";
138
+ }
139
+ .ql-editor ol li.ql-indent-2 {
140
+ counter-increment: list-2;
141
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
142
+ }
143
+ .ql-editor ol li.ql-indent-2:before {
144
+ content: counter(list-2, lower-roman) ". ";
145
+ }
146
+ .ql-editor ol li.ql-indent-3 {
147
+ counter-increment: list-3;
148
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
149
+ }
150
+ .ql-editor ol li.ql-indent-3:before {
151
+ content: counter(list-3, decimal) ". ";
152
+ }
153
+ .ql-editor ol li.ql-indent-4 {
154
+ counter-increment: list-4;
155
+ counter-reset: list-5 list-6 list-7 list-8 list-9;
156
+ }
157
+ .ql-editor ol li.ql-indent-4:before {
158
+ content: counter(list-4, lower-alpha) ". ";
159
+ }
160
+ .ql-editor ol li.ql-indent-5 {
161
+ counter-increment: list-5;
162
+ counter-reset: list-6 list-7 list-8 list-9;
163
+ }
164
+ .ql-editor ol li.ql-indent-5:before {
165
+ content: counter(list-5, lower-roman) ". ";
166
+ }
167
+ .ql-editor ol li.ql-indent-6 {
168
+ counter-increment: list-6;
169
+ counter-reset: list-7 list-8 list-9;
170
+ }
171
+ .ql-editor ol li.ql-indent-6:before {
172
+ content: counter(list-6, decimal) ". ";
173
+ }
174
+ .ql-editor ol li.ql-indent-7 {
175
+ counter-increment: list-7;
176
+ counter-reset: list-8 list-9;
177
+ }
178
+ .ql-editor ol li.ql-indent-7:before {
179
+ content: counter(list-7, lower-alpha) ". ";
180
+ }
181
+ .ql-editor ol li.ql-indent-8 {
182
+ counter-increment: list-8;
183
+ counter-reset: list-9;
184
+ }
185
+ .ql-editor ol li.ql-indent-8:before {
186
+ content: counter(list-8, lower-roman) ". ";
187
+ }
188
+ .ql-editor ol li.ql-indent-9 {
189
+ counter-increment: list-9;
190
+ }
191
+ .ql-editor ol li.ql-indent-9:before {
192
+ content: counter(list-9, decimal) ". ";
193
+ }
194
+ .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
195
+ padding-left: 3em;
196
+ }
197
+ .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
198
+ padding-left: 4.5em;
199
+ }
200
+ .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
201
+ padding-right: 3em;
202
+ }
203
+ .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
204
+ padding-right: 4.5em;
205
+ }
206
+ .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
207
+ padding-left: 6em;
208
+ }
209
+ .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
210
+ padding-left: 7.5em;
211
+ }
212
+ .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
213
+ padding-right: 6em;
214
+ }
215
+ .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
216
+ padding-right: 7.5em;
217
+ }
218
+ .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
219
+ padding-left: 9em;
220
+ }
221
+ .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
222
+ padding-left: 10.5em;
223
+ }
224
+ .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
225
+ padding-right: 9em;
226
+ }
227
+ .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
228
+ padding-right: 10.5em;
229
+ }
230
+ .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
231
+ padding-left: 12em;
232
+ }
233
+ .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
234
+ padding-left: 13.5em;
235
+ }
236
+ .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
237
+ padding-right: 12em;
238
+ }
239
+ .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
240
+ padding-right: 13.5em;
241
+ }
242
+ .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
243
+ padding-left: 15em;
244
+ }
245
+ .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
246
+ padding-left: 16.5em;
247
+ }
248
+ .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
249
+ padding-right: 15em;
250
+ }
251
+ .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
252
+ padding-right: 16.5em;
253
+ }
254
+ .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
255
+ padding-left: 18em;
256
+ }
257
+ .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
258
+ padding-left: 19.5em;
259
+ }
260
+ .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
261
+ padding-right: 18em;
262
+ }
263
+ .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
264
+ padding-right: 19.5em;
265
+ }
266
+ .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
267
+ padding-left: 21em;
268
+ }
269
+ .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
270
+ padding-left: 22.5em;
271
+ }
272
+ .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
273
+ padding-right: 21em;
274
+ }
275
+ .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
276
+ padding-right: 22.5em;
277
+ }
278
+ .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
279
+ padding-left: 24em;
280
+ }
281
+ .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
282
+ padding-left: 25.5em;
283
+ }
284
+ .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
285
+ padding-right: 24em;
286
+ }
287
+ .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
288
+ padding-right: 25.5em;
289
+ }
290
+ .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
291
+ padding-left: 27em;
292
+ }
293
+ .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
294
+ padding-left: 28.5em;
295
+ }
296
+ .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
297
+ padding-right: 27em;
298
+ }
299
+ .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
300
+ padding-right: 28.5em;
301
+ }
302
+ .ql-editor .ql-video {
303
+ display: block;
304
+ max-width: 100%;
305
+ }
306
+ .ql-editor .ql-video.ql-align-center {
307
+ margin: 0 auto;
308
+ }
309
+ .ql-editor .ql-video.ql-align-right {
310
+ margin: 0 0 0 auto;
311
+ }
312
+ .ql-editor .ql-bg-black {
313
+ background-color: #000;
314
+ }
315
+ .ql-editor .ql-bg-red {
316
+ background-color: #e60000;
317
+ }
318
+ .ql-editor .ql-bg-orange {
319
+ background-color: #f90;
320
+ }
321
+ .ql-editor .ql-bg-yellow {
322
+ background-color: #ff0;
323
+ }
324
+ .ql-editor .ql-bg-green {
325
+ background-color: #008a00;
326
+ }
327
+ .ql-editor .ql-bg-blue {
328
+ background-color: #06c;
329
+ }
330
+ .ql-editor .ql-bg-purple {
331
+ background-color: #93f;
332
+ }
333
+ .ql-editor .ql-color-white {
334
+ color: #fff;
335
+ }
336
+ .ql-editor .ql-color-red {
337
+ color: #e60000;
338
+ }
339
+ .ql-editor .ql-color-orange {
340
+ color: #f90;
341
+ }
342
+ .ql-editor .ql-color-yellow {
343
+ color: #ff0;
344
+ }
345
+ .ql-editor .ql-color-green {
346
+ color: #008a00;
347
+ }
348
+ .ql-editor .ql-color-blue {
349
+ color: #06c;
350
+ }
351
+ .ql-editor .ql-color-purple {
352
+ color: #93f;
353
+ }
354
+ .ql-editor .ql-font-serif {
355
+ font-family:
356
+ Georgia,
357
+ Times New Roman,
358
+ serif;
359
+ }
360
+ .ql-editor .ql-font-monospace {
361
+ font-family:
362
+ Monaco,
363
+ Courier New,
364
+ monospace;
365
+ }
366
+ .ql-editor .ql-size-small {
367
+ font-size: 0.75em;
368
+ }
369
+ .ql-editor .ql-size-large {
370
+ font-size: 1.5em;
371
+ }
372
+ .ql-editor .ql-size-huge {
373
+ font-size: 2.5em;
374
+ }
375
+ .ql-editor .ql-direction-rtl {
376
+ direction: rtl;
377
+ text-align: inherit;
378
+ }
379
+ .ql-editor .ql-align-center {
380
+ text-align: center;
381
+ }
382
+ .ql-editor .ql-align-justify {
383
+ text-align: justify;
384
+ }
385
+ .ql-editor .ql-align-right {
386
+ text-align: right;
387
+ }
388
+ .ql-editor.ql-blank::before {
389
+ color: rgba(0, 0, 0, 0.6);
390
+ content: attr(data-placeholder);
391
+ font-style: italic;
392
+ left: 15px;
393
+ pointer-events: none;
394
+ position: absolute;
395
+ right: 15px;
396
+ }
397
+ .ql-snow.ql-toolbar:after,
398
+ .ql-snow .ql-toolbar:after {
399
+ clear: both;
400
+ content: "";
401
+ display: table;
402
+ }
403
+ .ql-snow.ql-toolbar button,
404
+ .ql-snow .ql-toolbar button {
405
+ background: none;
406
+ border: none;
407
+ cursor: pointer;
408
+ display: inline-block;
409
+ float: left;
410
+ height: 24px;
411
+ padding: 3px 5px;
412
+ width: 28px;
413
+ }
414
+ .ql-snow.ql-toolbar button svg,
415
+ .ql-snow .ql-toolbar button svg {
416
+ float: left;
417
+ height: 100%;
418
+ }
419
+ .ql-snow.ql-toolbar button:active:hover,
420
+ .ql-snow .ql-toolbar button:active:hover {
421
+ outline: none;
422
+ }
423
+ .ql-snow.ql-toolbar input.ql-image[type="file"],
424
+ .ql-snow .ql-toolbar input.ql-image[type="file"] {
425
+ display: none;
426
+ }
427
+ .ql-snow.ql-toolbar button:hover,
428
+ .ql-snow .ql-toolbar button:hover,
429
+ .ql-snow.ql-toolbar button:focus,
430
+ .ql-snow .ql-toolbar button:focus,
431
+ .ql-snow.ql-toolbar button.ql-active,
432
+ .ql-snow .ql-toolbar button.ql-active,
433
+ .ql-snow.ql-toolbar .ql-picker-label:hover,
434
+ .ql-snow .ql-toolbar .ql-picker-label:hover,
435
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active,
436
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active,
437
+ .ql-snow.ql-toolbar .ql-picker-item:hover,
438
+ .ql-snow .ql-toolbar .ql-picker-item:hover,
439
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
440
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
441
+ color: #06c;
442
+ }
443
+ .ql-snow.ql-toolbar button:hover .ql-fill,
444
+ .ql-snow .ql-toolbar button:hover .ql-fill,
445
+ .ql-snow.ql-toolbar button:focus .ql-fill,
446
+ .ql-snow .ql-toolbar button:focus .ql-fill,
447
+ .ql-snow.ql-toolbar button.ql-active .ql-fill,
448
+ .ql-snow .ql-toolbar button.ql-active .ql-fill,
449
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
450
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
451
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
452
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
453
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
454
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
455
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
456
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
457
+ .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
458
+ .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
459
+ .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
460
+ .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
461
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
462
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
463
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
464
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
465
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
466
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
467
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
468
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
469
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
470
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
471
+ fill: #06c;
472
+ }
473
+ .ql-snow.ql-toolbar button:hover .ql-stroke,
474
+ .ql-snow .ql-toolbar button:hover .ql-stroke,
475
+ .ql-snow.ql-toolbar button:focus .ql-stroke,
476
+ .ql-snow .ql-toolbar button:focus .ql-stroke,
477
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke,
478
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke,
479
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
480
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
481
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
482
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
483
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
484
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
485
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
486
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
487
+ .ql-snow.ql-toolbar button:hover .ql-stroke-miter,
488
+ .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
489
+ .ql-snow.ql-toolbar button:focus .ql-stroke-miter,
490
+ .ql-snow .ql-toolbar button:focus .ql-stroke-miter,
491
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
492
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
493
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
494
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
495
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
496
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
497
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
498
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
499
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
500
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
501
+ stroke: #06c;
502
+ }
503
+ @media (pointer: coarse) {
504
+ .ql-snow.ql-toolbar button:hover:not(.ql-active),
505
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) {
506
+ color: #444;
507
+ }
508
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
509
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
510
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
511
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
512
+ fill: #444;
513
+ }
514
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
515
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
516
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
517
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
518
+ stroke: #444;
519
+ }
520
+ }
521
+ .ql-snow {
522
+ box-sizing: border-box;
523
+ }
524
+ .ql-snow * {
525
+ box-sizing: border-box;
526
+ }
527
+ .ql-snow .ql-hidden {
528
+ display: none;
529
+ }
530
+ .ql-snow .ql-out-bottom,
531
+ .ql-snow .ql-out-top {
532
+ visibility: hidden;
533
+ }
534
+ .ql-snow .ql-tooltip {
535
+ position: absolute;
536
+ transform: translateY(10px);
537
+ background-color: #fff;
538
+ border: 1px solid #ccc;
539
+ box-shadow: 0px 0px 5px #ddd;
540
+ color: #444;
541
+ padding: 5px 12px;
542
+ white-space: nowrap;
543
+ }
544
+ .ql-snow .ql-tooltip a {
545
+ cursor: pointer;
546
+ text-decoration: none;
547
+ line-height: 26px;
548
+ }
549
+ .ql-snow .ql-tooltip.ql-flip {
550
+ transform: translateY(-10px);
551
+ }
552
+ .ql-snow .ql-formats {
553
+ display: inline-block;
554
+ vertical-align: middle;
555
+ }
556
+ .ql-snow .ql-formats:after {
557
+ clear: both;
558
+ content: "";
559
+ display: table;
560
+ }
561
+ .ql-snow .ql-stroke {
562
+ fill: none;
563
+ stroke: #444;
564
+ stroke-linecap: round;
565
+ stroke-linejoin: round;
566
+ stroke-width: 2;
567
+ }
568
+ .ql-snow .ql-stroke-miter {
569
+ fill: none;
570
+ stroke: #444;
571
+ stroke-miterlimit: 10;
572
+ stroke-width: 2;
573
+ }
574
+ .ql-snow .ql-fill,
575
+ .ql-snow .ql-stroke.ql-fill {
576
+ fill: #444;
577
+ }
578
+ .ql-snow .ql-empty {
579
+ fill: none;
580
+ }
581
+ .ql-snow .ql-even {
582
+ fill-rule: evenodd;
583
+ }
584
+ .ql-snow .ql-thin,
585
+ .ql-snow .ql-stroke.ql-thin {
586
+ stroke-width: 1;
587
+ }
588
+ .ql-snow .ql-transparent {
589
+ opacity: 0.4;
590
+ }
591
+ .ql-snow .ql-direction svg:last-child {
592
+ display: none;
593
+ }
594
+ .ql-snow .ql-direction.ql-active svg:last-child {
595
+ display: inline;
596
+ }
597
+ .ql-snow .ql-direction.ql-active svg:first-child {
598
+ display: none;
599
+ }
600
+ .ql-snow .ql-editor h1 {
601
+ font-size: 2em;
602
+ }
603
+ .ql-snow .ql-editor h2 {
604
+ font-size: 1.5em;
605
+ }
606
+ .ql-snow .ql-editor h3 {
607
+ font-size: 1.17em;
608
+ }
609
+ .ql-snow .ql-editor h4 {
610
+ font-size: 1em;
611
+ }
612
+ .ql-snow .ql-editor h5 {
613
+ font-size: 0.83em;
614
+ }
615
+ .ql-snow .ql-editor h6 {
616
+ font-size: 0.67em;
617
+ }
618
+ .ql-snow .ql-editor a {
619
+ text-decoration: underline;
620
+ }
621
+ .ql-snow .ql-editor blockquote {
622
+ border-left: 4px solid #ccc;
623
+ margin-bottom: 5px;
624
+ margin-top: 5px;
625
+ padding-left: 16px;
626
+ }
627
+ .ql-snow .ql-editor code,
628
+ .ql-snow .ql-editor pre {
629
+ background-color: #f0f0f0;
630
+ border-radius: 3px;
631
+ }
632
+ .ql-snow .ql-editor pre {
633
+ white-space: pre-wrap;
634
+ margin-bottom: 5px;
635
+ margin-top: 5px;
636
+ padding: 5px 10px;
637
+ }
638
+ .ql-snow .ql-editor code {
639
+ font-size: 85%;
640
+ padding: 2px 4px;
641
+ }
642
+ .ql-snow .ql-editor pre.ql-syntax {
643
+ background-color: #23241f;
644
+ color: #f8f8f2;
645
+ overflow: visible;
646
+ }
647
+ .ql-snow .ql-editor img {
648
+ max-width: 100%;
649
+ }
650
+ .ql-snow .ql-picker {
651
+ color: #444;
652
+ display: inline-block;
653
+ float: left;
654
+ font-size: 14px;
655
+ font-weight: 500;
656
+ height: 24px;
657
+ position: relative;
658
+ vertical-align: middle;
659
+ }
660
+ .ql-snow .ql-picker-label {
661
+ cursor: pointer;
662
+ display: inline-block;
663
+ height: 100%;
664
+ padding-left: 8px;
665
+ padding-right: 2px;
666
+ position: relative;
667
+ width: 100%;
668
+ }
669
+ .ql-snow .ql-picker-label::before {
670
+ display: inline-block;
671
+ line-height: 22px;
672
+ }
673
+ .ql-snow .ql-picker-options {
674
+ background-color: #fff;
675
+ display: none;
676
+ min-width: 100%;
677
+ padding: 4px 8px;
678
+ position: absolute;
679
+ white-space: nowrap;
680
+ }
681
+ .ql-snow .ql-picker-options .ql-picker-item {
682
+ cursor: pointer;
683
+ display: block;
684
+ padding-bottom: 5px;
685
+ padding-top: 5px;
686
+ }
687
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label {
688
+ color: #ccc;
689
+ z-index: 2;
690
+ }
691
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
692
+ fill: #ccc;
693
+ }
694
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
695
+ stroke: #ccc;
696
+ }
697
+ .ql-snow .ql-picker.ql-expanded .ql-picker-options {
698
+ display: block;
699
+ margin-top: -1px;
700
+ top: 100%;
701
+ z-index: 1;
702
+ }
703
+ .ql-snow .ql-color-picker,
704
+ .ql-snow .ql-icon-picker {
705
+ width: 28px;
706
+ }
707
+ .ql-snow .ql-color-picker .ql-picker-label,
708
+ .ql-snow .ql-icon-picker .ql-picker-label {
709
+ padding: 2px 4px;
710
+ }
711
+ .ql-snow .ql-color-picker .ql-picker-label svg,
712
+ .ql-snow .ql-icon-picker .ql-picker-label svg {
713
+ right: 4px;
714
+ }
715
+ .ql-snow .ql-icon-picker .ql-picker-options {
716
+ padding: 4px 0px;
717
+ }
718
+ .ql-snow .ql-icon-picker .ql-picker-item {
719
+ height: 24px;
720
+ width: 24px;
721
+ padding: 2px 4px;
722
+ }
723
+ .ql-snow .ql-color-picker .ql-picker-options {
724
+ padding: 3px 5px;
725
+ width: 152px;
726
+ }
727
+ .ql-snow .ql-color-picker .ql-picker-item {
728
+ border: 1px solid transparent;
729
+ float: left;
730
+ height: 16px;
731
+ margin: 2px;
732
+ padding: 0px;
733
+ width: 16px;
734
+ }
735
+ .ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
736
+ position: absolute;
737
+ margin-top: -9px;
738
+ right: 0;
739
+ top: 50%;
740
+ width: 18px;
741
+ }
742
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
743
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
744
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
745
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
746
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
747
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
748
+ content: attr(data-label);
749
+ }
750
+ .ql-snow .ql-picker.ql-header {
751
+ width: 98px;
752
+ }
753
+ .ql-snow .ql-picker.ql-header .ql-picker-label::before,
754
+ .ql-snow .ql-picker.ql-header .ql-picker-item::before {
755
+ content: "Normal";
756
+ }
757
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
758
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
759
+ content: "Heading 1";
760
+ }
761
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
762
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
763
+ content: "Heading 2";
764
+ }
765
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
766
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
767
+ content: "Heading 3";
768
+ }
769
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
770
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
771
+ content: "Heading 4";
772
+ }
773
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
774
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
775
+ content: "Heading 5";
776
+ }
777
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
778
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
779
+ content: "Heading 6";
780
+ }
781
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
782
+ font-size: 2em;
783
+ }
784
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
785
+ font-size: 1.5em;
786
+ }
787
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
788
+ font-size: 1.17em;
789
+ }
790
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
791
+ font-size: 1em;
792
+ }
793
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
794
+ font-size: 0.83em;
795
+ }
796
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
797
+ font-size: 0.67em;
798
+ }
799
+ .ql-snow .ql-picker.ql-font {
800
+ width: 108px;
801
+ }
802
+ .ql-snow .ql-picker.ql-font .ql-picker-label::before,
803
+ .ql-snow .ql-picker.ql-font .ql-picker-item::before {
804
+ content: "Sans Serif";
805
+ }
806
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,
807
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
808
+ content: "Serif";
809
+ }
810
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]::before,
811
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
812
+ content: "Monospace";
813
+ }
814
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
815
+ font-family:
816
+ Georgia,
817
+ Times New Roman,
818
+ serif;
819
+ }
820
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
821
+ font-family:
822
+ Monaco,
823
+ Courier New,
824
+ monospace;
825
+ }
826
+ .ql-snow .ql-picker.ql-size {
827
+ width: 98px;
828
+ }
829
+ .ql-snow .ql-picker.ql-size .ql-picker-label::before,
830
+ .ql-snow .ql-picker.ql-size .ql-picker-item::before {
831
+ content: "Normal";
832
+ }
833
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,
834
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
835
+ content: "Petita";
836
+ }
837
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,
838
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
839
+ content: "Gran";
840
+ }
841
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before,
842
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
843
+ content: "Enorme";
844
+ }
845
+ // Hide indent button since it appears empty event without active option
846
+ button.ql-indent {
847
+ display: none !important;
848
+ }
849
+
850
+ .ql-undo {
851
+ font-size: 14pt;
852
+ font-weight: 900;
853
+ display: flex !important;
854
+ align-items: center;
855
+ &::after {
856
+ content: "\21BA";
857
+ transform: rotate(-135deg);
858
+ }
859
+ }
860
+ .ql-redo {
861
+ font-size: 14pt;
862
+ font-weight: 900;
863
+ display: flex !important;
864
+ align-items: center;
865
+ &::after {
866
+ content: "\21BB";
867
+ transform: rotate(135deg);
868
+ }
869
+ }
870
+
871
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
872
+ font-size: 10px;
873
+ }
874
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
875
+ font-size: 18px;
876
+ }
877
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
878
+ font-size: 32px;
879
+ }
880
+ .ql-snow .ql-color-picker.ql-background .ql-picker-item {
881
+ background-color: #fff;
882
+ }
883
+ .ql-snow .ql-color-picker.ql-color .ql-picker-item {
884
+ background-color: #000;
885
+ }
886
+ .ql-toolbar.ql-snow {
887
+ border: 1px solid #ccc;
888
+ box-sizing: border-box;
889
+ font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
890
+ padding: 8px;
891
+ }
892
+ .ql-toolbar.ql-snow .ql-formats {
893
+ margin-right: 15px;
894
+ }
895
+ .ql-toolbar.ql-snow .ql-picker-label {
896
+ border: 1px solid transparent;
897
+ }
898
+ .ql-toolbar.ql-snow .ql-picker-options {
899
+ border: 1px solid transparent;
900
+ box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
901
+ }
902
+ .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
903
+ border-color: #ccc;
904
+ }
905
+ .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
906
+ border-color: #ccc;
907
+ }
908
+ .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
909
+ .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
910
+ border-color: #000;
911
+ }
912
+ .ql-toolbar.ql-snow + .ql-container.ql-snow {
913
+ border-top: 0px;
914
+ }
915
+ .ql-snow .ql-tooltip::before {
916
+ content: "Visit URL:";
917
+ line-height: 26px;
918
+ margin-right: 8px;
919
+ }
920
+ .ql-snow .ql-tooltip input[type="text"] {
921
+ display: none;
922
+ border: 1px solid #ccc;
923
+ font-size: 13px;
924
+ height: 26px;
925
+ margin: 0px;
926
+ padding: 3px 5px;
927
+ width: 170px;
928
+ }
929
+ .ql-snow .ql-tooltip a.ql-preview {
930
+ display: inline-block;
931
+ max-width: 200px;
932
+ overflow-x: hidden;
933
+ text-overflow: ellipsis;
934
+ vertical-align: top;
935
+ }
936
+ .ql-snow .ql-tooltip a.ql-action::after {
937
+ border-right: 1px solid #ccc;
938
+ content: "Edit";
939
+ margin-left: 16px;
940
+ padding-right: 8px;
941
+ }
942
+ .ql-snow .ql-tooltip a.ql-remove::before {
943
+ content: "Remove";
944
+ margin-left: 8px;
945
+ }
946
+ .ql-snow .ql-tooltip.ql-editing a.ql-preview,
947
+ .ql-snow .ql-tooltip.ql-editing a.ql-remove {
948
+ display: none;
949
+ }
950
+ .ql-snow .ql-tooltip.ql-editing input[type="text"] {
951
+ display: inline-block;
952
+ }
953
+ .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
954
+ border-right: 0px;
955
+ content: "Save";
956
+ padding-right: 0px;
957
+ }
958
+ .ql-snow .ql-tooltip[data-mode="link"]::before {
959
+ content: "Enter link:";
960
+ }
961
+ .ql-snow .ql-tooltip[data-mode="formula"]::before {
962
+ content: "Enter formula:";
963
+ }
964
+ .ql-snow .ql-tooltip[data-mode="video"]::before {
965
+ content: "Enter video:";
966
+ }
967
+ .ql-snow a {
968
+ color: #06c;
969
+ }
970
+ .ql-container.ql-snow {
971
+ //border: 1px solid #ccc;
972
+ }