@syncfusion/ej2-angular-documenteditor 21.2.10 → 22.1.34
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/README.md +45 -137
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
- package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
- package/esm2020/src/index.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/license +10 -0
- package/package.json +18 -8
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +0 -1
- package/src/document-editor/documenteditor.component.d.ts +1 -2
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
- package/src/index.d.ts +1 -1
- package/styles/bootstrap-dark.css +102 -37
- package/styles/bootstrap.css +106 -37
- package/styles/bootstrap4.css +110 -37
- package/styles/bootstrap5-dark.css +102 -37
- package/styles/bootstrap5.css +102 -37
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +560 -0
- package/styles/document-editor/_theme.scss +68 -3
- package/styles/document-editor/bootstrap-dark.css +6 -0
- package/styles/document-editor/bootstrap.css +10 -0
- package/styles/document-editor/bootstrap4.css +14 -0
- package/styles/document-editor/bootstrap5-dark.css +6 -0
- package/styles/document-editor/bootstrap5.css +6 -0
- package/styles/document-editor/fabric-dark.css +6 -0
- package/styles/document-editor/fabric.css +10 -0
- package/styles/document-editor/fluent-dark.css +6 -0
- package/styles/document-editor/fluent.css +6 -0
- package/styles/document-editor/highcontrast.css +6 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +6 -6
- package/styles/document-editor/material-dark.css +6 -0
- package/styles/document-editor/material.css +6 -0
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +5 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +5 -0
- package/styles/document-editor/tailwind-dark.css +6 -0
- package/styles/document-editor/tailwind.css +6 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +1 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
- package/styles/document-editor-container/_material-dark-definition.scss +2 -1
- package/styles/document-editor-container/_material-definition.scss +1 -0
- package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
- package/styles/document-editor-container/_material3-definition.scss +163 -0
- package/styles/document-editor-container/_tailwind-definition.scss +1 -0
- package/styles/document-editor-container/_theme.scss +271 -52
- package/styles/document-editor-container/bootstrap-dark.css +96 -37
- package/styles/document-editor-container/bootstrap.css +96 -37
- package/styles/document-editor-container/bootstrap4.css +96 -37
- package/styles/document-editor-container/bootstrap5-dark.css +96 -37
- package/styles/document-editor-container/bootstrap5.css +96 -37
- package/styles/document-editor-container/fabric-dark.css +96 -37
- package/styles/document-editor-container/fabric.css +96 -37
- package/styles/document-editor-container/fluent-dark.css +96 -37
- package/styles/document-editor-container/fluent.css +96 -37
- package/styles/document-editor-container/highcontrast-light.css +96 -37
- package/styles/document-editor-container/highcontrast.css +96 -37
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
- package/styles/document-editor-container/icons/_fabric.scss +15 -0
- package/styles/document-editor-container/icons/_fluent.scss +15 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
- package/styles/document-editor-container/icons/_material-dark.scss +15 -0
- package/styles/document-editor-container/icons/_material.scss +15 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +29 -15
- package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
- package/styles/document-editor-container/icons/_tailwind.scss +15 -0
- package/styles/document-editor-container/material-dark.css +101 -42
- package/styles/document-editor-container/material.css +97 -37
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +6 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +6 -0
- package/styles/document-editor-container/tailwind-dark.css +95 -36
- package/styles/document-editor-container/tailwind.css +95 -36
- package/styles/fabric-dark.css +102 -37
- package/styles/fabric.css +106 -37
- package/styles/fluent-dark.css +102 -37
- package/styles/fluent.css +102 -37
- package/styles/highcontrast-light.css +96 -37
- package/styles/highcontrast.css +102 -37
- package/styles/material-dark.css +107 -42
- package/styles/material.css +103 -37
- package/styles/material3-dark.css +6094 -0
- package/styles/material3-dark.scss +4 -0
- package/styles/material3.css +6150 -0
- package/styles/material3.scss +4 -0
- package/styles/tailwind-dark.css +101 -36
- package/styles/tailwind.css +101 -36
- package/schematics/collection.json +0 -15
- package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
- package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
- package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
- package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
- package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -3,6 +3,115 @@
|
|
|
3
3
|
.e-de-toolbar {
|
|
4
4
|
height: 100%;
|
|
5
5
|
}
|
|
6
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline){
|
|
7
|
+
box-shadow: none;
|
|
8
|
+
height: $de-group-btn-hgt;
|
|
9
|
+
#{if(&, '&', '*')}:focus {
|
|
10
|
+
box-shadow: none;
|
|
11
|
+
}
|
|
12
|
+
#{if(&, '&', '*')}:active {
|
|
13
|
+
box-shadow: none;
|
|
14
|
+
}
|
|
15
|
+
#{if(&, '&', '*')}:hover {
|
|
16
|
+
box-shadow: none;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.e-de-ctnr-group-btn-middle button {
|
|
20
|
+
border-radius: 0px;
|
|
21
|
+
}
|
|
22
|
+
@if ($skin-name=='Material3') {
|
|
23
|
+
.e-de-review-pane button.e-de-close-icon {
|
|
24
|
+
background: transparent;
|
|
25
|
+
box-shadow: none;
|
|
26
|
+
}
|
|
27
|
+
.e-de-op-more-less > div:last-child label {
|
|
28
|
+
left: 35px;
|
|
29
|
+
}
|
|
30
|
+
.e-bigger .e-de-ctn .e-de-bzr-button {
|
|
31
|
+
line-height: 17px;
|
|
32
|
+
padding-top: 12px;
|
|
33
|
+
}
|
|
34
|
+
.e-de-ctn .e-de-bzr-button {
|
|
35
|
+
box-shadow: none !important;
|
|
36
|
+
}
|
|
37
|
+
.e-bigger .e-de-ctn .e-de-bzr-button {
|
|
38
|
+
box-shadow: none !important;
|
|
39
|
+
}
|
|
40
|
+
.e-de-char-fmt-btn-left button:not(:first-child) {
|
|
41
|
+
border: 1px solid transparent;
|
|
42
|
+
border-left: 1px solid rgba($border-light);
|
|
43
|
+
}
|
|
44
|
+
.e-de-ctnr-group-btn {
|
|
45
|
+
.e-de-prop-font-button {
|
|
46
|
+
position: relative;
|
|
47
|
+
border: 1px solid transparent rgba($border-light);
|
|
48
|
+
border-right-width: 1px;
|
|
49
|
+
}
|
|
50
|
+
.e-de-prop-font-last-button {
|
|
51
|
+
position: relative;
|
|
52
|
+
border: 1px solid transparent rgba($border-light);
|
|
53
|
+
border-left-width: 1px;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.e-de-ctnr-group-btn {
|
|
57
|
+
.e-de-prop-indent-button {
|
|
58
|
+
position: relative;
|
|
59
|
+
border: 1px solid transparent rgba($border-light);
|
|
60
|
+
border-right-width: 1px;
|
|
61
|
+
}
|
|
62
|
+
.e-de-prop-indent-last-button {
|
|
63
|
+
position: relative;
|
|
64
|
+
border: 1px solid transparent rgba($border-light);
|
|
65
|
+
border-left-width: 1px;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
.e-de-grp-btn-ctnr {
|
|
69
|
+
.e-de-ctnr-group-btn-middle {
|
|
70
|
+
> * {
|
|
71
|
+
border-radius: 0px;
|
|
72
|
+
}
|
|
73
|
+
margin-bottom: -1px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
.e-bigger {
|
|
77
|
+
.e-de-grp-btn-ctnr {
|
|
78
|
+
.e-de-ctnr-group-btn-middle {
|
|
79
|
+
> * {
|
|
80
|
+
border-radius: 0px;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
.e-de-ctnr-group-btn-top {
|
|
84
|
+
> * {
|
|
85
|
+
border-bottom-left-radius: 0px;
|
|
86
|
+
border-bottom-right-radius: 0px;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
.e-de-ctnr-group-btn-bottom {
|
|
90
|
+
> * {
|
|
91
|
+
border-top-left-radius: 0px;
|
|
92
|
+
border-top-right-radius: 0px;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
99
|
+
box-shadow: none;
|
|
100
|
+
}
|
|
101
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
102
|
+
.e-de-ctn .e-de-status-bar button {
|
|
103
|
+
box-shadow: none;
|
|
104
|
+
height: $de-group-btn-hgt;
|
|
105
|
+
#{if(&, '&', '*')}:focus {
|
|
106
|
+
box-shadow: none;
|
|
107
|
+
}
|
|
108
|
+
#{if(&, '&', '*')}:active {
|
|
109
|
+
box-shadow: none;
|
|
110
|
+
}
|
|
111
|
+
#{if(&, '&', '*')}:hover {
|
|
112
|
+
box-shadow: none;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
6
115
|
.e-de-statusbar-pageweb {
|
|
7
116
|
background: $de-ctnr-bg-clr;
|
|
8
117
|
border: 0;
|
|
@@ -25,6 +134,14 @@
|
|
|
25
134
|
box-shadow: none;
|
|
26
135
|
}
|
|
27
136
|
}
|
|
137
|
+
|
|
138
|
+
.e-split-btn-wrapper.e-de-prop-splitbutton,
|
|
139
|
+
.e-split-btn-wrapper.e-de-btn-hghlclr,
|
|
140
|
+
.e-btn.de-split-button {
|
|
141
|
+
@if $skin-name=='Material3' {
|
|
142
|
+
box-shadow: none;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
28
145
|
.e-de-statusbar-pageweb .e-de-printlayout,
|
|
29
146
|
.e-de-statusbar-pageweb .e-de-weblayout {
|
|
30
147
|
font-size: $e-de-bzr-btn-font-size;
|
|
@@ -56,7 +173,10 @@
|
|
|
56
173
|
margin-right: $e-de-ctnr-break-listview-margin-right;
|
|
57
174
|
}
|
|
58
175
|
.e-de-listview-icon {
|
|
176
|
+
height: auto;
|
|
177
|
+
width: auto;
|
|
59
178
|
line-height: 22px;
|
|
179
|
+
margin-right: $e-de-ctnr-break-listview-margin-right;
|
|
60
180
|
}
|
|
61
181
|
.e-de-linespacing {
|
|
62
182
|
margin-top: $e-de-ctnr-linespacing-tick-icon;
|
|
@@ -79,6 +199,18 @@
|
|
|
79
199
|
}
|
|
80
200
|
|
|
81
201
|
@if $skin-name=='Material3' {
|
|
202
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group button {
|
|
203
|
+
background: $de-prop-btn-bg-color;
|
|
204
|
+
}
|
|
205
|
+
.e-de-font-clr-picker button, .e-de-prop-font-colorpicker button {
|
|
206
|
+
background: $de-prop-btn-bg-color !important;
|
|
207
|
+
}
|
|
208
|
+
.e-de-style-font-color-picker .e-de-style-icon-button-size button:first-child {
|
|
209
|
+
margin-right: 0px;
|
|
210
|
+
}
|
|
211
|
+
.e-de-ctnr-group-btn .e-btn-group button,
|
|
212
|
+
.e-documenteditorcontainer.e-lib .e-split-btn-wrapper button,
|
|
213
|
+
.e-documenteditorcontainer.e-lib .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
|
|
82
214
|
.e-de-ctnr-segment button,
|
|
83
215
|
.e-de-char-fmt-btn-right button,
|
|
84
216
|
.e-de-border-size-button,
|
|
@@ -86,26 +218,55 @@
|
|
|
86
218
|
.e-de-insert-del-cell button,
|
|
87
219
|
.e-de-align-text button {
|
|
88
220
|
border-radius: 4px;
|
|
89
|
-
|
|
221
|
+
background: $de-prop-btn-bg-color;
|
|
90
222
|
}
|
|
91
223
|
.e-de-char-fmt-btn-right button:not(:first-child),
|
|
92
|
-
.e-de-char-fmt-btn-left button:not(:first-child),
|
|
93
|
-
.e-de-insert-del-cell button:not(:first-child),
|
|
224
|
+
.e-de-char-fmt-btn-left button:not(:first-child),
|
|
94
225
|
.e-de-align-text button:not(:first-child) {
|
|
95
|
-
border-left: 1.7px solid $border-light;
|
|
226
|
+
border-left: 1.7px solid rgba($border-light);
|
|
227
|
+
background: $de-prop-btn-bg-color;
|
|
228
|
+
}
|
|
229
|
+
.e-de-insert-del-cell button:not(:first-child) {
|
|
230
|
+
&:not(.e-rtl) {
|
|
231
|
+
border-left: 1.7px solid rgba($border-light);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
.e-de-ctnr-segment-rtl {
|
|
235
|
+
.e-de-char-fmt-btn-left,
|
|
236
|
+
.e-de-char-fmt-btn-right {
|
|
237
|
+
.e-de-prop-font-last-button,
|
|
238
|
+
.e-de-prop-indent-last-button {
|
|
239
|
+
border-left: 0;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
96
242
|
}
|
|
97
|
-
|
|
98
243
|
.e-rtl {
|
|
99
244
|
.e-de-char-fmt-btn-right button:not(:last-child),
|
|
100
245
|
.e-de-char-fmt-btn-left button:not(:last-child),
|
|
101
246
|
.e-de-insert-del-cell button:not(:last-child),
|
|
102
247
|
.e-de-align-text button:not(:last-child) {
|
|
103
|
-
border-right: 1.7px solid $border-light;
|
|
248
|
+
border-right: 1.7px solid rgba($border-light);
|
|
249
|
+
background: $de-prop-btn-bg-color;
|
|
104
250
|
}
|
|
105
251
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
252
|
+
|
|
253
|
+
.e-de-char-fmt-btn-right.e-rtl button:not(:first-child),
|
|
254
|
+
.e-de-char-fmt-btn-left.e-rtl button:not(:first-child),
|
|
255
|
+
.e-de-insert-del-cell .e-rtl button:not(:first-child),
|
|
256
|
+
.e-de-align-text .e-rtl button:not(:first-child)
|
|
257
|
+
{
|
|
258
|
+
border-right: 1px solid rgba($border-light) !important;
|
|
259
|
+
}
|
|
260
|
+
.e-de-grp-btn-ctnr {
|
|
261
|
+
.e-de-ctnr-group-btn {
|
|
262
|
+
.e-de-prop-font-button {
|
|
263
|
+
background: $de-prop-btn-bg-color;
|
|
264
|
+
border: 1px solid rgba($border-light) !important;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
.e-de-ctnr-group-btn-top {
|
|
268
|
+
margin-bottom: -1px;
|
|
269
|
+
}
|
|
109
270
|
}
|
|
110
271
|
.e-de-font-clr-picker > *,
|
|
111
272
|
.de-split-button>div:first-child {
|
|
@@ -115,7 +276,12 @@
|
|
|
115
276
|
|
|
116
277
|
.e-de-pagenumber-input {
|
|
117
278
|
background: $e-de-pagenumber-bg;
|
|
118
|
-
|
|
279
|
+
@if $skin-name =='Material3'{
|
|
280
|
+
border: none !important;
|
|
281
|
+
}
|
|
282
|
+
@else {
|
|
283
|
+
border: 1px solid $de-panel-border;
|
|
284
|
+
}
|
|
119
285
|
border-radius: $de-pagenumber-text-border-radius;
|
|
120
286
|
color: $de-font-color;
|
|
121
287
|
@if $skin-name=='bootstrap5' or $skin-name=='tailwind' or $skin-name =='FluentUI' {
|
|
@@ -158,7 +324,7 @@
|
|
|
158
324
|
background-color: $de-title-bar-bg-clr;
|
|
159
325
|
border-bottom: none !important;
|
|
160
326
|
color: $de-title-bar-font-clr;
|
|
161
|
-
@if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name ==
|
|
327
|
+
@if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name =='FluentUI' or $skin-name =='Material3' {
|
|
162
328
|
font-size: $e-de-btn-font-size !important;
|
|
163
329
|
button {
|
|
164
330
|
font-size: $e-de-btn-font-size !important;
|
|
@@ -172,7 +338,7 @@
|
|
|
172
338
|
}
|
|
173
339
|
}
|
|
174
340
|
}
|
|
175
|
-
@if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name =='FluentUI' {
|
|
341
|
+
@if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name =='FluentUI' or $skin-name =='Material3' {
|
|
176
342
|
.e-bigger {
|
|
177
343
|
.e-de-ctn-title {
|
|
178
344
|
font-size: $e-de-btn-font-size-big !important;
|
|
@@ -203,13 +369,25 @@
|
|
|
203
369
|
.e-de-statusbar-separator {
|
|
204
370
|
border-left: 1px solid $e-de-statusbar-separator-color;
|
|
205
371
|
height: 16px;
|
|
206
|
-
margin-left: $de-
|
|
372
|
+
margin-left: $de-spellcheck-tlbr-margin-left;
|
|
373
|
+
margin-right: $de-spellcheck-tlbr-margin-left;
|
|
207
374
|
margin-top: $de-status-br-top;
|
|
208
375
|
}
|
|
376
|
+
.e-bigger .e-de-statusbar-separator {
|
|
377
|
+
border-left: 1px solid $e-de-statusbar-separator-color;
|
|
378
|
+
@if $skin-name == 'Material3' {
|
|
379
|
+
height: 20px;
|
|
380
|
+
} @else {
|
|
381
|
+
height: 16px;
|
|
382
|
+
}
|
|
383
|
+
margin-left: $de-spellcheck-tlbr-margin-left;
|
|
384
|
+
margin-right: $de-spellcheck-tlbr-margin-left;
|
|
385
|
+
margin-top: $de-status-br-top-big;
|
|
386
|
+
}
|
|
209
387
|
.e-de-statusbar-spellcheck {
|
|
210
388
|
border-radius: 2px;
|
|
211
389
|
font-weight: 400;
|
|
212
|
-
|
|
390
|
+
|
|
213
391
|
@if $skin-name == 'Material3' {
|
|
214
392
|
background: $de-ctnr-bg-clr;
|
|
215
393
|
}
|
|
@@ -223,12 +401,14 @@
|
|
|
223
401
|
}
|
|
224
402
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
225
403
|
border-radius: 2px;
|
|
226
|
-
margin-left: $de-spellcheck-tlbr-margin-left;
|
|
227
404
|
}
|
|
228
405
|
.e-de-ctnr-toolbar {
|
|
229
406
|
display: flex;
|
|
230
407
|
height: $de-ctnr-tlbr-height;
|
|
231
408
|
width: 100%;
|
|
409
|
+
@if $skin-name == 'Material3' {
|
|
410
|
+
background: $de-toolbar-background-color;
|
|
411
|
+
}
|
|
232
412
|
}
|
|
233
413
|
.e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
|
|
234
414
|
.e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
|
|
@@ -236,9 +416,15 @@
|
|
|
236
416
|
}
|
|
237
417
|
.e-de-pane {
|
|
238
418
|
border-left: 1px solid $de-panel-border;
|
|
419
|
+
@if $skin-name == 'Material3' {
|
|
420
|
+
background: $de-pane-background-color;
|
|
421
|
+
}
|
|
239
422
|
}
|
|
240
423
|
.e-de-pane-rtl {
|
|
241
424
|
border-right: 1px solid $de-panel-border;
|
|
425
|
+
@if $skin-name == 'Material3' {
|
|
426
|
+
background: $de-pane-background-color;
|
|
427
|
+
}
|
|
242
428
|
}
|
|
243
429
|
@if $skin-name=='material' {
|
|
244
430
|
.e-de-pane>div button:not(.e-primary),
|
|
@@ -709,6 +895,11 @@
|
|
|
709
895
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
710
896
|
padding: $de-ctrnr-tblr-item-padding;
|
|
711
897
|
}
|
|
898
|
+
.e-de-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
|
|
899
|
+
@if $skin-name =='Material3' {
|
|
900
|
+
line-height: 0.8;
|
|
901
|
+
}
|
|
902
|
+
}
|
|
712
903
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
713
904
|
display: table;
|
|
714
905
|
font-size: $de-toolbar-font-size;
|
|
@@ -737,6 +928,7 @@
|
|
|
737
928
|
width: $de-text-pane-width;
|
|
738
929
|
}
|
|
739
930
|
.e-de-review-pane {
|
|
931
|
+
background: $de-ctnr-prop-bg-clr;
|
|
740
932
|
border-left: 1px solid $de-op-border-clr;
|
|
741
933
|
height: 100%;
|
|
742
934
|
min-height: 200px;
|
|
@@ -781,32 +973,6 @@
|
|
|
781
973
|
}
|
|
782
974
|
}
|
|
783
975
|
}
|
|
784
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
785
|
-
box-shadow: none;
|
|
786
|
-
height: $de-group-btn-hgt;
|
|
787
|
-
#{if(&, '&', '*')}:focus {
|
|
788
|
-
box-shadow: none;
|
|
789
|
-
}
|
|
790
|
-
#{if(&, '&', '*')}:active {
|
|
791
|
-
box-shadow: none;
|
|
792
|
-
}
|
|
793
|
-
#{if(&, '&', '*')}:hover {
|
|
794
|
-
box-shadow: none;
|
|
795
|
-
}
|
|
796
|
-
}
|
|
797
|
-
.e-de-ctnr-group-btn button {
|
|
798
|
-
box-shadow: none;
|
|
799
|
-
height: $de-group-btn-hgt;
|
|
800
|
-
#{if(&, '&', '*')}:focus {
|
|
801
|
-
box-shadow: none;
|
|
802
|
-
}
|
|
803
|
-
#{if(&, '&', '*')}:active {
|
|
804
|
-
box-shadow: none;
|
|
805
|
-
}
|
|
806
|
-
#{if(&, '&', '*')}:hover {
|
|
807
|
-
box-shadow: none;
|
|
808
|
-
}
|
|
809
|
-
}
|
|
810
976
|
.e-de-property-div-padding {
|
|
811
977
|
@if $skin-name=='Material3' {
|
|
812
978
|
border-bottom: 1px solid $de-pane-separator;
|
|
@@ -941,7 +1107,7 @@
|
|
|
941
1107
|
font-size: 42px;
|
|
942
1108
|
}
|
|
943
1109
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
944
|
-
border-bottom: 1px solid $de-prop-btn-icon-clr;
|
|
1110
|
+
border-bottom: 1px solid $de-prop-btn-icon-clr !important;
|
|
945
1111
|
margin-left: 5px;
|
|
946
1112
|
width: 100%;
|
|
947
1113
|
}
|
|
@@ -1005,11 +1171,11 @@
|
|
|
1005
1171
|
@if $skin-name !='tailwind' {
|
|
1006
1172
|
.e-de-list-container {
|
|
1007
1173
|
@if $skin-name !='Material3' {
|
|
1008
|
-
background: $de-ctnr-bg-clr;
|
|
1009
1174
|
border: 1px solid #ccc;
|
|
1010
1175
|
border-radius: 2px;
|
|
1011
1176
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
1012
1177
|
}
|
|
1178
|
+
background: $de-ctnr-bg-clr;
|
|
1013
1179
|
box-sizing: border-box;
|
|
1014
1180
|
display: inline-block;
|
|
1015
1181
|
line-height: normal;
|
|
@@ -1204,7 +1370,9 @@
|
|
|
1204
1370
|
background: $de-ctnr-bg-clr;
|
|
1205
1371
|
//border-bottom: 1px solid $de-panel-border;
|
|
1206
1372
|
display: flex;
|
|
1207
|
-
|
|
1373
|
+
@if $skin-name !='Material3' {
|
|
1374
|
+
padding-top: $e-de-status-bar-padding-top;
|
|
1375
|
+
}
|
|
1208
1376
|
width: 100%;
|
|
1209
1377
|
}
|
|
1210
1378
|
.e-de-ctnr-pg-no {
|
|
@@ -1239,7 +1407,12 @@
|
|
|
1239
1407
|
width: $de-page-no-width-spellout-big;
|
|
1240
1408
|
}
|
|
1241
1409
|
.e-de-statusbar-zoom-spell {
|
|
1242
|
-
|
|
1410
|
+
@if $skin-name =='Material3' {
|
|
1411
|
+
background: $de-ctnr-bg-clr;
|
|
1412
|
+
}
|
|
1413
|
+
@else {
|
|
1414
|
+
background-color: $de-ctnr-bg-clr;
|
|
1415
|
+
}
|
|
1243
1416
|
border: 0;
|
|
1244
1417
|
color: $de-font-color;
|
|
1245
1418
|
float: right;
|
|
@@ -1247,7 +1420,12 @@
|
|
|
1247
1420
|
margin-left: $de-zoom-tlbr-margin-left;
|
|
1248
1421
|
}
|
|
1249
1422
|
.e-bigger .e-de-statusbar-zoom-spell {
|
|
1250
|
-
|
|
1423
|
+
@if $skin-name =='Material3' {
|
|
1424
|
+
background: $de-ctnr-bg-clr;
|
|
1425
|
+
}
|
|
1426
|
+
@else {
|
|
1427
|
+
background-color: $de-ctnr-bg-clr;
|
|
1428
|
+
}
|
|
1251
1429
|
border: 0;
|
|
1252
1430
|
color: $de-font-color;
|
|
1253
1431
|
float: right;
|
|
@@ -1359,7 +1537,7 @@
|
|
|
1359
1537
|
}
|
|
1360
1538
|
|
|
1361
1539
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1362
|
-
height:
|
|
1540
|
+
height: 36px !important;
|
|
1363
1541
|
}
|
|
1364
1542
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1365
1543
|
height: 42px !important;
|
|
@@ -1391,6 +1569,11 @@
|
|
|
1391
1569
|
width: 70px;
|
|
1392
1570
|
}
|
|
1393
1571
|
}
|
|
1572
|
+
.e-documenteditor-optionspane {
|
|
1573
|
+
@if $skin-name=='Material3' {
|
|
1574
|
+
background: $de-background-color;
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1394
1577
|
@if $skin-name=='tailwind' {
|
|
1395
1578
|
.e-de-prop-fill-label {
|
|
1396
1579
|
font-size: 16px;
|
|
@@ -1410,7 +1593,10 @@
|
|
|
1410
1593
|
margin-left: $e-de-ctnr-break-listview-margin-left;
|
|
1411
1594
|
}
|
|
1412
1595
|
.e-de-listview-icon {
|
|
1596
|
+
height: auto;
|
|
1597
|
+
width: auto;
|
|
1413
1598
|
line-height: 22px;
|
|
1599
|
+
margin-left: $e-de-ctnr-break-listview-margin-left;
|
|
1414
1600
|
}
|
|
1415
1601
|
}
|
|
1416
1602
|
.e-bigger {
|
|
@@ -1583,7 +1769,6 @@
|
|
|
1583
1769
|
.e-de-toolbar.e-toolbar .e-toolbar-items {
|
|
1584
1770
|
height: $de-ctnr-tlbt-height-big;
|
|
1585
1771
|
.e-toolbar-item.e-de-separator {
|
|
1586
|
-
height: 25px;
|
|
1587
1772
|
margin: $de-ctrnr-tblr-separator-margin-big;
|
|
1588
1773
|
}
|
|
1589
1774
|
.e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -1710,6 +1895,9 @@
|
|
|
1710
1895
|
@if $skin-name=='material' {
|
|
1711
1896
|
font-size: 13px;
|
|
1712
1897
|
}
|
|
1898
|
+
@if $skin-name=='material3' {
|
|
1899
|
+
font-size: $text-base;
|
|
1900
|
+
}
|
|
1713
1901
|
@else if $skin-name=='tailwind' {
|
|
1714
1902
|
font-size: 14px;
|
|
1715
1903
|
line-height: 1.5;
|
|
@@ -1747,6 +1935,24 @@
|
|
|
1747
1935
|
box-shadow: none;
|
|
1748
1936
|
}
|
|
1749
1937
|
}
|
|
1938
|
+
.e-de-status-bar button
|
|
1939
|
+
{
|
|
1940
|
+
@if $skin-name=='Material3' {
|
|
1941
|
+
height: $de-status-btn-hgt-big;
|
|
1942
|
+
} @else {
|
|
1943
|
+
height: $de-group-btn-hgt-big;
|
|
1944
|
+
}
|
|
1945
|
+
box-shadow: none;
|
|
1946
|
+
#{if(&, '&', '*')}:focus {
|
|
1947
|
+
box-shadow: none;
|
|
1948
|
+
}
|
|
1949
|
+
#{if(&, '&', '*')}:active {
|
|
1950
|
+
box-shadow: none;
|
|
1951
|
+
}
|
|
1952
|
+
#{if(&, '&', '*')}:hover {
|
|
1953
|
+
box-shadow: none;
|
|
1954
|
+
}
|
|
1955
|
+
}
|
|
1750
1956
|
.e-de-ctnr-group-btn button {
|
|
1751
1957
|
box-shadow: none;
|
|
1752
1958
|
height: $de-group-btn-hgt-big;
|
|
@@ -1894,22 +2100,25 @@
|
|
|
1894
2100
|
margin-left: 10px;
|
|
1895
2101
|
}
|
|
1896
2102
|
.e-de-status-bar {
|
|
1897
|
-
background
|
|
2103
|
+
background: $de-ctnr-bg-clr;
|
|
1898
2104
|
//border-bottom: 1px solid $de-panel-border;
|
|
1899
2105
|
display: flex;
|
|
1900
|
-
|
|
2106
|
+
@if $skin-name !='Material3' {
|
|
2107
|
+
padding-top: $e-de-status-bar-big-padding-top;
|
|
2108
|
+
}
|
|
1901
2109
|
width: 100%;
|
|
1902
2110
|
}
|
|
1903
2111
|
.e-de-statusbar-zoom {
|
|
1904
|
-
background-color: $de-ctnr-bg-clr;
|
|
1905
2112
|
border: 0;
|
|
1906
2113
|
color: $de-font-color;
|
|
1907
2114
|
float: right;
|
|
1908
2115
|
@if $skin-name =='Material3' {
|
|
1909
2116
|
height: 40px;
|
|
2117
|
+
background: $de-ctnr-bg-clr;
|
|
1910
2118
|
}
|
|
1911
2119
|
@else {
|
|
1912
2120
|
height: 34px;
|
|
2121
|
+
background-color: $de-ctnr-bg-clr;
|
|
1913
2122
|
}
|
|
1914
2123
|
}
|
|
1915
2124
|
@if $skin-name !='tailwind' {
|
|
@@ -1932,6 +2141,9 @@
|
|
|
1932
2141
|
@else {
|
|
1933
2142
|
line-height: 0;
|
|
1934
2143
|
}
|
|
2144
|
+
@if $skin-name =='Material3' {
|
|
2145
|
+
line-height: 0.8;
|
|
2146
|
+
}
|
|
1935
2147
|
}
|
|
1936
2148
|
}
|
|
1937
2149
|
.e-listview .e-list-icon {
|
|
@@ -1940,7 +2152,10 @@
|
|
|
1940
2152
|
margin-right: $e-de-ctnr-break-listview-margin-right-big;
|
|
1941
2153
|
}
|
|
1942
2154
|
.e-de-listview-icon {
|
|
2155
|
+
height: auto;
|
|
2156
|
+
width: auto;
|
|
1943
2157
|
line-height: 22px;
|
|
2158
|
+
margin-right: $e-de-ctnr-break-listview-margin-right-big;
|
|
1944
2159
|
}
|
|
1945
2160
|
.e-rtl {
|
|
1946
2161
|
.e-listview .e-list-icon {
|
|
@@ -1949,7 +2164,10 @@
|
|
|
1949
2164
|
margin-left: $e-de-ctnr-break-listview-margin-left-big;
|
|
1950
2165
|
}
|
|
1951
2166
|
.e-de-listview-icon {
|
|
2167
|
+
height: auto;
|
|
2168
|
+
width: auto;
|
|
1952
2169
|
line-height: 22px;
|
|
2170
|
+
margin-left: $e-de-ctnr-break-listview-margin-left-big;
|
|
1953
2171
|
}
|
|
1954
2172
|
}
|
|
1955
2173
|
}
|
|
@@ -2059,7 +2277,8 @@
|
|
|
2059
2277
|
}
|
|
2060
2278
|
@if $skin-name =='Material3' {
|
|
2061
2279
|
height: calc(100% - 10px);
|
|
2062
|
-
line-height:
|
|
2280
|
+
line-height: 16px;
|
|
2281
|
+
font-size: $de-toolbar-font-size !important;
|
|
2063
2282
|
}
|
|
2064
2283
|
@if $skin-name=='bootstrap4' or $skin-name=='bootstrap' {
|
|
2065
2284
|
border: 1px solid $e-de-bzr-button-border-color;
|