@dcloudio/uni-components 0.0.1-nvue3.3030820220125001

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 (43) hide show
  1. package/LICENSE +202 -0
  2. package/index.js +0 -0
  3. package/lib/custom-tab-bar/custom-tab-bar.vue +126 -0
  4. package/lib/navigation-bar/navigation-bar.vue +159 -0
  5. package/lib/page-meta/page-meta.vue +205 -0
  6. package/lib/page-meta-head/page-meta-head.vue +10 -0
  7. package/lib/uni-match-media/uni-match-media.vue +73 -0
  8. package/lib/unicloud-db/i18n/en.json +6 -0
  9. package/lib/unicloud-db/i18n/es.json +6 -0
  10. package/lib/unicloud-db/i18n/fr.json +6 -0
  11. package/lib/unicloud-db/i18n/index.js +12 -0
  12. package/lib/unicloud-db/i18n/zh-Hans.json +6 -0
  13. package/lib/unicloud-db/i18n/zh-Hant.json +6 -0
  14. package/lib/unicloud-db/unicloud-db.vue +626 -0
  15. package/package.json +24 -0
  16. package/style/button.css +264 -0
  17. package/style/canvas.css +14 -0
  18. package/style/checkbox-group.css +7 -0
  19. package/style/checkbox.css +56 -0
  20. package/style/editor.css +393 -0
  21. package/style/form.css +0 -0
  22. package/style/icon.css +9 -0
  23. package/style/image.css +33 -0
  24. package/style/input.css +87 -0
  25. package/style/label.css +3 -0
  26. package/style/movable-area.css +10 -0
  27. package/style/movable-view.css +13 -0
  28. package/style/navigator.css +45 -0
  29. package/style/picker-view-column.css +99 -0
  30. package/style/picker-view.css +14 -0
  31. package/style/progress.css +25 -0
  32. package/style/radio-group.css +6 -0
  33. package/style/radio.css +53 -0
  34. package/style/resize-sensor.css +33 -0
  35. package/style/rich-text.css +0 -0
  36. package/style/scroll-view.css +90 -0
  37. package/style/slider.css +89 -0
  38. package/style/swiper-item.css +13 -0
  39. package/style/swiper.css +85 -0
  40. package/style/switch.css +111 -0
  41. package/style/text.css +8 -0
  42. package/style/textarea.css +79 -0
  43. package/style/view.css +6 -0
