@syncfusion/ej2-vue-documenteditor 20.4.54 → 21.1.36
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 +208 -0
- package/README.md +1 -1
- package/dist/ej2-vue-documenteditor.umd.min.js +2 -2
- package/dist/ej2-vue-documenteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es2015.js +240 -282
- package/dist/es6/ej2-vue-documenteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es5.js +261 -313
- package/dist/es6/ej2-vue-documenteditor.es5.js.map +1 -1
- package/dist/global/ej2-vue-documenteditor.min.js +2 -2
- package/package.json +11 -10
- package/src/document-editor/documenteditor.component.d.ts +3 -50
- package/src/document-editor/documenteditor.component.js +168 -197
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -26
- package/src/document-editor-container/documenteditorcontainer.component.js +96 -125
- package/styles/bootstrap-dark.css +167 -58
- package/styles/bootstrap.css +167 -54
- package/styles/bootstrap4.css +185 -65
- package/styles/bootstrap5-dark.css +187 -74
- package/styles/bootstrap5.css +187 -74
- package/styles/document-editor/bootstrap-dark.css +13 -2
- package/styles/document-editor/bootstrap.css +17 -2
- package/styles/document-editor/bootstrap4.css +23 -4
- package/styles/document-editor/bootstrap5-dark.css +32 -17
- package/styles/document-editor/bootstrap5.css +32 -17
- package/styles/document-editor/fabric-dark.css +13 -2
- package/styles/document-editor/fabric.css +17 -2
- package/styles/document-editor/fluent-dark.css +47 -27
- package/styles/document-editor/fluent.css +47 -27
- package/styles/document-editor/highcontrast-light.css +5 -0
- package/styles/document-editor/highcontrast.css +13 -2
- package/styles/document-editor/material-dark.css +13 -2
- package/styles/document-editor/material.css +13 -2
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +2 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +2 -0
- package/styles/document-editor/tailwind-dark.css +29 -17
- package/styles/document-editor/tailwind.css +32 -17
- package/styles/document-editor-container/bootstrap-dark.css +154 -56
- package/styles/document-editor-container/bootstrap.css +150 -52
- package/styles/document-editor-container/bootstrap4.css +162 -61
- package/styles/document-editor-container/bootstrap5-dark.css +155 -57
- package/styles/document-editor-container/bootstrap5.css +155 -57
- package/styles/document-editor-container/fabric-dark.css +154 -56
- package/styles/document-editor-container/fabric.css +154 -56
- package/styles/document-editor-container/fluent-dark.css +159 -64
- package/styles/document-editor-container/fluent.css +159 -64
- package/styles/document-editor-container/highcontrast-light.css +154 -56
- package/styles/document-editor-container/highcontrast.css +154 -56
- package/styles/document-editor-container/material-dark.css +159 -61
- package/styles/document-editor-container/material.css +154 -55
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +2 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +2 -0
- package/styles/document-editor-container/tailwind-dark.css +153 -55
- package/styles/document-editor-container/tailwind.css +153 -55
- package/styles/fabric-dark.css +167 -58
- package/styles/fabric.css +171 -58
- package/styles/fluent-dark.css +206 -91
- package/styles/fluent.css +206 -91
- package/styles/highcontrast-light.css +159 -56
- package/styles/highcontrast.css +167 -58
- package/styles/material-dark.css +172 -63
- package/styles/material.css +167 -57
- package/styles/material3-dark.css +6150 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +6261 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +182 -72
- package/styles/tailwind.css +185 -72
package/styles/tailwind-dark.css
CHANGED
|
@@ -44,6 +44,12 @@
|
|
|
44
44
|
font-family: "e-icons";
|
|
45
45
|
font-size: 13px;
|
|
46
46
|
}
|
|
47
|
+
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
48
|
+
color: #d1d5db;
|
|
49
|
+
content: "\e8bc";
|
|
50
|
+
font-family: "e-icons";
|
|
51
|
+
font-size: 14px;
|
|
52
|
+
}
|
|
47
53
|
.e-documenteditor .e-de-cmt-post::before {
|
|
48
54
|
content: "\e71d";
|
|
49
55
|
font-family: "e-icons";
|
|
@@ -125,40 +131,40 @@
|
|
|
125
131
|
.e-de-table-left-alignment::before {
|
|
126
132
|
color: #d1d5db;
|
|
127
133
|
content: "\e7f6";
|
|
128
|
-
font-size:
|
|
134
|
+
font-size: 48px;
|
|
129
135
|
}
|
|
130
136
|
|
|
131
137
|
.e-de-table-center-alignment::before {
|
|
132
138
|
color: #d1d5db;
|
|
133
139
|
content: "\e7f1";
|
|
134
|
-
font-size:
|
|
140
|
+
font-size: 48px;
|
|
135
141
|
}
|
|
136
142
|
|
|
137
143
|
.e-de-table-right-alignment::before {
|
|
138
144
|
color: #d1d5db;
|
|
139
145
|
content: "\e703";
|
|
140
|
-
font-size:
|
|
146
|
+
font-size: 48px;
|
|
141
147
|
}
|
|
142
148
|
|
|
143
149
|
.e-de-tablecell-top-alignment::before {
|
|
144
150
|
color: #d1d5db;
|
|
145
151
|
content: "\e775";
|
|
146
152
|
font-family: "e-icons";
|
|
147
|
-
font-size:
|
|
153
|
+
font-size: 48px;
|
|
148
154
|
}
|
|
149
155
|
|
|
150
156
|
.e-de-tablecell-center-alignment::before {
|
|
151
157
|
color: #d1d5db;
|
|
152
158
|
content: "\e7e5";
|
|
153
159
|
font-family: "e-icons";
|
|
154
|
-
font-size:
|
|
160
|
+
font-size: 48px;
|
|
155
161
|
}
|
|
156
162
|
|
|
157
163
|
.e-de-tablecell-bottom-alignment::before {
|
|
158
164
|
color: #d1d5db;
|
|
159
165
|
content: "\e7d9";
|
|
160
166
|
font-family: "e-icons";
|
|
161
|
-
font-size:
|
|
167
|
+
font-size: 48px;
|
|
162
168
|
}
|
|
163
169
|
|
|
164
170
|
.e-de-table-border-setting {
|
|
@@ -206,14 +212,14 @@
|
|
|
206
212
|
.e-de-table-border-none-setting::before {
|
|
207
213
|
color: #d1d5db;
|
|
208
214
|
content: "\e7eb";
|
|
209
|
-
font-size:
|
|
215
|
+
font-size: 36px;
|
|
210
216
|
position: absolute;
|
|
211
217
|
}
|
|
212
218
|
|
|
213
219
|
.e-de-table-border-box-setting::before {
|
|
214
220
|
color: #d1d5db;
|
|
215
221
|
content: "\e834";
|
|
216
|
-
font-size:
|
|
222
|
+
font-size: 36px;
|
|
217
223
|
left: 2px;
|
|
218
224
|
position: absolute;
|
|
219
225
|
top: 2px;
|
|
@@ -223,7 +229,7 @@
|
|
|
223
229
|
color: #d1d5db;
|
|
224
230
|
content: "\e7e8";
|
|
225
231
|
font-family: "e-icons";
|
|
226
|
-
font-size:
|
|
232
|
+
font-size: 36px;
|
|
227
233
|
left: 2px;
|
|
228
234
|
position: absolute;
|
|
229
235
|
top: 2px;
|
|
@@ -232,7 +238,7 @@
|
|
|
232
238
|
.e-de-table-border-custom-setting::before {
|
|
233
239
|
color: #d1d5db;
|
|
234
240
|
content: "\e7d5";
|
|
235
|
-
font-size:
|
|
241
|
+
font-size: 36px;
|
|
236
242
|
left: 2px;
|
|
237
243
|
position: absolute;
|
|
238
244
|
top: 2px;
|
|
@@ -241,14 +247,14 @@
|
|
|
241
247
|
.e-de-para-border-none-setting::before {
|
|
242
248
|
color: #d1d5db;
|
|
243
249
|
content: "\e890";
|
|
244
|
-
font-size:
|
|
250
|
+
font-size: 36px;
|
|
245
251
|
position: absolute;
|
|
246
252
|
}
|
|
247
253
|
|
|
248
254
|
.e-de-para-border-box-setting::before {
|
|
249
255
|
color: #d1d5db;
|
|
250
256
|
content: "\e891";
|
|
251
|
-
font-size:
|
|
257
|
+
font-size: 36px;
|
|
252
258
|
left: 2px;
|
|
253
259
|
position: absolute;
|
|
254
260
|
top: 2px;
|
|
@@ -257,7 +263,7 @@
|
|
|
257
263
|
.e-de-para-border-shadow-setting::before {
|
|
258
264
|
color: #d1d5db;
|
|
259
265
|
content: "\e892";
|
|
260
|
-
font-size:
|
|
266
|
+
font-size: 36px;
|
|
261
267
|
left: 2px;
|
|
262
268
|
position: absolute;
|
|
263
269
|
top: 2px;
|
|
@@ -266,7 +272,7 @@
|
|
|
266
272
|
.e-de-para-border-custom-setting::before {
|
|
267
273
|
color: #d1d5db;
|
|
268
274
|
content: "\e88f";
|
|
269
|
-
font-size:
|
|
275
|
+
font-size: 36px;
|
|
270
276
|
left: 2px;
|
|
271
277
|
position: absolute;
|
|
272
278
|
top: 2px;
|
|
@@ -2064,7 +2070,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2064
2070
|
|
|
2065
2071
|
.e-de-restrict-pane,
|
|
2066
2072
|
.e-de-op {
|
|
2067
|
-
background
|
|
2073
|
+
background: #232e3e;
|
|
2068
2074
|
}
|
|
2069
2075
|
|
|
2070
2076
|
.e-de-restrict-pane .e-tab-header .e-toolbar-items,
|
|
@@ -2694,6 +2700,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2694
2700
|
margin-left: 12px;
|
|
2695
2701
|
}
|
|
2696
2702
|
|
|
2703
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2704
|
+
height: 40px !important;
|
|
2705
|
+
width: auto !important;
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2697
2708
|
.e-de-style-bold-button-size {
|
|
2698
2709
|
margin-left: 12px;
|
|
2699
2710
|
}
|
|
@@ -2723,7 +2734,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2723
2734
|
margin-right: 20px;
|
|
2724
2735
|
}
|
|
2725
2736
|
|
|
2726
|
-
.e-de-style-
|
|
2737
|
+
.e-de-style-dlg-name-input {
|
|
2727
2738
|
height: 31px;
|
|
2728
2739
|
}
|
|
2729
2740
|
|
|
@@ -3601,6 +3612,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3601
3612
|
|
|
3602
3613
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3603
3614
|
margin-top: 0px;
|
|
3615
|
+
background: #232e3e;
|
|
3604
3616
|
}
|
|
3605
3617
|
|
|
3606
3618
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -3632,7 +3644,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3632
3644
|
|
|
3633
3645
|
.e-de-cmt-textarea.e-input {
|
|
3634
3646
|
color: #d1d5db;
|
|
3635
|
-
font-size:
|
|
3647
|
+
font-size: 14px;
|
|
3636
3648
|
line-height: normal;
|
|
3637
3649
|
min-height: 30px;
|
|
3638
3650
|
overflow: hidden;
|
|
@@ -4547,6 +4559,21 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4547
4559
|
font-family: "e-icons";
|
|
4548
4560
|
}
|
|
4549
4561
|
|
|
4562
|
+
.e-de-e-paragraph-style-mark::before {
|
|
4563
|
+
content: "\e844";
|
|
4564
|
+
font-family: "e-icons";
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4567
|
+
.e-de-e-character-style-mark::before {
|
|
4568
|
+
content: "\e8bf";
|
|
4569
|
+
font-family: "e-icons";
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
.e-de-e-linked-style-mark::before {
|
|
4573
|
+
content: "\e8c0";
|
|
4574
|
+
font-family: "e-icons";
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4550
4577
|
.e-de-ctnr-columns::before {
|
|
4551
4578
|
content: "\e89d";
|
|
4552
4579
|
font-family: "e-icons";
|
|
@@ -4679,8 +4706,48 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4679
4706
|
height: 100%;
|
|
4680
4707
|
}
|
|
4681
4708
|
|
|
4709
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4710
|
+
box-shadow: none;
|
|
4711
|
+
height: 31px;
|
|
4712
|
+
}
|
|
4713
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4714
|
+
box-shadow: none;
|
|
4715
|
+
}
|
|
4716
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4717
|
+
box-shadow: none;
|
|
4718
|
+
}
|
|
4719
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4720
|
+
box-shadow: none;
|
|
4721
|
+
}
|
|
4722
|
+
|
|
4723
|
+
.e-de-ctnr-group-btn-middle button {
|
|
4724
|
+
border-radius: 0px;
|
|
4725
|
+
}
|
|
4726
|
+
|
|
4727
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
4728
|
+
box-shadow: none;
|
|
4729
|
+
}
|
|
4730
|
+
|
|
4731
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
4732
|
+
.e-de-ctn .e-de-status-bar button {
|
|
4733
|
+
box-shadow: none;
|
|
4734
|
+
height: 31px;
|
|
4735
|
+
}
|
|
4736
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
4737
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
4738
|
+
box-shadow: none;
|
|
4739
|
+
}
|
|
4740
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
4741
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
4742
|
+
box-shadow: none;
|
|
4743
|
+
}
|
|
4744
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
4745
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
4746
|
+
box-shadow: none;
|
|
4747
|
+
}
|
|
4748
|
+
|
|
4682
4749
|
.e-de-statusbar-pageweb {
|
|
4683
|
-
background
|
|
4750
|
+
background: #374151;
|
|
4684
4751
|
border: 0;
|
|
4685
4752
|
box-shadow: none;
|
|
4686
4753
|
float: right;
|
|
@@ -4704,12 +4771,25 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4704
4771
|
font-size: 18px;
|
|
4705
4772
|
}
|
|
4706
4773
|
|
|
4774
|
+
.e-listview .e-list-icon {
|
|
4775
|
+
height: 24px;
|
|
4776
|
+
width: 16px;
|
|
4777
|
+
margin-right: 10px;
|
|
4778
|
+
}
|
|
4779
|
+
|
|
4780
|
+
.e-de-listview-icon {
|
|
4781
|
+
height: auto;
|
|
4782
|
+
width: auto;
|
|
4783
|
+
line-height: 22px;
|
|
4784
|
+
margin-right: 10px;
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4707
4787
|
.e-de-linespacing {
|
|
4708
4788
|
margin-top: 8px;
|
|
4709
4789
|
}
|
|
4710
4790
|
|
|
4711
4791
|
.e-de-statusbar-zoom {
|
|
4712
|
-
background
|
|
4792
|
+
background: #374151;
|
|
4713
4793
|
border: 0;
|
|
4714
4794
|
color: #9ca3af;
|
|
4715
4795
|
float: right;
|
|
@@ -4798,14 +4878,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4798
4878
|
.e-de-statusbar-separator {
|
|
4799
4879
|
border-left: 1px solid #4b5563;
|
|
4800
4880
|
height: 16px;
|
|
4801
|
-
margin-left:
|
|
4881
|
+
margin-left: 7.5px;
|
|
4882
|
+
margin-right: 7.5px;
|
|
4883
|
+
margin-top: 6px;
|
|
4884
|
+
}
|
|
4885
|
+
|
|
4886
|
+
.e-bigger .e-de-statusbar-separator {
|
|
4887
|
+
border-left: 1px solid #4b5563;
|
|
4888
|
+
height: 16px;
|
|
4889
|
+
margin-left: 7.5px;
|
|
4890
|
+
margin-right: 7.5px;
|
|
4802
4891
|
margin-top: 6px;
|
|
4803
4892
|
}
|
|
4804
4893
|
|
|
4805
4894
|
.e-de-statusbar-spellcheck {
|
|
4806
4895
|
border-radius: 2px;
|
|
4807
4896
|
font-weight: 400;
|
|
4808
|
-
margin-left: 7.5px;
|
|
4809
4897
|
}
|
|
4810
4898
|
|
|
4811
4899
|
.e-de-ctn {
|
|
@@ -4818,7 +4906,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4818
4906
|
|
|
4819
4907
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4820
4908
|
border-radius: 2px;
|
|
4821
|
-
margin-left: 7.5px;
|
|
4822
4909
|
}
|
|
4823
4910
|
|
|
4824
4911
|
.e-de-ctnr-toolbar {
|
|
@@ -4843,7 +4930,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4843
4930
|
|
|
4844
4931
|
.e-de-tool-ctnr-properties-pane,
|
|
4845
4932
|
.e-de-ctnr-properties-pane {
|
|
4846
|
-
background
|
|
4933
|
+
background: #232e3e;
|
|
4847
4934
|
border-bottom: 1px solid #4b5563;
|
|
4848
4935
|
border-top: 1px solid #4b5563;
|
|
4849
4936
|
}
|
|
@@ -4991,7 +5078,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4991
5078
|
margin: 0 8px;
|
|
4992
5079
|
}
|
|
4993
5080
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
4994
|
-
margin-left: 8px;
|
|
5081
|
+
margin-left: 8px !important;
|
|
4995
5082
|
margin-right: 8px;
|
|
4996
5083
|
}
|
|
4997
5084
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
|
|
@@ -5007,20 +5094,23 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5007
5094
|
}
|
|
5008
5095
|
|
|
5009
5096
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
5097
|
+
-ms-flex-direction: column;
|
|
5098
|
+
flex-direction: column;
|
|
5099
|
+
height: calc(100% - 10px);
|
|
5010
5100
|
padding: 0;
|
|
5011
|
-
padding-bottom:
|
|
5101
|
+
padding-bottom: 10px;
|
|
5012
5102
|
}
|
|
5013
5103
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
5014
5104
|
padding: 0;
|
|
5015
|
-
padding-bottom:
|
|
5105
|
+
padding-bottom: 10px;
|
|
5016
5106
|
}
|
|
5017
5107
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
5018
5108
|
padding: 0;
|
|
5019
|
-
padding-bottom:
|
|
5109
|
+
padding-bottom: 10px;
|
|
5020
5110
|
}
|
|
5021
5111
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
5022
5112
|
padding: 0;
|
|
5023
|
-
padding-bottom:
|
|
5113
|
+
padding-bottom: 10px;
|
|
5024
5114
|
}
|
|
5025
5115
|
|
|
5026
5116
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
@@ -5049,7 +5139,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5049
5139
|
}
|
|
5050
5140
|
|
|
5051
5141
|
.e-de-ctnr-properties-pane-btn .e-btn {
|
|
5052
|
-
background
|
|
5142
|
+
background: #374151;
|
|
5053
5143
|
border-radius: 0;
|
|
5054
5144
|
box-shadow: none;
|
|
5055
5145
|
color: #22d3ee;
|
|
@@ -5091,6 +5181,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5091
5181
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
5092
5182
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
5093
5183
|
padding: 0 !important;
|
|
5184
|
+
min-height: 16px;
|
|
5094
5185
|
}
|
|
5095
5186
|
|
|
5096
5187
|
.e-de-hdr-ftr-frst-div {
|
|
@@ -5113,6 +5204,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5113
5204
|
}
|
|
5114
5205
|
|
|
5115
5206
|
.e-de-review-pane {
|
|
5207
|
+
background: #232e3e;
|
|
5116
5208
|
border-left: 1px solid #6b7280;
|
|
5117
5209
|
height: 100%;
|
|
5118
5210
|
min-height: 200px;
|
|
@@ -5137,34 +5229,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5137
5229
|
margin-bottom: 16px;
|
|
5138
5230
|
}
|
|
5139
5231
|
|
|
5140
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
5141
|
-
box-shadow: none;
|
|
5142
|
-
height: 31px;
|
|
5143
|
-
}
|
|
5144
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
5145
|
-
box-shadow: none;
|
|
5146
|
-
}
|
|
5147
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
5148
|
-
box-shadow: none;
|
|
5149
|
-
}
|
|
5150
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5151
|
-
box-shadow: none;
|
|
5152
|
-
}
|
|
5153
|
-
|
|
5154
|
-
.e-de-ctnr-group-btn button {
|
|
5155
|
-
box-shadow: none;
|
|
5156
|
-
height: 31px;
|
|
5157
|
-
}
|
|
5158
|
-
.e-de-ctnr-group-btn button:focus {
|
|
5159
|
-
box-shadow: none;
|
|
5160
|
-
}
|
|
5161
|
-
.e-de-ctnr-group-btn button:active {
|
|
5162
|
-
box-shadow: none;
|
|
5163
|
-
}
|
|
5164
|
-
.e-de-ctnr-group-btn button:hover {
|
|
5165
|
-
box-shadow: none;
|
|
5166
|
-
}
|
|
5167
|
-
|
|
5168
5232
|
.e-de-property-div-padding {
|
|
5169
5233
|
border-bottom: 0.5px solid #4b5563;
|
|
5170
5234
|
padding: 12px;
|
|
@@ -5206,7 +5270,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5206
5270
|
}
|
|
5207
5271
|
|
|
5208
5272
|
.e-bigger .e-de-panel-right-width {
|
|
5209
|
-
width:
|
|
5273
|
+
width: 96px;
|
|
5210
5274
|
}
|
|
5211
5275
|
.e-bigger .e-de-char-fmt-btn-left > button,
|
|
5212
5276
|
.e-bigger .e-de-char-fmt-btn-right > button {
|
|
@@ -5298,7 +5362,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5298
5362
|
}
|
|
5299
5363
|
|
|
5300
5364
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
5301
|
-
border-bottom: 1px solid #d1d5db;
|
|
5365
|
+
border-bottom: 1px solid #d1d5db !important;
|
|
5302
5366
|
margin-left: 5px;
|
|
5303
5367
|
width: 100%;
|
|
5304
5368
|
}
|
|
@@ -5444,8 +5508,8 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5444
5508
|
border: 1px solid #4b5563;
|
|
5445
5509
|
color: #9ca3af;
|
|
5446
5510
|
height: 129px;
|
|
5447
|
-
margin-left: 78px;
|
|
5448
5511
|
width: 94px;
|
|
5512
|
+
margin-left: 78px;
|
|
5449
5513
|
}
|
|
5450
5514
|
|
|
5451
5515
|
.e-de-toc-template1.e-de-rtl {
|
|
@@ -5501,7 +5565,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5501
5565
|
}
|
|
5502
5566
|
|
|
5503
5567
|
.e-de-status-bar {
|
|
5504
|
-
background
|
|
5568
|
+
background: #374151;
|
|
5505
5569
|
display: -ms-flexbox;
|
|
5506
5570
|
display: flex;
|
|
5507
5571
|
padding-top: 0;
|
|
@@ -5626,7 +5690,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5626
5690
|
}
|
|
5627
5691
|
|
|
5628
5692
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
5629
|
-
height:
|
|
5693
|
+
height: 36px !important;
|
|
5630
5694
|
}
|
|
5631
5695
|
|
|
5632
5696
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5634,8 +5698,8 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5634
5698
|
}
|
|
5635
5699
|
|
|
5636
5700
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
|
|
5637
|
-
height: 38px;
|
|
5638
5701
|
width: 38px;
|
|
5702
|
+
height: 38px;
|
|
5639
5703
|
}
|
|
5640
5704
|
|
|
5641
5705
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
|
|
@@ -5657,6 +5721,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5657
5721
|
padding: 0;
|
|
5658
5722
|
}
|
|
5659
5723
|
|
|
5724
|
+
.e-rtl .e-listview .e-list-icon {
|
|
5725
|
+
height: 24px;
|
|
5726
|
+
width: 16px;
|
|
5727
|
+
margin-left: 10px;
|
|
5728
|
+
}
|
|
5729
|
+
.e-rtl .e-de-listview-icon {
|
|
5730
|
+
height: auto;
|
|
5731
|
+
width: auto;
|
|
5732
|
+
line-height: 22px;
|
|
5733
|
+
margin-left: 10px;
|
|
5734
|
+
}
|
|
5735
|
+
|
|
5660
5736
|
.e-bigger .de-split-button > div:first-child {
|
|
5661
5737
|
margin-right: 0;
|
|
5662
5738
|
}
|
|
@@ -5775,11 +5851,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5775
5851
|
height: 81px;
|
|
5776
5852
|
}
|
|
5777
5853
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
5778
|
-
height: 25px;
|
|
5779
5854
|
margin: 0 12px;
|
|
5780
5855
|
}
|
|
5781
5856
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
5782
|
-
margin-left: 12px;
|
|
5857
|
+
margin-left: 12px !important;
|
|
5783
5858
|
margin-right: 12px;
|
|
5784
5859
|
}
|
|
5785
5860
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
|
|
@@ -5796,22 +5871,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5796
5871
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
|
|
5797
5872
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
5798
5873
|
padding: 0;
|
|
5799
|
-
padding-bottom:
|
|
5874
|
+
padding-bottom: 10px;
|
|
5800
5875
|
}
|
|
5801
5876
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
|
|
5802
5877
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus {
|
|
5803
5878
|
padding: 0;
|
|
5804
|
-
padding-bottom:
|
|
5879
|
+
padding-bottom: 10px;
|
|
5805
5880
|
}
|
|
5806
5881
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
5807
5882
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
5808
5883
|
padding: 0;
|
|
5809
|
-
padding-bottom:
|
|
5884
|
+
padding-bottom: 10px;
|
|
5810
5885
|
}
|
|
5811
5886
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
|
|
5812
5887
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
5813
5888
|
padding: 0;
|
|
5814
|
-
padding-bottom:
|
|
5889
|
+
padding-bottom: 10px;
|
|
5815
5890
|
}
|
|
5816
5891
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
5817
5892
|
padding: 0 !important;
|
|
@@ -5827,7 +5902,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5827
5902
|
width: 75px;
|
|
5828
5903
|
}
|
|
5829
5904
|
.e-bigger .e-de-ctnr-properties-pane-btn .e-btn {
|
|
5830
|
-
background
|
|
5905
|
+
background: #374151;
|
|
5831
5906
|
border-radius: 0;
|
|
5832
5907
|
box-shadow: none;
|
|
5833
5908
|
min-height: 100%;
|
|
@@ -5878,6 +5953,19 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5878
5953
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5879
5954
|
box-shadow: none;
|
|
5880
5955
|
}
|
|
5956
|
+
.e-bigger .e-de-status-bar button {
|
|
5957
|
+
height: 38px;
|
|
5958
|
+
box-shadow: none;
|
|
5959
|
+
}
|
|
5960
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
5961
|
+
box-shadow: none;
|
|
5962
|
+
}
|
|
5963
|
+
.e-bigger .e-de-status-bar button:active {
|
|
5964
|
+
box-shadow: none;
|
|
5965
|
+
}
|
|
5966
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
5967
|
+
box-shadow: none;
|
|
5968
|
+
}
|
|
5881
5969
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
5882
5970
|
box-shadow: none;
|
|
5883
5971
|
height: 38px;
|
|
@@ -5983,18 +6071,40 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5983
6071
|
margin-left: 10px;
|
|
5984
6072
|
}
|
|
5985
6073
|
.e-bigger .e-de-status-bar {
|
|
5986
|
-
background
|
|
6074
|
+
background: #374151;
|
|
5987
6075
|
display: -ms-flexbox;
|
|
5988
6076
|
display: flex;
|
|
5989
6077
|
padding-top: 6px;
|
|
5990
6078
|
width: 100%;
|
|
5991
6079
|
}
|
|
5992
6080
|
.e-bigger .e-de-statusbar-zoom {
|
|
5993
|
-
background-color: #374151;
|
|
5994
6081
|
border: 0;
|
|
5995
6082
|
color: #9ca3af;
|
|
5996
6083
|
float: right;
|
|
5997
6084
|
height: 34px;
|
|
6085
|
+
background-color: #374151;
|
|
6086
|
+
}
|
|
6087
|
+
.e-bigger .e-listview .e-list-icon {
|
|
6088
|
+
height: 24px;
|
|
6089
|
+
width: 16px;
|
|
6090
|
+
margin-right: 16px;
|
|
6091
|
+
}
|
|
6092
|
+
.e-bigger .e-de-listview-icon {
|
|
6093
|
+
height: auto;
|
|
6094
|
+
width: auto;
|
|
6095
|
+
line-height: 22px;
|
|
6096
|
+
margin-right: 16px;
|
|
6097
|
+
}
|
|
6098
|
+
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
6099
|
+
height: 24px;
|
|
6100
|
+
width: 16px;
|
|
6101
|
+
margin-left: 16px;
|
|
6102
|
+
}
|
|
6103
|
+
.e-bigger .e-rtl .e-de-listview-icon {
|
|
6104
|
+
height: auto;
|
|
6105
|
+
width: auto;
|
|
6106
|
+
line-height: 22px;
|
|
6107
|
+
margin-left: 16px;
|
|
5998
6108
|
}
|
|
5999
6109
|
|
|
6000
6110
|
.e-de-ctn .e-de-bzr-button {
|