@syncfusion/ej2-vue-documenteditor 20.1.47 → 20.1.48
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.
- package/CHANGELOG.md +263 -0
- package/dist/ej2-vue-documenteditor.umd.min.js +2 -2
- package/dist/global/ej2-vue-documenteditor.min.js +2 -2
- package/package.json +14 -8
- package/styles/bootstrap-dark.css +151 -218
- package/styles/bootstrap.css +151 -218
- package/styles/bootstrap4.css +157 -224
- package/styles/bootstrap5-dark.css +172 -253
- package/styles/bootstrap5.css +172 -253
- package/styles/document-editor/bootstrap-dark.css +50 -192
- package/styles/document-editor/bootstrap.css +50 -192
- package/styles/document-editor/bootstrap4.css +52 -194
- package/styles/document-editor/bootstrap5-dark.css +61 -207
- package/styles/document-editor/bootstrap5.css +61 -207
- package/styles/document-editor/fabric-dark.css +51 -193
- package/styles/document-editor/fabric.css +51 -193
- package/styles/document-editor/highcontrast-light.css +9 -5
- package/styles/document-editor/highcontrast.css +51 -193
- package/styles/document-editor/material-dark.css +51 -193
- package/styles/document-editor/material.css +51 -193
- package/styles/document-editor/tailwind-dark.css +261 -319
- package/styles/document-editor/tailwind.css +261 -319
- package/styles/document-editor-container/bootstrap-dark.css +101 -26
- package/styles/document-editor-container/bootstrap.css +101 -26
- package/styles/document-editor-container/bootstrap4.css +105 -30
- package/styles/document-editor-container/bootstrap5-dark.css +111 -46
- package/styles/document-editor-container/bootstrap5.css +111 -46
- package/styles/document-editor-container/fabric-dark.css +101 -26
- package/styles/document-editor-container/fabric.css +101 -26
- package/styles/document-editor-container/highcontrast-light.css +104 -29
- package/styles/document-editor-container/highcontrast.css +101 -26
- package/styles/document-editor-container/material-dark.css +101 -26
- package/styles/document-editor-container/material.css +101 -26
- package/styles/document-editor-container/tailwind-dark.css +271 -134
- package/styles/document-editor-container/tailwind.css +271 -134
- package/styles/fabric-dark.css +152 -219
- package/styles/fabric.css +152 -219
- package/styles/highcontrast-light.css +110 -31
- package/styles/highcontrast.css +152 -219
- package/styles/material-dark.css +152 -219
- package/styles/material.css +152 -219
- package/styles/tailwind-dark.css +532 -453
- package/styles/tailwind.css +532 -453
- package/styles/document-editor/fluent-dark.css +0 -3782
- package/styles/document-editor/fluent-dark.scss +0 -1
- package/styles/document-editor/fluent.css +0 -3782
- package/styles/document-editor/fluent.scss +0 -1
- package/styles/document-editor-container/fluent-dark.css +0 -1996
- package/styles/document-editor-container/fluent-dark.scss +0 -1
- package/styles/document-editor-container/fluent.css +0 -1996
- package/styles/document-editor-container/fluent.scss +0 -1
- package/styles/fluent-dark.css +0 -5779
- package/styles/fluent-dark.scss +0 -2
- package/styles/fluent.css +0 -5779
- package/styles/fluent.scss +0 -2
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
2
|
.e-documenteditor .e-close::before {
|
|
3
3
|
color: #6b7280;
|
|
4
|
-
content: '\
|
|
4
|
+
content: '\e771';
|
|
5
5
|
font-family: 'e-icons';
|
|
6
6
|
font-size: 14px;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.e-documenteditor .e-de-op-search-icon::before {
|
|
10
|
-
content: '\
|
|
10
|
+
content: '\e737';
|
|
11
11
|
font-family: 'e-icons';
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.e-documenteditor .e-arrow-up::before {
|
|
15
|
-
content: '\
|
|
15
|
+
content: '\e768';
|
|
16
16
|
font-family: 'e-icons';
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.e-documenteditor .e-arrow-down::before {
|
|
20
|
-
content: '\
|
|
20
|
+
content: '\e732';
|
|
21
21
|
font-family: 'e-icons';
|
|
22
22
|
}
|
|
23
23
|
|
|
@@ -26,102 +26,112 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.e-documenteditor .e-de-op-close-icon::before {
|
|
29
|
-
content: '\
|
|
29
|
+
content: '\e771';
|
|
30
30
|
font-family: 'e-icons';
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.e-documenteditor .e-de-op-search-close-icon::before {
|
|
34
34
|
color: #6b7280;
|
|
35
|
-
content: '\
|
|
35
|
+
content: '\e771';
|
|
36
36
|
font-family: 'e-icons';
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.e-documenteditor .e-de-new-cmt::before {
|
|
40
|
-
|
|
40
|
+
color: #6b7280;
|
|
41
|
+
content: '\e78a';
|
|
41
42
|
font-family: 'e-icons';
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
.e-documenteditor .e-de-menu-icon::before {
|
|
45
|
-
|
|
46
|
+
color: #6b7280;
|
|
47
|
+
content: '\e75b';
|
|
46
48
|
font-family: 'e-icons';
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
.e-documenteditor .e-de-cmt-mark-icon::before {
|
|
50
52
|
color: #6b7280;
|
|
51
|
-
content: '\
|
|
53
|
+
content: '\e83b';
|
|
52
54
|
font-family: 'e-icons';
|
|
53
55
|
font-size: 13px;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
.e-documenteditor .e-de-cmt-post::before {
|
|
57
|
-
content: '\
|
|
59
|
+
content: '\e863';
|
|
58
60
|
font-family: 'e-icons';
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
.e-documenteditor .e-de-cmt-rply-icon::before {
|
|
62
64
|
color: #6b7280;
|
|
63
|
-
content: '\
|
|
65
|
+
content: '\e815';
|
|
64
66
|
font-family: 'e-icons';
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.e-documenteditor .e-de-cmt-cancel::before {
|
|
68
|
-
|
|
70
|
+
color: #6b7280;
|
|
71
|
+
content: '\e771';
|
|
69
72
|
font-family: 'e-icons';
|
|
70
73
|
}
|
|
71
74
|
|
|
72
75
|
.e-documenteditor .e-de-cmt-delete::before {
|
|
73
|
-
|
|
76
|
+
color: #6b7280;
|
|
77
|
+
content: '\e78d';
|
|
74
78
|
font-family: 'e-icons';
|
|
75
79
|
}
|
|
76
80
|
|
|
77
81
|
.e-documenteditor .e-de-cmt-reopen::before {
|
|
78
|
-
|
|
82
|
+
color: #6b7280;
|
|
83
|
+
content: '\e85c';
|
|
79
84
|
font-family: 'e-icons';
|
|
80
85
|
}
|
|
81
86
|
|
|
82
87
|
.e-documenteditor .e-de-nav-up::before {
|
|
83
|
-
|
|
88
|
+
color: #6b7280;
|
|
89
|
+
content: '\e7a0';
|
|
84
90
|
font-family: 'e-icons';
|
|
85
91
|
}
|
|
86
92
|
|
|
87
93
|
.e-documenteditor .e-de-nav-right-arrow::before {
|
|
88
|
-
|
|
94
|
+
color: #6b7280;
|
|
95
|
+
content: '\e707';
|
|
89
96
|
font-family: 'e-icons';
|
|
90
97
|
}
|
|
91
98
|
|
|
92
99
|
.e-documenteditor .e-de-nav-left-arrow::before {
|
|
93
|
-
|
|
100
|
+
color: #6b7280;
|
|
101
|
+
content: '\e761';
|
|
94
102
|
font-family: 'e-icons';
|
|
95
103
|
}
|
|
96
104
|
|
|
97
105
|
.e-documenteditor .e-de-save-icon::before {
|
|
98
|
-
|
|
106
|
+
color: #6b7280;
|
|
107
|
+
content: '\e75d';
|
|
99
108
|
font-family: 'e-icons';
|
|
100
109
|
}
|
|
101
110
|
|
|
102
111
|
.e-documenteditor .e-de-cancel-icon::before {
|
|
103
|
-
|
|
112
|
+
color: #6b7280;
|
|
113
|
+
content: '\e771';
|
|
104
114
|
font-family: 'e-icons';
|
|
105
115
|
}
|
|
106
116
|
|
|
107
117
|
.e-de-ctn-title-print::before {
|
|
108
|
-
content: '\
|
|
118
|
+
content: '\e76c';
|
|
109
119
|
}
|
|
110
120
|
|
|
111
121
|
.e-de-acceptchange::before {
|
|
112
122
|
color: #6b7280;
|
|
113
|
-
content: '\
|
|
123
|
+
content: '\e853';
|
|
114
124
|
font-family: 'e-icons';
|
|
115
125
|
}
|
|
116
126
|
|
|
117
127
|
.e-de-rejectchange::before {
|
|
118
128
|
color: #6b7280;
|
|
119
|
-
content: '\
|
|
129
|
+
content: '\e805';
|
|
120
130
|
font-family: 'e-icons';
|
|
121
131
|
}
|
|
122
132
|
|
|
123
133
|
.e-de-ctn-title-download::before {
|
|
124
|
-
content: '\
|
|
134
|
+
content: '\e794';
|
|
125
135
|
}
|
|
126
136
|
|
|
127
137
|
.e-de-table-properties-alignment:hover {
|
|
@@ -142,39 +152,39 @@
|
|
|
142
152
|
|
|
143
153
|
.e-de-table-left-alignment::before {
|
|
144
154
|
color: #6b7280;
|
|
145
|
-
content: '\
|
|
155
|
+
content: '\e7fe';
|
|
146
156
|
font-size: 46px;
|
|
147
157
|
}
|
|
148
158
|
|
|
149
159
|
.e-de-table-center-alignment::before {
|
|
150
160
|
color: #6b7280;
|
|
151
|
-
content: '\
|
|
161
|
+
content: '\e7f7';
|
|
152
162
|
font-size: 46px;
|
|
153
163
|
}
|
|
154
164
|
|
|
155
165
|
.e-de-table-right-alignment::before {
|
|
156
166
|
color: #6b7280;
|
|
157
|
-
content: '\
|
|
167
|
+
content: '\e7f4';
|
|
158
168
|
font-size: 46px;
|
|
159
169
|
}
|
|
160
170
|
|
|
161
171
|
.e-de-tablecell-top-alignment::before {
|
|
162
172
|
color: #6b7280;
|
|
163
|
-
content: '\
|
|
173
|
+
content: '\e800';
|
|
164
174
|
font-family: 'e-icons';
|
|
165
175
|
font-size: 51px;
|
|
166
176
|
}
|
|
167
177
|
|
|
168
178
|
.e-de-tablecell-center-alignment::before {
|
|
169
179
|
color: #6b7280;
|
|
170
|
-
content: '\
|
|
180
|
+
content: '\e7f6';
|
|
171
181
|
font-family: 'e-icons';
|
|
172
182
|
font-size: 51px;
|
|
173
183
|
}
|
|
174
184
|
|
|
175
185
|
.e-de-tablecell-bottom-alignment::before {
|
|
176
186
|
color: #6b7280;
|
|
177
|
-
content: '\
|
|
187
|
+
content: '\e7f5';
|
|
178
188
|
font-family: 'e-icons';
|
|
179
189
|
font-size: 51px;
|
|
180
190
|
}
|
|
@@ -225,14 +235,14 @@
|
|
|
225
235
|
|
|
226
236
|
.e-de-table-border-none-setting::before {
|
|
227
237
|
color: #6b7280;
|
|
228
|
-
content: '\
|
|
238
|
+
content: '\e7fa';
|
|
229
239
|
font-size: 46px;
|
|
230
240
|
position: absolute;
|
|
231
241
|
}
|
|
232
242
|
|
|
233
243
|
.e-de-table-border-box-setting::before {
|
|
234
244
|
color: #6b7280;
|
|
235
|
-
content: '\
|
|
245
|
+
content: '\e7ff';
|
|
236
246
|
font-size: 42px;
|
|
237
247
|
left: 2px;
|
|
238
248
|
position: absolute;
|
|
@@ -241,7 +251,7 @@
|
|
|
241
251
|
|
|
242
252
|
.e-de-table-border-all-setting::before {
|
|
243
253
|
color: #6b7280;
|
|
244
|
-
content: '\
|
|
254
|
+
content: '\e7fc';
|
|
245
255
|
font-family: 'e-icons';
|
|
246
256
|
font-size: 42px;
|
|
247
257
|
left: 2px;
|
|
@@ -251,7 +261,7 @@
|
|
|
251
261
|
|
|
252
262
|
.e-de-table-border-custom-setting::before {
|
|
253
263
|
color: #6b7280;
|
|
254
|
-
content: '\
|
|
264
|
+
content: '\e7fb';
|
|
255
265
|
font-size: 42px;
|
|
256
266
|
left: 2px;
|
|
257
267
|
position: absolute;
|
|
@@ -260,7 +270,7 @@
|
|
|
260
270
|
|
|
261
271
|
.e-de-table-border-toptop-alignment::before {
|
|
262
272
|
color: #6b7280;
|
|
263
|
-
content: '\
|
|
273
|
+
content: '\e7a7';
|
|
264
274
|
font-family: 'e-icons';
|
|
265
275
|
font-size: 16px;
|
|
266
276
|
left: 4px;
|
|
@@ -270,7 +280,7 @@
|
|
|
270
280
|
|
|
271
281
|
.e-de-table-border-topcenter-alignment::before {
|
|
272
282
|
color: #6b7280;
|
|
273
|
-
content: '\
|
|
283
|
+
content: '\e73b';
|
|
274
284
|
font-size: 16px;
|
|
275
285
|
left: 4px;
|
|
276
286
|
position: absolute;
|
|
@@ -279,7 +289,7 @@
|
|
|
279
289
|
|
|
280
290
|
.e-de-table-border-topbottom-alignment::before {
|
|
281
291
|
color: #6b7280;
|
|
282
|
-
content: '\
|
|
292
|
+
content: '\e791';
|
|
283
293
|
font-size: 16px;
|
|
284
294
|
left: 4px;
|
|
285
295
|
position: absolute;
|
|
@@ -288,7 +298,7 @@
|
|
|
288
298
|
|
|
289
299
|
.e-de-table-border-diagionalup-alignment::before {
|
|
290
300
|
color: #6b7280;
|
|
291
|
-
content: '\
|
|
301
|
+
content: '\e764';
|
|
292
302
|
font-size: 16px;
|
|
293
303
|
left: 4px;
|
|
294
304
|
position: absolute;
|
|
@@ -297,7 +307,7 @@
|
|
|
297
307
|
|
|
298
308
|
.e-de-table-border-diagionaldown-alignment::before {
|
|
299
309
|
color: #6b7280;
|
|
300
|
-
content: '\
|
|
310
|
+
content: '\e7ca';
|
|
301
311
|
font-size: 16px;
|
|
302
312
|
left: 4px;
|
|
303
313
|
position: absolute;
|
|
@@ -306,7 +316,7 @@
|
|
|
306
316
|
|
|
307
317
|
.e-de-table-border-bottomleft-alignment::before {
|
|
308
318
|
color: #6b7280;
|
|
309
|
-
content: '\
|
|
319
|
+
content: '\e784';
|
|
310
320
|
font-size: 16px;
|
|
311
321
|
left: 4px;
|
|
312
322
|
position: absolute;
|
|
@@ -315,7 +325,7 @@
|
|
|
315
325
|
|
|
316
326
|
.e-de-table-border-bottomcenter-alignment::before {
|
|
317
327
|
color: #6b7280;
|
|
318
|
-
content: '\
|
|
328
|
+
content: '\e702';
|
|
319
329
|
font-size: 16px;
|
|
320
330
|
left: 4px;
|
|
321
331
|
position: absolute;
|
|
@@ -324,7 +334,7 @@
|
|
|
324
334
|
|
|
325
335
|
.e-de-table-border-bottomright-alignment::before {
|
|
326
336
|
color: #6b7280;
|
|
327
|
-
content: '\
|
|
337
|
+
content: '\e72e';
|
|
328
338
|
font-size: 16px;
|
|
329
339
|
left: 4px;
|
|
330
340
|
position: absolute;
|
|
@@ -332,346 +342,317 @@
|
|
|
332
342
|
}
|
|
333
343
|
|
|
334
344
|
.e-menu-item .e-de-cmt-add::before {
|
|
335
|
-
|
|
345
|
+
color: #6b7280;
|
|
346
|
+
content: '\e82a';
|
|
336
347
|
}
|
|
337
348
|
|
|
338
349
|
.e-menu-item .e-de-cut::before {
|
|
339
|
-
|
|
350
|
+
color: #6b7280;
|
|
351
|
+
content: '\e763';
|
|
340
352
|
}
|
|
341
353
|
|
|
342
354
|
.e-menu-item .e-de-spellcheck::before {
|
|
343
|
-
|
|
355
|
+
color: #6b7280;
|
|
356
|
+
content: '\e83e';
|
|
344
357
|
}
|
|
345
358
|
|
|
346
359
|
.e-menu-item .e-de-copy::before {
|
|
347
|
-
|
|
360
|
+
color: #6b7280;
|
|
361
|
+
content: '\e7ce';
|
|
348
362
|
}
|
|
349
363
|
|
|
350
364
|
.e-menu-item .e-de-paste::before {
|
|
351
|
-
|
|
365
|
+
color: #6b7280;
|
|
366
|
+
content: '\e75e';
|
|
352
367
|
}
|
|
353
368
|
|
|
354
369
|
.e-menu-item .e-de-continue-numbering::before {
|
|
355
|
-
|
|
370
|
+
color: #6b7280;
|
|
371
|
+
content: '\e7b8';
|
|
356
372
|
}
|
|
357
373
|
|
|
358
374
|
.e-menu-item .e-de-restart-at::before {
|
|
359
|
-
|
|
375
|
+
color: #6b7280;
|
|
376
|
+
content: '\e7df';
|
|
360
377
|
}
|
|
361
378
|
|
|
362
379
|
.e-menu-item .e-de-insertlink::before {
|
|
363
|
-
|
|
380
|
+
color: #6b7280;
|
|
381
|
+
content: '\e74a';
|
|
364
382
|
}
|
|
365
383
|
|
|
366
384
|
.e-menu-item .e-de-open-hyperlink::before {
|
|
367
|
-
|
|
385
|
+
color: #6b7280;
|
|
386
|
+
content: '\e77a';
|
|
368
387
|
}
|
|
369
388
|
|
|
370
389
|
.e-menu-item .e-de-copy-hyperlink::before {
|
|
371
|
-
|
|
390
|
+
color: #6b7280;
|
|
391
|
+
content: '\e786';
|
|
372
392
|
}
|
|
373
393
|
|
|
374
394
|
.e-menu-item .e-de-open-properties::before {
|
|
375
|
-
|
|
395
|
+
color: #6b7280;
|
|
396
|
+
content: '\e743';
|
|
376
397
|
}
|
|
377
398
|
|
|
378
399
|
.e-menu-item .e-de-edit-hyperlink::before {
|
|
379
|
-
|
|
400
|
+
color: #6b7280;
|
|
401
|
+
content: '\e7ad';
|
|
380
402
|
}
|
|
381
403
|
|
|
382
404
|
.e-menu-item .e-de-remove-hyperlink::before {
|
|
383
|
-
|
|
405
|
+
color: #6b7280;
|
|
406
|
+
content: '\e714';
|
|
384
407
|
}
|
|
385
408
|
|
|
386
409
|
.e-menu-item .e-de-fonts::before {
|
|
387
|
-
|
|
410
|
+
color: #6b7280;
|
|
411
|
+
content: '\e766';
|
|
388
412
|
}
|
|
389
413
|
|
|
390
414
|
.e-menu-item .e-de-paragraph::before {
|
|
391
|
-
|
|
415
|
+
color: #6b7280;
|
|
416
|
+
content: '\e7ae';
|
|
392
417
|
}
|
|
393
418
|
|
|
394
419
|
.e-menu-item .e-de-table::before {
|
|
395
|
-
|
|
420
|
+
color: #6b7280;
|
|
421
|
+
content: '\e79f';
|
|
396
422
|
}
|
|
397
423
|
|
|
398
424
|
.e-menu-item .e-de-insertabove::before {
|
|
399
|
-
|
|
425
|
+
color: #6b7280;
|
|
426
|
+
content: '\e7dd';
|
|
400
427
|
}
|
|
401
428
|
|
|
402
429
|
.e-menu-item .e-de-insertbelow::before {
|
|
403
|
-
|
|
430
|
+
color: #6b7280;
|
|
431
|
+
content: '\e757';
|
|
404
432
|
}
|
|
405
433
|
|
|
406
434
|
.e-menu-item .e-de-insertleft::before {
|
|
407
|
-
|
|
435
|
+
color: #6b7280;
|
|
436
|
+
content: '\e7db';
|
|
408
437
|
}
|
|
409
438
|
|
|
410
439
|
.e-menu-item .e-de-insertright::before {
|
|
411
|
-
|
|
440
|
+
color: #6b7280;
|
|
441
|
+
content: '\e710';
|
|
412
442
|
}
|
|
413
443
|
|
|
414
444
|
.e-menu-item .e-de-delete-table::before {
|
|
415
|
-
|
|
445
|
+
color: #6b7280;
|
|
446
|
+
content: '\e703';
|
|
416
447
|
}
|
|
417
448
|
|
|
418
449
|
.e-menu-item .e-de-deleterow::before {
|
|
419
|
-
|
|
450
|
+
color: #6b7280;
|
|
451
|
+
content: '\e75a';
|
|
420
452
|
}
|
|
421
453
|
|
|
422
454
|
.e-menu-item .e-de-deletecolumn::before {
|
|
423
|
-
|
|
455
|
+
color: #6b7280;
|
|
456
|
+
content: '\e721';
|
|
424
457
|
}
|
|
425
458
|
|
|
426
459
|
.e-de-bold::before {
|
|
427
|
-
|
|
460
|
+
color: #6b7280;
|
|
461
|
+
content: '\e79d';
|
|
428
462
|
font-family: 'e-icons';
|
|
429
463
|
}
|
|
430
464
|
|
|
431
465
|
.e-de-italic::before {
|
|
432
|
-
|
|
466
|
+
color: #6b7280;
|
|
467
|
+
content: '\e722';
|
|
433
468
|
font-family: 'e-icons';
|
|
434
469
|
}
|
|
435
470
|
|
|
436
471
|
.e-de-underline::before {
|
|
437
|
-
|
|
472
|
+
color: #6b7280;
|
|
473
|
+
content: '\e7d4';
|
|
438
474
|
font-family: 'e-icons';
|
|
439
475
|
}
|
|
440
476
|
|
|
441
477
|
.e-de-indent::before {
|
|
442
|
-
|
|
478
|
+
color: #6b7280;
|
|
479
|
+
content: '\e735';
|
|
443
480
|
font-family: 'e-icons';
|
|
444
481
|
}
|
|
445
482
|
|
|
446
483
|
.e-de-outdent::before {
|
|
447
|
-
|
|
484
|
+
color: #6b7280;
|
|
485
|
+
content: '\e7ac';
|
|
448
486
|
font-family: 'e-icons';
|
|
449
487
|
}
|
|
450
488
|
|
|
451
489
|
.e-de-align-left::before {
|
|
452
|
-
|
|
490
|
+
color: #6b7280;
|
|
491
|
+
content: '\e7ae';
|
|
453
492
|
font-family: 'e-icons';
|
|
454
493
|
}
|
|
455
494
|
|
|
456
495
|
.e-de-align-center::before {
|
|
457
|
-
|
|
496
|
+
color: #6b7280;
|
|
497
|
+
content: '\e74f';
|
|
458
498
|
font-family: 'e-icons';
|
|
459
499
|
}
|
|
460
500
|
|
|
461
501
|
.e-de-align-right::before {
|
|
462
|
-
|
|
502
|
+
color: #6b7280;
|
|
503
|
+
content: '\e772';
|
|
463
504
|
font-family: 'e-icons';
|
|
464
505
|
}
|
|
465
506
|
|
|
466
507
|
.e-de-justify::before {
|
|
467
|
-
|
|
508
|
+
color: #6b7280;
|
|
509
|
+
content: '\e723';
|
|
468
510
|
font-family: 'e-icons';
|
|
469
511
|
}
|
|
470
512
|
|
|
471
513
|
.e-de-single-spacing::before {
|
|
472
|
-
|
|
514
|
+
color: #6b7280;
|
|
515
|
+
content: '\e7e5';
|
|
473
516
|
font-family: 'e-icons';
|
|
474
517
|
}
|
|
475
518
|
|
|
476
519
|
.e-de-double-spacing::before {
|
|
477
|
-
|
|
520
|
+
color: #6b7280;
|
|
521
|
+
content: '\e7e7';
|
|
478
522
|
font-family: 'e-icons';
|
|
479
523
|
}
|
|
480
524
|
|
|
481
525
|
.e-de-one-point-five-spacing::before {
|
|
482
|
-
|
|
526
|
+
color: #6b7280;
|
|
527
|
+
content: '\e7eb';
|
|
483
528
|
font-family: 'e-icons';
|
|
484
529
|
}
|
|
485
530
|
|
|
486
531
|
.e-de-before-spacing::before {
|
|
487
|
-
|
|
532
|
+
color: #6b7280;
|
|
533
|
+
content: '\e833';
|
|
488
534
|
font-family: 'e-icons';
|
|
489
535
|
}
|
|
490
536
|
|
|
491
537
|
.e-de-after-spacing::before {
|
|
492
|
-
|
|
538
|
+
color: #6b7280;
|
|
539
|
+
content: '\e80f';
|
|
493
540
|
font-family: 'e-icons';
|
|
494
541
|
}
|
|
495
542
|
|
|
496
543
|
.e-de-icon-bullet-list-dot::before {
|
|
497
|
-
|
|
544
|
+
color: #6b7280;
|
|
545
|
+
content: '\e7e8';
|
|
498
546
|
font-family: 'e-icons';
|
|
499
547
|
font-size: 8px;
|
|
500
548
|
line-height: 28px;
|
|
501
549
|
}
|
|
502
550
|
|
|
503
551
|
.e-de-icon-bullet-list-circle::before {
|
|
504
|
-
|
|
552
|
+
color: #6b7280;
|
|
553
|
+
content: '\e803';
|
|
505
554
|
font-family: 'e-icons';
|
|
506
555
|
font-size: 8px;
|
|
507
556
|
line-height: 28px;
|
|
508
557
|
}
|
|
509
558
|
|
|
510
559
|
.e-de-icon-bullet-list-square::before {
|
|
511
|
-
|
|
560
|
+
color: #6b7280;
|
|
561
|
+
content: '\e804';
|
|
512
562
|
font-family: 'e-icons';
|
|
513
563
|
font-size: 8px;
|
|
514
564
|
line-height: 28px;
|
|
515
565
|
}
|
|
516
566
|
|
|
517
567
|
.e-de-icon-bullet-list-tick::before {
|
|
518
|
-
|
|
568
|
+
color: #6b7280;
|
|
569
|
+
content: '\e7ec';
|
|
519
570
|
font-family: 'e-icons';
|
|
520
571
|
font-size: 12px;
|
|
521
572
|
}
|
|
522
573
|
|
|
523
574
|
.e-de-icon-bullet-list-flower::before {
|
|
524
|
-
|
|
575
|
+
color: #6b7280;
|
|
576
|
+
content: '\e7e4';
|
|
525
577
|
font-family: 'e-icons';
|
|
526
578
|
font-size: 12px;
|
|
527
579
|
}
|
|
528
580
|
|
|
529
581
|
.e-de-icon-bullet-list-arrow::before {
|
|
530
|
-
|
|
582
|
+
color: #6b7280;
|
|
583
|
+
content: '\e7e9';
|
|
531
584
|
font-family: 'e-icons';
|
|
532
585
|
font-size: 12px;
|
|
533
586
|
}
|
|
534
587
|
|
|
535
588
|
.e-de-icon-bullet-list-none::before {
|
|
536
|
-
|
|
589
|
+
color: #6b7280;
|
|
590
|
+
content: '\e7e1';
|
|
537
591
|
font-family: 'e-icons';
|
|
538
592
|
font-size: 24px;
|
|
539
593
|
}
|
|
540
594
|
|
|
541
595
|
.e-de-icon-autofit::before {
|
|
542
|
-
|
|
596
|
+
color: #6b7280;
|
|
597
|
+
content: '\e71a';
|
|
543
598
|
font-family: 'e-icons';
|
|
544
599
|
}
|
|
545
600
|
|
|
546
601
|
.e-de-icon-fixed-columnwidth::before {
|
|
547
|
-
|
|
602
|
+
color: #6b7280;
|
|
603
|
+
content: '\e76e';
|
|
548
604
|
font-family: 'e-icons';
|
|
549
605
|
}
|
|
550
606
|
|
|
551
607
|
.e-de-icon-auto-fitwindow::before {
|
|
552
|
-
|
|
608
|
+
color: #6b7280;
|
|
609
|
+
content: '\e773';
|
|
553
610
|
font-family: 'e-icons';
|
|
554
611
|
}
|
|
555
612
|
|
|
556
613
|
.e-item .e-de-paste-text::before {
|
|
557
|
-
|
|
614
|
+
color: #6b7280;
|
|
615
|
+
content: '\e807';
|
|
558
616
|
font-family: 'e-icons';
|
|
559
617
|
}
|
|
560
618
|
|
|
561
619
|
.e-item .e-de-paste-source::before {
|
|
562
|
-
|
|
620
|
+
color: #6b7280;
|
|
621
|
+
content: '\e84f';
|
|
563
622
|
font-family: 'e-icons';
|
|
564
623
|
}
|
|
565
624
|
|
|
566
625
|
.e-item .e-de-paste-merge::before {
|
|
567
|
-
|
|
626
|
+
color: #6b7280;
|
|
627
|
+
content: '\e85d';
|
|
568
628
|
font-family: 'e-icons';
|
|
569
629
|
}
|
|
570
630
|
|
|
571
631
|
.e-btn-icon .e-de-paste::before,
|
|
572
632
|
.e-icon-btn .e-de-paste::before {
|
|
573
|
-
|
|
633
|
+
color: #6b7280;
|
|
634
|
+
content: '\e75e';
|
|
574
635
|
font-family: 'e-icons';
|
|
575
636
|
}
|
|
576
637
|
|
|
577
638
|
.e-item .e-de-paste-column::before {
|
|
578
|
-
content: '\
|
|
639
|
+
content: '\e869';
|
|
579
640
|
}
|
|
580
641
|
|
|
581
642
|
.e-item .e-de-paste-row::before {
|
|
582
|
-
content: '\
|
|
643
|
+
content: '\e866';
|
|
583
644
|
}
|
|
584
645
|
|
|
585
646
|
.e-item .e-de-paste-overwrite-cells::before {
|
|
586
|
-
content: '\
|
|
647
|
+
content: '\e86b';
|
|
587
648
|
}
|
|
588
649
|
|
|
589
650
|
.e-item .e-de-paste-nested-table::before {
|
|
590
|
-
content: '\
|
|
651
|
+
content: '\e864';
|
|
591
652
|
}
|
|
592
653
|
|
|
593
654
|
.e-item .e-de-paste-merge-table::before {
|
|
594
|
-
content: '\
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.e-de-dlg-container {
|
|
598
|
-
padding-bottom: 12px;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
.e-de-dlg-row {
|
|
602
|
-
display: -ms-flexbox;
|
|
603
|
-
display: flex;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.e-de-container-row {
|
|
607
|
-
display: -ms-flexbox;
|
|
608
|
-
display: flex;
|
|
609
|
-
padding-bottom: 12px;
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
.e-de-subcontainer-left {
|
|
613
|
-
padding-right: 6px;
|
|
614
|
-
width: 50%;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
.e-de-subcontainer-right {
|
|
618
|
-
padding-left: 6px;
|
|
619
|
-
width: 50%;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.e-de-dlg-tab-first-child {
|
|
623
|
-
padding-top: 6px;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.e-de-dlg-heading {
|
|
627
|
-
display: block;
|
|
628
|
-
font-size: 14px;
|
|
629
|
-
font-weight: 500;
|
|
630
|
-
margin-bottom: 8px;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.e-rtl .e-de-subcontainer-left {
|
|
634
|
-
padding-left: 6px;
|
|
635
|
-
padding-right: 0;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
.e-rtl .e-de-subcontainer-right {
|
|
639
|
-
padding-left: 0;
|
|
640
|
-
padding-right: 6px;
|
|
641
|
-
width: 50%;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
.e-bigger .e-de-dlg-container {
|
|
645
|
-
padding-bottom: 16px;
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
.e-bigger .e-de-container-row {
|
|
649
|
-
padding-bottom: 16px;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.e-bigger .e-de-subcontainer-left {
|
|
653
|
-
padding-right: 8px;
|
|
654
|
-
width: 50%;
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
.e-bigger .e-de-subcontainer-right {
|
|
658
|
-
padding-left: 8px;
|
|
659
|
-
width: 50%;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
.e-bigger .e-de-dlg-tab-first-child {
|
|
663
|
-
padding-top: 8px;
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
.e-bigger .e-rtl .e-de-subcontainer-left {
|
|
667
|
-
padding-left: 8px;
|
|
668
|
-
padding-right: 0;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
.e-bigger .e-rtl .e-de-subcontainer-right {
|
|
672
|
-
padding-left: 0;
|
|
673
|
-
padding-right: 8px;
|
|
674
|
-
width: 50%;
|
|
655
|
+
content: '\e861';
|
|
675
656
|
}
|
|
676
657
|
|
|
677
658
|
.e-de-blink-cursor {
|
|
@@ -811,6 +792,7 @@
|
|
|
811
792
|
font-weight: 500;
|
|
812
793
|
margin-bottom: 8px;
|
|
813
794
|
color: #6b7280;
|
|
795
|
+
margin-top: 8px;
|
|
814
796
|
}
|
|
815
797
|
|
|
816
798
|
.e-de-ff-dlg-heading-small {
|
|
@@ -844,6 +826,7 @@
|
|
|
844
826
|
.e-de-ff-radio-div {
|
|
845
827
|
display: -ms-inline-flexbox;
|
|
846
828
|
display: inline-flex;
|
|
829
|
+
margin-bottom: 16px;
|
|
847
830
|
margin-right: 16px;
|
|
848
831
|
}
|
|
849
832
|
|
|
@@ -855,7 +838,7 @@
|
|
|
855
838
|
.e-de-ff-radio-scnd-div {
|
|
856
839
|
display: -ms-inline-flexbox;
|
|
857
840
|
display: inline-flex;
|
|
858
|
-
margin-bottom:
|
|
841
|
+
margin-bottom: 4px;
|
|
859
842
|
margin-right: 16px;
|
|
860
843
|
}
|
|
861
844
|
|
|
@@ -1157,6 +1140,14 @@
|
|
|
1157
1140
|
float: left;
|
|
1158
1141
|
}
|
|
1159
1142
|
|
|
1143
|
+
.e-de-dlg-sub-header {
|
|
1144
|
+
display: block;
|
|
1145
|
+
font-size: 12px;
|
|
1146
|
+
font-weight: 500;
|
|
1147
|
+
margin-bottom: 4px;
|
|
1148
|
+
margin-top: 0;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1160
1151
|
.e-de-dlg-footer .e-btn {
|
|
1161
1152
|
margin-left: 10px;
|
|
1162
1153
|
}
|
|
@@ -1269,8 +1260,7 @@
|
|
|
1269
1260
|
}
|
|
1270
1261
|
|
|
1271
1262
|
.e-de-op-more-less {
|
|
1272
|
-
display:
|
|
1273
|
-
display: inline-flex;
|
|
1263
|
+
display: block;
|
|
1274
1264
|
margin-top: 12px;
|
|
1275
1265
|
}
|
|
1276
1266
|
|
|
@@ -1558,7 +1548,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1558
1548
|
}
|
|
1559
1549
|
|
|
1560
1550
|
.e-documenteditor .e-de-op-close-button {
|
|
1561
|
-
left:
|
|
1551
|
+
left: 260px;
|
|
1562
1552
|
position: absolute;
|
|
1563
1553
|
top: 10px;
|
|
1564
1554
|
}
|
|
@@ -1582,6 +1572,11 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1582
1572
|
width: 295px;
|
|
1583
1573
|
}
|
|
1584
1574
|
|
|
1575
|
+
.e-bigger .e-de-rp-sub-div,
|
|
1576
|
+
.e-bigger .e-de-rp-whole-header {
|
|
1577
|
+
padding: 16px;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1585
1580
|
.e-bigger .e-de-rp-stop-div1 {
|
|
1586
1581
|
padding: 12px 16px 12px 16px;
|
|
1587
1582
|
}
|
|
@@ -1590,6 +1585,18 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1590
1585
|
padding: 16px 16px 24px;
|
|
1591
1586
|
}
|
|
1592
1587
|
|
|
1588
|
+
.e-bigger .e-de-rp-stop-div3 {
|
|
1589
|
+
padding: 0 0 16px 16px;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
1593
|
+
margin: 0px 25px;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.e-bigger .e-de-rp-enforce {
|
|
1597
|
+
padding-top: 16px;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1593
1600
|
.e-bigger .e-de-cmt-sub-container,
|
|
1594
1601
|
.e-bigger .e-de-font-dlg-header,
|
|
1595
1602
|
.e-bigger .e-de-font-dlg-header-effects,
|
|
@@ -1726,6 +1733,10 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1726
1733
|
width: 46px !important;
|
|
1727
1734
|
}
|
|
1728
1735
|
|
|
1736
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
1737
|
+
width: auto;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1729
1740
|
.e-bigger .e-de-list-dlg-div.e-de-rtl,
|
|
1730
1741
|
.e-bigger .e-de-list-dlg-subdiv.e-de-rtl {
|
|
1731
1742
|
margin-top: -150px;
|
|
@@ -1790,10 +1801,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1790
1801
|
width: 199px !important;
|
|
1791
1802
|
}
|
|
1792
1803
|
|
|
1804
|
+
.e-bigger .e-de-font-dlg-header-font-color {
|
|
1805
|
+
width: 68px !important;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1793
1808
|
.e-bigger .e-de-table-measure-lbl {
|
|
1794
1809
|
width: 90px !important;
|
|
1795
1810
|
}
|
|
1796
1811
|
|
|
1812
|
+
.e-bigger .e-de-dlg-sub-header,
|
|
1797
1813
|
.e-bigger .e-de-list-ddl-subheader,
|
|
1798
1814
|
.e-bigger .e-de-cell-dia-label-common,
|
|
1799
1815
|
.e-bigger .e-de-table-ppty-options-break {
|
|
@@ -1840,6 +1856,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1840
1856
|
.e-bigger .e-de-insert-table-dlg-input,
|
|
1841
1857
|
.e-bigger .e-de-insert-footnote-dlg-header,
|
|
1842
1858
|
.e-bigger .e-de-hyperlink-dlg-input,
|
|
1859
|
+
.e-bigger .e-de-ff-radio-div,
|
|
1843
1860
|
.e-bigger .e-de-style-nametype-div,
|
|
1844
1861
|
.e-bigger .e-de-rp-format,
|
|
1845
1862
|
.e-bigger .e-de-hdr-ftr-frst-page-div,
|
|
@@ -1863,7 +1880,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1863
1880
|
}
|
|
1864
1881
|
|
|
1865
1882
|
.e-bigger .e-de-font-dlg .e-input-group {
|
|
1866
|
-
width:
|
|
1883
|
+
width: 200px !important;
|
|
1867
1884
|
}
|
|
1868
1885
|
|
|
1869
1886
|
.e-bigger .e-de-list-dlg .e-input-group,
|
|
@@ -1889,7 +1906,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1889
1906
|
}
|
|
1890
1907
|
|
|
1891
1908
|
.e-bigger .e-de-rp-enforce-nav:not(.e-de-rp-nav-lbl) {
|
|
1892
|
-
margin:
|
|
1909
|
+
margin: 16px 0;
|
|
1893
1910
|
}
|
|
1894
1911
|
|
|
1895
1912
|
.e-de-style-font-group-button .e-btn:not(button:last-child),
|
|
@@ -1932,6 +1949,10 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1932
1949
|
font-weight: 500;
|
|
1933
1950
|
}
|
|
1934
1951
|
|
|
1952
|
+
.e-bigger .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
|
|
1953
|
+
margin-bottom: 16px;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1935
1956
|
.e-de-page-setup-dlg-first-page-prop {
|
|
1936
1957
|
margin-bottom: 8px;
|
|
1937
1958
|
}
|
|
@@ -1947,7 +1968,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1947
1968
|
.e-de-font-dlg .e-input-group,
|
|
1948
1969
|
.e-de-list-dlg .e-input-group,
|
|
1949
1970
|
.e-de-list-dlg .e-input {
|
|
1950
|
-
width:
|
|
1971
|
+
width: 194px !important;
|
|
1951
1972
|
}
|
|
1952
1973
|
|
|
1953
1974
|
.e-de-list-ddl-subheaderbottom {
|
|
@@ -1995,6 +2016,10 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1995
2016
|
padding: 0;
|
|
1996
2017
|
}
|
|
1997
2018
|
|
|
2019
|
+
.e-de-enforce .e-de-enforce-dlg-input:last-child {
|
|
2020
|
+
margin-bottom: 0;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
1998
2023
|
.e-de-table-cell-margin-dlg .e-input-group {
|
|
1999
2024
|
width: 188px !important;
|
|
2000
2025
|
}
|
|
@@ -2013,7 +2038,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2013
2038
|
}
|
|
2014
2039
|
|
|
2015
2040
|
.e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
2016
|
-
right:
|
|
2041
|
+
right: 267px;
|
|
2017
2042
|
}
|
|
2018
2043
|
|
|
2019
2044
|
.e-de-table-measure-lbl {
|
|
@@ -2379,15 +2404,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2379
2404
|
}
|
|
2380
2405
|
|
|
2381
2406
|
.e-de-font-dlg {
|
|
2382
|
-
width:
|
|
2407
|
+
width: 400px;
|
|
2383
2408
|
}
|
|
2384
2409
|
|
|
2385
2410
|
.e-de-hyperlink {
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
.e-bigger .e-de-hyperlink {
|
|
2390
|
-
width: 300px;
|
|
2411
|
+
height: auto;
|
|
2412
|
+
width: auto;
|
|
2391
2413
|
}
|
|
2392
2414
|
|
|
2393
2415
|
.e-de-insert-table {
|
|
@@ -2550,12 +2572,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2550
2572
|
|
|
2551
2573
|
.e-button-custom {
|
|
2552
2574
|
height: 32px;
|
|
2553
|
-
|
|
2575
|
+
padding: 0;
|
|
2576
|
+
width: 70px;
|
|
2554
2577
|
}
|
|
2555
2578
|
|
|
2556
2579
|
.e-bigger .e-button-custom {
|
|
2557
2580
|
height: 37px;
|
|
2558
|
-
width:
|
|
2581
|
+
width: 88px;
|
|
2559
2582
|
}
|
|
2560
2583
|
|
|
2561
2584
|
.e-styles-listview,
|
|
@@ -2681,11 +2704,11 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2681
2704
|
}
|
|
2682
2705
|
|
|
2683
2706
|
.e-bigger .e-de-style-bold-button-size {
|
|
2684
|
-
margin-left:
|
|
2707
|
+
margin-left: 6px;
|
|
2685
2708
|
}
|
|
2686
2709
|
|
|
2687
2710
|
.e-de-style-bold-button-size {
|
|
2688
|
-
margin-left:
|
|
2711
|
+
margin-left: 6px;
|
|
2689
2712
|
}
|
|
2690
2713
|
|
|
2691
2714
|
.e-de-style-format-dropdwn .e-btn-icon {
|
|
@@ -2693,15 +2716,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2693
2716
|
}
|
|
2694
2717
|
|
|
2695
2718
|
.e-de-style-icon-button-first-size {
|
|
2696
|
-
margin-left:
|
|
2719
|
+
margin-left: 6px;
|
|
2697
2720
|
}
|
|
2698
2721
|
|
|
2699
2722
|
.e-de-style-icon-button-last-size {
|
|
2700
|
-
margin-right:
|
|
2723
|
+
margin-right: 6px;
|
|
2701
2724
|
}
|
|
2702
2725
|
|
|
2703
2726
|
.e-de-style-font-color-picker {
|
|
2704
|
-
margin-left:
|
|
2727
|
+
margin-left: 8px;
|
|
2705
2728
|
}
|
|
2706
2729
|
|
|
2707
2730
|
.e-style-font-fmaily-right {
|
|
@@ -3123,7 +3146,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3123
3146
|
.e-de-rp-sub-content-div {
|
|
3124
3147
|
line-height: 1.5;
|
|
3125
3148
|
font-size: 12px;
|
|
3126
|
-
margin-bottom: 8px;
|
|
3127
3149
|
}
|
|
3128
3150
|
|
|
3129
3151
|
.e-de-bullet-icons {
|
|
@@ -3178,7 +3200,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3178
3200
|
}
|
|
3179
3201
|
|
|
3180
3202
|
.e-bigger .e-de-font-dlg {
|
|
3181
|
-
width:
|
|
3203
|
+
width: 420px;
|
|
3182
3204
|
}
|
|
3183
3205
|
|
|
3184
3206
|
.e-bigger .e-para-dlg-sub-height {
|
|
@@ -3208,7 +3230,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3208
3230
|
|
|
3209
3231
|
.e-bigger .e-de-rp-header {
|
|
3210
3232
|
font-size: 16px;
|
|
3211
|
-
width: 75%;
|
|
3212
3233
|
}
|
|
3213
3234
|
|
|
3214
3235
|
.e-de-restrict-format {
|
|
@@ -3236,7 +3257,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3236
3257
|
font-weight: 500;
|
|
3237
3258
|
opacity: 0.87;
|
|
3238
3259
|
color: #374151;
|
|
3239
|
-
width: 75%;
|
|
3240
3260
|
}
|
|
3241
3261
|
|
|
3242
3262
|
.e-de-rp-nav-btn,
|
|
@@ -3244,20 +3264,25 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3244
3264
|
opacity: 0.87;
|
|
3245
3265
|
border-radius: 2px;
|
|
3246
3266
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
3267
|
+
height: 36px;
|
|
3268
|
+
margin: 0 12px !important;
|
|
3247
3269
|
}
|
|
3248
3270
|
|
|
3249
3271
|
.e-bigger .e-de-rp-btn-enforce {
|
|
3272
|
+
margin: 0;
|
|
3250
3273
|
padding-left: 10px;
|
|
3251
3274
|
padding-right: 10px;
|
|
3252
3275
|
}
|
|
3253
3276
|
|
|
3254
3277
|
.e-de-rp-nav-btn {
|
|
3255
|
-
|
|
3278
|
+
margin: 0 24px;
|
|
3256
3279
|
}
|
|
3257
3280
|
|
|
3258
3281
|
.e-de-rp-btn-stop-enforce {
|
|
3259
3282
|
border-radius: 2px;
|
|
3260
3283
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
3284
|
+
height: 36px;
|
|
3285
|
+
margin: 0 65px;
|
|
3261
3286
|
}
|
|
3262
3287
|
|
|
3263
3288
|
.e-de-rp-sub-div {
|
|
@@ -3268,7 +3293,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3268
3293
|
.e-de-restrict-pane {
|
|
3269
3294
|
padding-left: 0;
|
|
3270
3295
|
padding-top: 0;
|
|
3271
|
-
padding-right: 0;
|
|
3272
3296
|
}
|
|
3273
3297
|
|
|
3274
3298
|
.e-de-rp-whole-header {
|
|
@@ -3281,14 +3305,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3281
3305
|
border-radius: 2px;
|
|
3282
3306
|
font-size: 12px;
|
|
3283
3307
|
height: 110px;
|
|
3308
|
+
width: 238px;
|
|
3284
3309
|
}
|
|
3285
3310
|
|
|
3286
3311
|
.e-de-rp-enforce {
|
|
3287
|
-
padding: 12px;
|
|
3312
|
+
padding-top: 12px;
|
|
3288
3313
|
}
|
|
3289
3314
|
|
|
3290
3315
|
.e-de-rp-enforce-nav {
|
|
3291
|
-
margin:
|
|
3316
|
+
margin: 12px 0;
|
|
3292
3317
|
}
|
|
3293
3318
|
|
|
3294
3319
|
.e-de-enforce-dlg-title {
|
|
@@ -3299,6 +3324,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3299
3324
|
|
|
3300
3325
|
.e-de-enforce .e-de-enforce-dlg-input {
|
|
3301
3326
|
height: 32px;
|
|
3327
|
+
margin-bottom: 12px;
|
|
3302
3328
|
width: 300px;
|
|
3303
3329
|
}
|
|
3304
3330
|
|
|
@@ -3319,8 +3345,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3319
3345
|
|
|
3320
3346
|
.e-de-user-dlg-list {
|
|
3321
3347
|
margin-bottom: 12px;
|
|
3322
|
-
display: -ms-inline-flexbox;
|
|
3323
|
-
display: inline-flex;
|
|
3324
3348
|
}
|
|
3325
3349
|
|
|
3326
3350
|
.e-de-user-listview {
|
|
@@ -3355,23 +3379,26 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3355
3379
|
padding: 12px 12px 24px;
|
|
3356
3380
|
}
|
|
3357
3381
|
|
|
3382
|
+
.e-de-rp-stop-div3 {
|
|
3383
|
+
padding: 0 0 12px 12px;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3358
3386
|
.e-de-rp-close-icon {
|
|
3359
3387
|
float: right;
|
|
3360
3388
|
position: relative;
|
|
3361
|
-
top: -
|
|
3362
|
-
|
|
3389
|
+
top: -5px;
|
|
3390
|
+
left: 12px;
|
|
3363
3391
|
}
|
|
3364
3392
|
|
|
3365
3393
|
.e-de-restrict-pane {
|
|
3366
3394
|
height: 100%;
|
|
3367
3395
|
overflow: auto;
|
|
3368
|
-
overflow-x: hidden;
|
|
3369
3396
|
width: 280px;
|
|
3370
3397
|
}
|
|
3371
3398
|
|
|
3372
3399
|
.e-de-rp-nav-lbl {
|
|
3373
3400
|
font-size: 13px;
|
|
3374
|
-
margin: 0
|
|
3401
|
+
margin: 0 28px;
|
|
3375
3402
|
}
|
|
3376
3403
|
|
|
3377
3404
|
.e-documenteditor-optionspane {
|
|
@@ -3404,7 +3431,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3404
3431
|
border: 1px solid #e5e7eb;
|
|
3405
3432
|
border-radius: 2px;
|
|
3406
3433
|
margin: 0;
|
|
3407
|
-
padding:
|
|
3434
|
+
padding: 8px;
|
|
3408
3435
|
}
|
|
3409
3436
|
|
|
3410
3437
|
.e-de-cmt-view {
|
|
@@ -3413,7 +3440,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3413
3440
|
|
|
3414
3441
|
.e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3415
3442
|
border-left: 3px solid #4f46e5;
|
|
3416
|
-
padding-left:
|
|
3443
|
+
padding-left: 6px;
|
|
3417
3444
|
}
|
|
3418
3445
|
|
|
3419
3446
|
.e-de-tc-outer {
|
|
@@ -3489,6 +3516,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3489
3516
|
color: #4d841e;
|
|
3490
3517
|
padding: 5px 4px;
|
|
3491
3518
|
text-transform: initial;
|
|
3519
|
+
width: 66px;
|
|
3492
3520
|
}
|
|
3493
3521
|
|
|
3494
3522
|
.e-btn.e-outline.e-de-track-accept-button:hover {
|
|
@@ -3497,6 +3525,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3497
3525
|
color: #fff;
|
|
3498
3526
|
padding: 5px 4px;
|
|
3499
3527
|
text-transform: initial;
|
|
3528
|
+
width: 66px;
|
|
3500
3529
|
}
|
|
3501
3530
|
|
|
3502
3531
|
.e-btn.e-outline.e-de-track-reject-button {
|
|
@@ -3506,6 +3535,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3506
3535
|
padding: 5px 6px;
|
|
3507
3536
|
margin-left: 8px;
|
|
3508
3537
|
text-transform: initial;
|
|
3538
|
+
width: 64px;
|
|
3509
3539
|
}
|
|
3510
3540
|
|
|
3511
3541
|
.e-btn.e-outline.e-de-track-reject-button:hover {
|
|
@@ -3515,6 +3545,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3515
3545
|
padding: 5px 6px;
|
|
3516
3546
|
margin-left: 8px;
|
|
3517
3547
|
text-transform: initial;
|
|
3548
|
+
width: 64px;
|
|
3518
3549
|
}
|
|
3519
3550
|
|
|
3520
3551
|
.e-de-track-chngs-count {
|
|
@@ -3606,7 +3637,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3606
3637
|
|
|
3607
3638
|
.e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3608
3639
|
border-left: 2px solid #4f46e5;
|
|
3609
|
-
padding-left:
|
|
3640
|
+
padding-left: 7px;
|
|
3610
3641
|
}
|
|
3611
3642
|
|
|
3612
3643
|
.e-de-cmt-author {
|
|
@@ -3618,7 +3649,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3618
3649
|
.e-de-cmt-author-name {
|
|
3619
3650
|
font-size: 14px;
|
|
3620
3651
|
font-weight: 500;
|
|
3621
|
-
padding-left:
|
|
3652
|
+
padding-left: 8px;
|
|
3653
|
+
padding-left: 8px;
|
|
3622
3654
|
width: 90%;
|
|
3623
3655
|
}
|
|
3624
3656
|
|
|
@@ -3656,7 +3688,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3656
3688
|
border: none;
|
|
3657
3689
|
border-top: 1px solid #e5e7eb;
|
|
3658
3690
|
border-radius: 0px;
|
|
3659
|
-
margin: 12px
|
|
3691
|
+
margin: 12px 0 0 8px;
|
|
3660
3692
|
padding: 0px;
|
|
3661
3693
|
}
|
|
3662
3694
|
|
|
@@ -3685,11 +3717,9 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3685
3717
|
|
|
3686
3718
|
.e-de-cmt-post-btn.e-btn.e-flat,
|
|
3687
3719
|
.e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3688
|
-
height:
|
|
3720
|
+
height: 32px;
|
|
3689
3721
|
margin-left: 8px;
|
|
3690
3722
|
width: 38px;
|
|
3691
|
-
padding-top: 7px;
|
|
3692
|
-
padding-left: 9px;
|
|
3693
3723
|
}
|
|
3694
3724
|
|
|
3695
3725
|
.e-de-cmt-resolved .e-de-cmt-author-name,
|
|
@@ -3764,7 +3794,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3764
3794
|
}
|
|
3765
3795
|
|
|
3766
3796
|
.e-de-cmt-rply-view {
|
|
3767
|
-
margin-top:
|
|
3797
|
+
margin-top: 12px;
|
|
3768
3798
|
}
|
|
3769
3799
|
|
|
3770
3800
|
.e-de-cmt-resolve-btn {
|
|
@@ -3778,7 +3808,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3778
3808
|
|
|
3779
3809
|
.e-rtl .e-de-rp-close-icon {
|
|
3780
3810
|
float: left;
|
|
3781
|
-
right: 14px;
|
|
3782
3811
|
}
|
|
3783
3812
|
|
|
3784
3813
|
.e-rtl .e-de-cp-option.e-btn.e-icon-btn {
|
|
@@ -3788,15 +3817,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3788
3817
|
.e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3789
3818
|
border-left: 1px solid #e5e7eb;
|
|
3790
3819
|
border-right: 3px solid #4f46e5;
|
|
3791
|
-
padding-left:
|
|
3792
|
-
padding-right:
|
|
3820
|
+
padding-left: 8px;
|
|
3821
|
+
padding-right: 6px;
|
|
3793
3822
|
}
|
|
3794
3823
|
|
|
3795
3824
|
.e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3796
3825
|
border-left: 1px solid #e5e7eb;
|
|
3797
3826
|
border-right: 2px solid #4f46e5;
|
|
3798
|
-
padding-left:
|
|
3799
|
-
padding-right:
|
|
3827
|
+
padding-left: 8px;
|
|
3828
|
+
padding-right: 7px;
|
|
3800
3829
|
}
|
|
3801
3830
|
|
|
3802
3831
|
.e-rtl .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
|
|
@@ -3830,9 +3859,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3830
3859
|
.e-bigger .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3831
3860
|
height: 36px;
|
|
3832
3861
|
margin-left: 12px;
|
|
3833
|
-
width:
|
|
3834
|
-
padding-top: 7px;
|
|
3835
|
-
padding-left: 11px;
|
|
3862
|
+
width: 48px;
|
|
3836
3863
|
}
|
|
3837
3864
|
|
|
3838
3865
|
.e-bigger .e-de-cp-whole-header {
|
|
@@ -3841,18 +3868,9 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3841
3868
|
padding-right: 8px;
|
|
3842
3869
|
}
|
|
3843
3870
|
|
|
3844
|
-
.e-bigger .e-de-rp-close-icon {
|
|
3845
|
-
float: right;
|
|
3846
|
-
position: relative;
|
|
3847
|
-
top: -5px;
|
|
3848
|
-
right: -19px;
|
|
3849
|
-
}
|
|
3850
|
-
|
|
3851
3871
|
.e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3852
3872
|
.e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3853
3873
|
margin-right: 12px;
|
|
3854
|
-
padding-bottom: 7px;
|
|
3855
|
-
padding-right: 11px;
|
|
3856
3874
|
}
|
|
3857
3875
|
|
|
3858
3876
|
.e-de-close-icon.e-btn {
|
|
@@ -3886,86 +3904,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3886
3904
|
top: 0;
|
|
3887
3905
|
}
|
|
3888
3906
|
|
|
3889
|
-
.e-de-rp-mu-btn {
|
|
3890
|
-
margin-top: 3px;
|
|
3891
|
-
}
|
|
3892
|
-
|
|
3893
|
-
.e-rtl .e-de-cmt-author-name {
|
|
3894
|
-
padding-left: 0%;
|
|
3895
|
-
padding-right: 12px;
|
|
3896
|
-
}
|
|
3897
|
-
|
|
3898
|
-
.e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3899
|
-
.e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3900
|
-
padding-bottom: 7px;
|
|
3901
|
-
padding-right: 9px;
|
|
3902
|
-
}
|
|
3903
|
-
|
|
3904
|
-
.e-bigger .e-de-cmt-author-name {
|
|
3905
|
-
padding-left: 16px;
|
|
3906
|
-
}
|
|
3907
|
-
|
|
3908
|
-
.e-bigger .e-de-cmt-rply-view {
|
|
3909
|
-
margin-top: 24px;
|
|
3910
|
-
}
|
|
3911
|
-
|
|
3912
|
-
.e-bigger .e-de-cmt-sub-container {
|
|
3913
|
-
padding: 16px;
|
|
3914
|
-
}
|
|
3915
|
-
|
|
3916
|
-
.e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3917
|
-
padding-left: 14px;
|
|
3918
|
-
}
|
|
3919
|
-
|
|
3920
|
-
.e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3921
|
-
padding-left: 15px;
|
|
3922
|
-
}
|
|
3923
|
-
|
|
3924
|
-
.e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
|
|
3925
|
-
padding: 0%;
|
|
3926
|
-
}
|
|
3927
|
-
|
|
3928
|
-
.e-bigger .e-de-rp-nav-btn {
|
|
3929
|
-
width: auto;
|
|
3930
|
-
}
|
|
3931
|
-
|
|
3932
|
-
.e-bigger .e-de-rp-whole-header {
|
|
3933
|
-
padding: 16px;
|
|
3934
|
-
}
|
|
3935
|
-
|
|
3936
|
-
.e-bigger .e-de-rp-sub-div {
|
|
3937
|
-
border-bottom: 1px solid #e5e7eb;
|
|
3938
|
-
padding: 16px;
|
|
3939
|
-
}
|
|
3940
|
-
|
|
3941
|
-
.e-bigger .e-de-rp-enforce {
|
|
3942
|
-
padding: 16px;
|
|
3943
|
-
}
|
|
3944
|
-
|
|
3945
|
-
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
3946
|
-
width: 300px;
|
|
3947
|
-
}
|
|
3948
|
-
|
|
3949
|
-
.e-bigger .e-rtl .e-de-cmt-author-name {
|
|
3950
|
-
padding-left: 0%;
|
|
3951
|
-
padding-right: 16px;
|
|
3952
|
-
}
|
|
3953
|
-
|
|
3954
|
-
.e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3955
|
-
padding-left: 16px;
|
|
3956
|
-
padding-right: 14px;
|
|
3957
|
-
}
|
|
3958
|
-
|
|
3959
|
-
.e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3960
|
-
padding-left: 16px;
|
|
3961
|
-
padding-right: 15px;
|
|
3962
|
-
}
|
|
3963
|
-
|
|
3964
|
-
.e-bigger .e-rtl .e-de-rp-close-icon {
|
|
3965
|
-
float: left;
|
|
3966
|
-
right: 19px;
|
|
3967
|
-
}
|
|
3968
|
-
|
|
3969
3907
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
3970
3908
|
.e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
|
|
3971
3909
|
font-size: 14px;
|
|
@@ -3981,6 +3919,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3981
3919
|
font-size: 14px;
|
|
3982
3920
|
font-weight: 500;
|
|
3983
3921
|
margin-bottom: 8px;
|
|
3922
|
+
margin-top: 0;
|
|
3984
3923
|
line-height: 22px;
|
|
3985
3924
|
}
|
|
3986
3925
|
|
|
@@ -4025,6 +3964,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4025
3964
|
font-size: 12px;
|
|
4026
3965
|
font-weight: 500;
|
|
4027
3966
|
margin-bottom: 4px;
|
|
3967
|
+
margin-top: 0;
|
|
4028
3968
|
}
|
|
4029
3969
|
|
|
4030
3970
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -4043,7 +3983,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4043
3983
|
display: block;
|
|
4044
3984
|
font-size: 14px;
|
|
4045
3985
|
font-weight: 500;
|
|
4046
|
-
margin-bottom:
|
|
3986
|
+
margin-bottom: 8px;
|
|
3987
|
+
margin-top: 0;
|
|
4047
3988
|
opacity: 87%;
|
|
4048
3989
|
line-height: 22px;
|
|
4049
3990
|
}
|
|
@@ -4089,6 +4030,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4089
4030
|
font-size: 12px;
|
|
4090
4031
|
font-weight: 500;
|
|
4091
4032
|
margin-bottom: 4px;
|
|
4033
|
+
margin-top: 0;
|
|
4092
4034
|
}
|
|
4093
4035
|
|
|
4094
4036
|
.e-de-rtl-btn-div {
|