@@ -0,0 +1,264 @@
1
+ uni-button {
2
+ position: relative;
3
+ display: block;
4
+ margin-left: auto;
5
+ margin-right: auto;
6
+ padding-left: 14px;
7
+ padding-right: 14px;
8
+ box-sizing: border-box;
9
+ font-size: 18px;
10
+ text-align: center;
11
+ text-decoration: none;
12
+ line-height: 2.55555556;
13
+ border-radius: 5px;
14
+ -webkit-tap-highlight-color: transparent;
15
+ overflow: hidden;
16
+ color: #000000;
17
+ background-color: #f8f8f8;
18
+ cursor: pointer;
19
+ }
20
+
21
+ uni-button[hidden] {
22
+ display: none !important;
23
+ }
24
+
25
+ uni-button:after {
26
+ content: ' ';
27
+ width: 200%;
28
+ height: 200%;
29
+ position: absolute;
30
+ top: 0;
31
+ left: 0;
32
+ border: 1px solid rgba(0, 0, 0, 0.2);
33
+ transform: scale(0.5);
34
+ transform-origin: 0 0;
35
+ box-sizing: border-box;
36
+ border-radius: 10px;
37
+ }
38
+
39
+ uni-button[native] {
40
+ padding-left: 0;
41
+ padding-right: 0;
42
+ }
43
+
44
+ uni-button[native] .uni-button-cover-view-wrapper {
45
+ border: inherit;
46
+ border-color: inherit;
47
+ border-radius: inherit;
48
+ background-color: inherit;
49
+ }
50
+
51
+ uni-button[native] .uni-button-cover-view-inner {
52
+ padding-left: 14px;
53
+ padding-right: 14px;
54
+ }
55
+
56
+ uni-button uni-cover-view {
57
+ line-height: inherit;
58
+ white-space: inherit;
59
+ }
60
+
61
+ uni-button[type='default'] {
62
+ color: #000000;
63
+ background-color: #f8f8f8;
64
+ }
65
+
66
+ uni-button[type='primary'] {
67
+ color: #ffffff;
68
+ background-color: #007aff;
69
+ }
70
+
71
+ uni-button[type='warn'] {
72
+ color: #ffffff;
73
+ background-color: #e64340;
74
+ }
75
+
76
+ uni-button[disabled] {
77
+ color: rgba(255, 255, 255, 0.6);
78
+ cursor: not-allowed;
79
+ }
80
+
81
+ uni-button[disabled][type='default'],
82
+ uni-button[disabled]:not([type]) {
83
+ color: rgba(0, 0, 0, 0.3);
84
+ background-color: #f7f7f7;
85
+ }
86
+
87
+ uni-button[disabled][type='primary'] {
88
+ background-color: rgba(0, 122, 255, 0.6);
89
+ }
90
+
91
+ uni-button[disabled][type='warn'] {
92
+ background-color: #ec8b89;
93
+ }
94
+
95
+ uni-button[type='primary'][plain] {
96
+ color: #007aff;
97
+ border: 1px solid #007aff;
98
+ background-color: transparent;
99
+ }
100
+
101
+ uni-button[type='primary'][plain][disabled] {
102
+ color: rgba(0, 0, 0, 0.2);
103
+ border-color: rgba(0, 0, 0, 0.2);
104
+ }
105
+
106
+ uni-button[type='primary'][plain]:after {
107
+ border-width: 0;
108
+ }
109
+
110
+ uni-button[type='default'][plain] {
111
+ color: #353535;
112
+ border: 1px solid #353535;
113
+ background-color: transparent;
114
+ }
115
+
116
+ uni-button[type='default'][plain][disabled] {
117
+ color: rgba(0, 0, 0, 0.2);
118
+ border-color: rgba(0, 0, 0, 0.2);
119
+ }
120
+
121
+ uni-button[type='default'][plain]:after {
122
+ border-width: 0;
123
+ }
124
+
125
+ uni-button[plain] {
126
+ color: #353535;
127
+ border: 1px solid #353535;
128
+ background-color: transparent;
129
+ }
130
+
131
+ uni-button[plain][disabled] {
132
+ color: rgba(0, 0, 0, 0.2);
133
+ border-color: rgba(0, 0, 0, 0.2);
134
+ }
135
+
136
+ uni-button[plain]:after {
137
+ border-width: 0;
138
+ }
139
+
140
+ uni-button[plain][native] .uni-button-cover-view-inner {
141
+ padding: 0;
142
+ }
143
+
144
+ uni-button[type='warn'][plain] {
145
+ color: #e64340;
146
+ border: 1px solid #e64340;
147
+ background-color: transparent;
148
+ }
149
+
150
+ uni-button[type='warn'][plain][disabled] {
151
+ color: rgba(0, 0, 0, 0.2);
152
+ border-color: rgba(0, 0, 0, 0.2);
153
+ }
154
+
155
+ uni-button[type='warn'][plain]:after {
156
+ border-width: 0;
157
+ }
158
+
159
+ uni-button[size='mini'] {
160
+ display: inline-block;
161
+ line-height: 2.3;
162
+ font-size: 13px;
163
+ padding: 0 1.34em;
164
+ }
165
+
166
+ uni-button[size='mini'][native] {
167
+ padding: 0;
168
+ }
169
+
170
+ uni-button[size='mini'][native] .uni-button-cover-view-inner {
171
+ padding: 0 1.34em;
172
+ }
173
+
174
+ uni-button[loading]:not([disabled]) {
175
+ cursor: progress;
176
+ }
177
+
178
+ uni-button[loading]:before {
179
+ content: ' ';
180
+ display: inline-block;
181
+ width: 18px;
182
+ height: 18px;
183
+ vertical-align: middle;
184
+ animation: uni-loading 1s steps(12, end) infinite;
185
+ background-size: 100%;
186
+ }
187
+
188
+ uni-button[loading][type='primary'] {
189
+ color: rgba(255, 255, 255, 0.6);
190
+ background-color: #0062cc;
191
+ }
192
+
193
+ uni-button[loading][type='primary'][plain] {
194
+ color: #007aff;
195
+ background-color: transparent;
196
+ }
197
+
198
+ uni-button[loading][type='default'] {
199
+ color: rgba(0, 0, 0, 0.6);
200
+ background-color: #dedede;
201
+ }
202
+
203
+ uni-button[loading][type='default'][plain] {
204
+ color: #353535;
205
+ background-color: transparent;
206
+ }
207
+
208
+ uni-button[loading][type='warn'] {
209
+ color: rgba(255, 255, 255, 0.6);
210
+ background-color: #ce3c39;
211
+ }
212
+
213
+ uni-button[loading][type='warn'][plain] {
214
+ color: #e64340;
215
+ background-color: transparent;
216
+ }
217
+
218
+ uni-button[loading][native]:before {
219
+ content: none;
220
+ }
221
+
222
+ .button-hover {
223
+ color: rgba(0, 0, 0, 0.6);
224
+ background-color: #dedede;
225
+ }
226
+
227
+ .button-hover[plain] {
228
+ color: rgba(53, 53, 53, 0.6);
229
+ border-color: rgba(53, 53, 53, 0.6);
230
+ background-color: transparent;
231
+ }
232
+
233
+ .button-hover[type='primary'] {
234
+ color: rgba(255, 255, 255, 0.6);
235
+ background-color: #0062cc;
236
+ }
237
+
238
+ .button-hover[type='primary'][plain] {
239
+ color: rgba(26, 173, 25, 0.6);
240
+ border-color: rgba(26, 173, 25, 0.6);
241
+ background-color: transparent;
242
+ }
243
+
244
+ .button-hover[type='default'] {
245
+ color: rgba(0, 0, 0, 0.6);
246
+ background-color: #dedede;
247
+ }
248
+
249
+ .button-hover[type='default'][plain] {
250
+ color: rgba(53, 53, 53, 0.6);
251
+ border-color: rgba(53, 53, 53, 0.6);
252
+ background-color: transparent;
253
+ }
254
+
255
+ .button-hover[type='warn'] {
256
+ color: rgba(255, 255, 255, 0.6);
257
+ background-color: #ce3c39;
258
+ }
259
+
260
+ .button-hover[type='warn'][plain] {
261
+ color: rgba(230, 67, 64, 0.6);
262
+ border-color: rgba(230, 67, 64, 0.6);
263
+ background-color: transparent;
264
+ }
@@ -0,0 +1,14 @@
1
+ uni-canvas {
2
+ width: 300px;
3
+ height: 150px;
4
+ display: block;
5
+ position: relative;
6
+ }
7
+
8
+ uni-canvas > .uni-canvas-canvas {
9
+ position: absolute;
10
+ top: 0;
11
+ left: 0;
12
+ width: 100%;
13
+ height: 100%;
14
+ }
@@ -0,0 +1,7 @@
1
+ uni-checkbox-group {
2
+ display: block;
3
+ }
4
+
5
+ uni-checkbox-group[hidden] {
6
+ display: none;
7
+ }
@@ -0,0 +1,56 @@
1
+ uni-checkbox {
2
+ -webkit-tap-highlight-color: transparent;
3
+ display: inline-block;
4
+ cursor: pointer;
5
+ }
6
+
7
+ uni-checkbox[hidden] {
8
+ display: none;
9
+ }
10
+
11
+ uni-checkbox[disabled] {
12
+ cursor: not-allowed;
13
+ }
14
+
15
+ .uni-checkbox-wrapper {
16
+ display: inline-flex;
17
+ align-items: center;
18
+ vertical-align: middle;
19
+ }
20
+
21
+ .uni-checkbox-input {
22
+ margin-right: 5px;
23
+ appearance: none;
24
+ outline: 0;
25
+ border: 1px solid #d1d1d1;
26
+ background-color: #ffffff;
27
+ border-radius: 3px;
28
+ width: 22px;
29
+ height: 22px;
30
+ position: relative;
31
+ }
32
+
33
+ .uni-checkbox-input svg {
34
+ color: #007aff;
35
+ font-size: 22px;
36
+ position: absolute;
37
+ top: 50%;
38
+ left: 50%;
39
+ transform: translate(-50%, -48%) scale(0.73);
40
+ }
41
+
42
+ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
43
+ border-color: #007aff;
44
+ }
45
+
46
+ .uni-checkbox-input.uni-checkbox-input-disabled {
47
+ background-color: #e1e1e1;
48
+ }
49
+
50
+ .uni-checkbox-input.uni-checkbox-input-disabled:before {
51
+ color: #adadad;
52
+ }
53
+
54
+ uni-checkbox-group {
55
+ display: block;
56
+ }
@@ -0,0 +1,393 @@
1
+ .ql-container {
2
+ display: block;
3
+ position: relative;
4
+ box-sizing: border-box;
5
+ user-select: text;
6
+ outline: none;
7
+ overflow: hidden;
8
+ width: 100%;
9
+ height: 200px;
10
+ min-height: 200px;
11
+ }
12
+ .ql-container[hidden] {
13
+ display: none;
14
+ }
15
+ .ql-container .ql-editor {
16
+ position: relative;
17
+ font-size: inherit;
18
+ line-height: inherit;
19
+ font-family: inherit;
20
+ min-height: inherit;
21
+ width: 100%;
22
+ height: 100%;
23
+ padding: 0;
24
+ overflow-x: hidden;
25
+ overflow-y: auto;
26
+ -webkit-tap-highlight-color: transparent;
27
+ -webkit-touch-callout: none;
28
+ -webkit-overflow-scrolling: touch;
29
+ }
30
+ .ql-container .ql-editor::-webkit-scrollbar {
31
+ width: 0 !important;
32
+ }
33
+ .ql-container .ql-editor.scroll-disabled {
34
+ overflow: hidden;
35
+ }
36
+ .ql-container .ql-image-overlay {
37
+ display: flex;
38
+ position: absolute;
39
+ box-sizing: border-box;
40
+ border: 1px dashed #ccc;
41
+ justify-content: center;
42
+ align-items: center;
43
+ user-select: none;
44
+ }
45
+ .ql-container .ql-image-overlay .ql-image-size {
46
+ position: absolute;
47
+ padding: 4px 8px;
48
+ text-align: center;
49
+ background-color: #fff;
50
+ color: #888;
51
+ border: 1px solid #ccc;
52
+ box-sizing: border-box;
53
+ opacity: 0.8;
54
+ right: 4px;
55
+ top: 4px;
56
+ font-size: 12px;
57
+ display: inline-block;
58
+ width: auto;
59
+ }
60
+ .ql-container .ql-image-overlay .ql-image-toolbar {
61
+ position: relative;
62
+ text-align: center;
63
+ box-sizing: border-box;
64
+ background: #000;
65
+ border-radius: 5px;
66
+ color: #fff;
67
+ font-size: 0;
68
+ min-height: 24px;
69
+ z-index: 100;
70
+ }
71
+ .ql-container .ql-image-overlay .ql-image-toolbar span {
72
+ display: inline-block;
73
+ cursor: pointer;
74
+ padding: 5px;
75
+ font-size: 12px;
76
+ border-right: 1px solid #fff;
77
+ }
78
+ .ql-container .ql-image-overlay .ql-image-toolbar span:last-child {
79
+ border-right: 0;
80
+ }
81
+ .ql-container .ql-image-overlay .ql-image-toolbar span.triangle-up {
82
+ padding: 0;
83
+ position: absolute;
84
+ top: -12px;
85
+ left: 50%;
86
+ transform: translatex(-50%);
87
+ width: 0;
88
+ height: 0;
89
+ border-width: 6px;
90
+ border-style: solid;
91
+ border-color: transparent transparent black transparent;
92
+ }
93
+ .ql-container .ql-image-overlay .ql-image-handle {
94
+ position: absolute;
95
+ height: 12px;
96
+ width: 12px;
97
+ border-radius: 50%;
98
+ border: 1px solid #ccc;
99
+ box-sizing: border-box;
100
+ background: #fff;
101
+ }
102
+ .ql-container img {
103
+ display: inline-block;
104
+ max-width: 100%;
105
+ }
106
+ .ql-clipboard p {
107
+ margin: 0;
108
+ padding: 0;
109
+ }
110
+ .ql-editor {
111
+ box-sizing: border-box;
112
+ height: 100%;
113
+ outline: none;
114
+ overflow-y: auto;
115
+ tab-size: 4;
116
+ -moz-tab-size: 4;
117
+ text-align: left;
118
+ white-space: pre-wrap;
119
+ word-wrap: break-word;
120
+ }
121
+ .ql-editor > * {
122
+ cursor: text;
123
+ }
124
+ .ql-editor p,
125
+ .ql-editor ol,
126
+ .ql-editor ul,
127
+ .ql-editor pre,
128
+ .ql-editor blockquote,
129
+ .ql-editor h1,
130
+ .ql-editor h2,
131
+ .ql-editor h3,
132
+ .ql-editor h4,
133
+ .ql-editor h5,
134
+ .ql-editor h6 {
135
+ margin: 0;
136
+ padding: 0;
137
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
138
+ }
139
+ .ql-editor ol > li,
140
+ .ql-editor ul > li {
141
+ list-style-type: none;
142
+ }
143
+ .ql-editor ul > li::before {
144
+ content: '\2022';
145
+ }
146
+ .ql-editor ul[data-checked=true],
147
+ .ql-editor ul[data-checked=false] {
148
+ pointer-events: none;
149
+ }
150
+ .ql-editor ul[data-checked=true] > li *,
151
+ .ql-editor ul[data-checked=false] > li * {
152
+ pointer-events: all;
153
+ }
154
+ .ql-editor ul[data-checked=true] > li::before,
155
+ .ql-editor ul[data-checked=false] > li::before {
156
+ color: #777;
157
+ cursor: pointer;
158
+ pointer-events: all;
159
+ }
160
+ .ql-editor ul[data-checked=true] > li::before {
161
+ content: '\2611';
162
+ }
163
+ .ql-editor ul[data-checked=false] > li::before {
164
+ content: '\2610';
165
+ }
166
+ .ql-editor li::before {
167
+ display: inline-block;
168
+ white-space: nowrap;
169
+ width: 2em;
170
+ }
171
+ .ql-editor ol li {
172
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
173
+ counter-increment: list-0;
174
+ }
175
+ .ql-editor ol li:before {
176
+ content: counter(list-0, decimal) '. ';
177
+ }
178
+ .ql-editor ol li.ql-indent-1 {
179
+ counter-increment: list-1;
180
+ }
181
+ .ql-editor ol li.ql-indent-1:before {
182
+ content: counter(list-1, lower-alpha) '. ';
183
+ }
184
+ .ql-editor ol li.ql-indent-1 {
185
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
186
+ }
187
+ .ql-editor ol li.ql-indent-2 {
188
+ counter-increment: list-2;
189
+ }
190
+ .ql-editor ol li.ql-indent-2:before {
191
+ content: counter(list-2, lower-roman) '. ';
192
+ }
193
+ .ql-editor ol li.ql-indent-2 {
194
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
195
+ }
196
+ .ql-editor ol li.ql-indent-3 {
197
+ counter-increment: list-3;
198
+ }
199
+ .ql-editor ol li.ql-indent-3:before {
200
+ content: counter(list-3, decimal) '. ';
201
+ }
202
+ .ql-editor ol li.ql-indent-3 {
203
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
204
+ }
205
+ .ql-editor ol li.ql-indent-4 {
206
+ counter-increment: list-4;
207
+ }
208
+ .ql-editor ol li.ql-indent-4:before {
209
+ content: counter(list-4, lower-alpha) '. ';
210
+ }
211
+ .ql-editor ol li.ql-indent-4 {
212
+ counter-reset: list-5 list-6 list-7 list-8 list-9;
213
+ }
214
+ .ql-editor ol li.ql-indent-5 {
215
+ counter-increment: list-5;
216
+ }
217
+ .ql-editor ol li.ql-indent-5:before {
218
+ content: counter(list-5, lower-roman) '. ';
219
+ }
220
+ .ql-editor ol li.ql-indent-5 {
221
+ counter-reset: list-6 list-7 list-8 list-9;
222
+ }
223
+ .ql-editor ol li.ql-indent-6 {
224
+ counter-increment: list-6;
225
+ }
226
+ .ql-editor ol li.ql-indent-6:before {
227
+ content: counter(list-6, decimal) '. ';
228
+ }
229
+ .ql-editor ol li.ql-indent-6 {
230
+ counter-reset: list-7 list-8 list-9;
231
+ }
232
+ .ql-editor ol li.ql-indent-7 {
233
+ counter-increment: list-7;
234
+ }
235
+ .ql-editor ol li.ql-indent-7:before {
236
+ content: counter(list-7, lower-alpha) '. ';
237
+ }
238
+ .ql-editor ol li.ql-indent-7 {
239
+ counter-reset: list-8 list-9;
240
+ }
241
+ .ql-editor ol li.ql-indent-8 {
242
+ counter-increment: list-8;
243
+ }
244
+ .ql-editor ol li.ql-indent-8:before {
245
+ content: counter(list-8, lower-roman) '. ';
246
+ }
247
+ .ql-editor ol li.ql-indent-8 {
248
+ counter-reset: list-9;
249
+ }
250
+ .ql-editor ol li.ql-indent-9 {
251
+ counter-increment: list-9;
252
+ }
253
+ .ql-editor ol li.ql-indent-9:before {
254
+ content: counter(list-9, decimal) '. ';
255
+ }
256
+ .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
257
+ padding-left: 2em;
258
+ }
259
+ .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
260
+ padding-left: 2em;
261
+ }
262
+ .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
263
+ padding-right: 2em;
264
+ }
265
+ .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
266
+ padding-right: 2em;
267
+ }
268
+ .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
269
+ padding-left: 4em;
270
+ }
271
+ .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
272
+ padding-left: 4em;
273
+ }
274
+ .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
275
+ padding-right: 4em;
276
+ }
277
+ .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
278
+ padding-right: 4em;
279
+ }
280
+ .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
281
+ padding-left: 6em;
282
+ }
283
+ .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
284
+ padding-left: 6em;
285
+ }
286
+ .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
287
+ padding-right: 6em;
288
+ }
289
+ .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
290
+ padding-right: 6em;
291
+ }
292
+ .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
293
+ padding-left: 8em;
294
+ }
295
+ .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
296
+ padding-left: 8em;
297
+ }
298
+ .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
299
+ padding-right: 8em;
300
+ }
301
+ .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
302
+ padding-right: 8em;
303
+ }
304
+ .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
305
+ padding-left: 10em;
306
+ }
307
+ .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
308
+ padding-left: 10em;
309
+ }
310
+ .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
311
+ padding-right: 10em;
312
+ }
313
+ .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
314
+ padding-right: 10em;
315
+ }
316
+ .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
317
+ padding-left: 12em;
318
+ }
319
+ .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
320
+ padding-left: 12em;
321
+ }
322
+ .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
323
+ padding-right: 12em;
324
+ }
325
+ .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
326
+ padding-right: 12em;
327
+ }
328
+ .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
329
+ padding-left: 14em;
330
+ }
331
+ .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
332
+ padding-left: 14em;
333
+ }
334
+ .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
335
+ padding-right: 14em;
336
+ }
337
+ .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
338
+ padding-right: 14em;
339
+ }
340
+ .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
341
+ padding-left: 16em;
342
+ }
343
+ .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
344
+ padding-left: 16em;
345
+ }
346
+ .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
347
+ padding-right: 16em;
348
+ }
349
+ .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
350
+ padding-right: 16em;
351
+ }
352
+ .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
353
+ padding-left: 18em;
354
+ }
355
+ .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
356
+ padding-left: 18em;
357
+ }
358
+ .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
359
+ padding-right: 18em;
360
+ }
361
+ .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
362
+ padding-right: 18em;
363
+ }
364
+ .ql-editor .ql-direction-rtl {
365
+ direction: rtl;
366
+ text-align: inherit;
367
+ }
368
+ .ql-editor .ql-align-center {
369
+ text-align: center;
370
+ }
371
+ .ql-editor .ql-align-justify {
372
+ text-align: justify;
373
+ }
374
+ .ql-editor .ql-align-right {
375
+ text-align: right;
376
+ }
377
+ .ql-editor.ql-blank::before {
378
+ color: rgba(0, 0, 0, 0.6);
379
+ content: attr(data-placeholder);
380
+ font-style: italic;
381
+ pointer-events: none;
382
+ position: absolute;
383
+ }
384
+ .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
385
+ pointer-events: none;
386
+ }
387
+ .ql-clipboard {
388
+ left: -100000px;
389
+ height: 1px;
390
+ overflow-y: hidden;
391
+ position: absolute;
392
+ top: 50%;
393
+ }