@syncfusion/ej2-angular-documenteditor 22.2.7-ngcc → 22.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +116 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +269 -0
  4. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  5. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  8. package/esm2020/src/index.mjs +8 -0
  9. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +516 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +516 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +27 -13
  15. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  16. package/src/document-editor/documenteditor.component.d.ts +3 -0
  17. package/src/document-editor/documenteditor.module.d.ts +6 -0
  18. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  19. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  20. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  21. package/styles/document-editor/_all.scss +3 -0
  22. package/styles/document-editor/_bootstrap-dark-definition.scss +547 -0
  23. package/styles/document-editor/_bootstrap-definition.scss +546 -0
  24. package/styles/document-editor/_bootstrap4-definition.scss +559 -0
  25. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  26. package/styles/document-editor/_bootstrap5-definition.scss +560 -0
  27. package/styles/document-editor/_fabric-dark-definition.scss +549 -0
  28. package/styles/document-editor/_fabric-definition.scss +548 -0
  29. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  30. package/styles/document-editor/_fluent-definition.scss +569 -0
  31. package/styles/document-editor/_fusionnew-definition.scss +560 -0
  32. package/styles/document-editor/_highcontrast-definition.scss +548 -0
  33. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  34. package/styles/document-editor/_layout.scss +216 -0
  35. package/styles/document-editor/_material-dark-definition.scss +565 -0
  36. package/styles/document-editor/_material-definition.scss +565 -0
  37. package/styles/document-editor/_material3-dark-definition.scss +1 -0
  38. package/styles/document-editor/_material3-definition.scss +560 -0
  39. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  40. package/styles/document-editor/_tailwind-definition.scss +557 -0
  41. package/styles/document-editor/_theme.scss +3539 -0
  42. package/styles/document-editor/bootstrap-dark.scss +4 -1
  43. package/styles/document-editor/bootstrap.scss +4 -1
  44. package/styles/document-editor/bootstrap4.scss +4 -1
  45. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  46. package/styles/document-editor/bootstrap5.scss +4 -1
  47. package/styles/document-editor/fabric-dark.scss +4 -1
  48. package/styles/document-editor/fabric.scss +4 -1
  49. package/styles/document-editor/fluent-dark.scss +4 -1
  50. package/styles/document-editor/fluent.scss +4 -1
  51. package/styles/document-editor/highcontrast-light.scss +4 -1
  52. package/styles/document-editor/highcontrast.scss +4 -1
  53. package/styles/document-editor/icons/_bootstrap-dark.scss +660 -0
  54. package/styles/document-editor/icons/_bootstrap.scss +660 -0
  55. package/styles/document-editor/icons/_bootstrap4.scss +645 -0
  56. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  57. package/styles/document-editor/icons/_bootstrap5.scss +699 -0
  58. package/styles/document-editor/icons/_fabric-dark.scss +660 -0
  59. package/styles/document-editor/icons/_fabric.scss +660 -0
  60. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  61. package/styles/document-editor/icons/_fluent.scss +702 -0
  62. package/styles/document-editor/icons/_fusionnew.scss +696 -0
  63. package/styles/document-editor/icons/_highcontrast-light.scss +665 -0
  64. package/styles/document-editor/icons/_highcontrast.scss +660 -0
  65. package/styles/document-editor/icons/_material-dark.scss +653 -0
  66. package/styles/document-editor/icons/_material.scss +653 -0
  67. package/styles/document-editor/icons/_material3-dark.scss +1 -0
  68. package/styles/document-editor/icons/_material3.scss +696 -0
  69. package/styles/document-editor/icons/_tailwind-dark.scss +696 -0
  70. package/styles/document-editor/icons/_tailwind.scss +699 -0
  71. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +174 -0
  72. package/styles/document-editor/material-dark.scss +4 -1
  73. package/styles/document-editor/material.scss +4 -1
  74. package/styles/document-editor/material3-dark.scss +4 -1
  75. package/styles/document-editor/material3.scss +4 -1
  76. package/styles/document-editor/tailwind-dark.scss +4 -1
  77. package/styles/document-editor/tailwind.scss +4 -1
  78. package/styles/document-editor-container/_all.scss +2 -0
  79. package/styles/document-editor-container/_bootstrap-dark-definition.scss +133 -0
  80. package/styles/document-editor-container/_bootstrap-definition.scss +133 -0
  81. package/styles/document-editor-container/_bootstrap4-definition.scss +149 -0
  82. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  83. package/styles/document-editor-container/_bootstrap5-definition.scss +159 -0
  84. package/styles/document-editor-container/_definition.scss +12 -0
  85. package/styles/document-editor-container/_fabric-dark-definition.scss +138 -0
  86. package/styles/document-editor-container/_fabric-definition.scss +135 -0
  87. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  88. package/styles/document-editor-container/_fluent-definition.scss +160 -0
  89. package/styles/document-editor-container/_fusionnew-definition.scss +159 -0
  90. package/styles/document-editor-container/_highcontrast-definition.scss +136 -0
  91. package/styles/document-editor-container/_highcontrast-light-definition.scss +139 -0
  92. package/styles/document-editor-container/_layout.scss +87 -0
  93. package/styles/document-editor-container/_material-dark-definition.scss +137 -0
  94. package/styles/document-editor-container/_material-definition.scss +136 -0
  95. package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
  96. package/styles/document-editor-container/_material3-definition.scss +163 -0
  97. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  98. package/styles/document-editor-container/_tailwind-definition.scss +153 -0
  99. package/styles/document-editor-container/_theme.scss +2406 -0
  100. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  101. package/styles/document-editor-container/bootstrap.scss +5 -1
  102. package/styles/document-editor-container/bootstrap4.scss +5 -1
  103. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  104. package/styles/document-editor-container/bootstrap5.scss +5 -1
  105. package/styles/document-editor-container/fabric-dark.scss +5 -1
  106. package/styles/document-editor-container/fabric.scss +5 -1
  107. package/styles/document-editor-container/fluent-dark.scss +5 -1
  108. package/styles/document-editor-container/fluent.scss +5 -1
  109. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  110. package/styles/document-editor-container/highcontrast.scss +5 -1
  111. package/styles/document-editor-container/icons/_bootstrap-dark.scss +482 -0
  112. package/styles/document-editor-container/icons/_bootstrap.scss +482 -0
  113. package/styles/document-editor-container/icons/_bootstrap4.scss +482 -0
  114. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  115. package/styles/document-editor-container/icons/_bootstrap5.scss +509 -0
  116. package/styles/document-editor-container/icons/_fabric-dark.scss +483 -0
  117. package/styles/document-editor-container/icons/_fabric.scss +482 -0
  118. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  119. package/styles/document-editor-container/icons/_fluent.scss +508 -0
  120. package/styles/document-editor-container/icons/_fusionnew.scss +508 -0
  121. package/styles/document-editor-container/icons/_highcontrast-light.scss +482 -0
  122. package/styles/document-editor-container/icons/_highcontrast.scss +482 -0
  123. package/styles/document-editor-container/icons/_material-dark.scss +484 -0
  124. package/styles/document-editor-container/icons/_material.scss +484 -0
  125. package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
  126. package/styles/document-editor-container/icons/_material3.scss +507 -0
  127. package/styles/document-editor-container/icons/_tailwind-dark.scss +508 -0
  128. package/styles/document-editor-container/icons/_tailwind.scss +508 -0
  129. package/styles/document-editor-container/material-dark.scss +5 -1
  130. package/styles/document-editor-container/material.scss +5 -1
  131. package/styles/document-editor-container/material3-dark.scss +5 -1
  132. package/styles/document-editor-container/material3.scss +5 -1
  133. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  134. package/styles/document-editor-container/tailwind.scss +5 -1
  135. package/styles/material3-dark.css +0 -56
  136. package/styles/material3-dark.scss +1 -0
  137. package/styles/material3.css +0 -111
  138. package/styles/material3.scss +1 -0
  139. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  140. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -583
  141. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  142. package/@syncfusion/ej2-angular-documenteditor.js +0 -553
  143. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  144. package/CHANGELOG.md +0 -3535
  145. package/dist/ej2-angular-documenteditor.umd.js +0 -1250
  146. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  147. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  148. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  149. package/ej2-angular-documenteditor.d.ts +0 -6
  150. package/ej2-angular-documenteditor.metadata.json +0 -1
  151. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,2406 @@
1
+ @include export-module('document-editor-container-theme') {
2
+ /* stylelint-disable */
3
+ .e-de-toolbar {
4
+ height: 100%;
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
+ }
115
+ .e-de-statusbar-pageweb {
116
+ background: $de-ctnr-bg-clr;
117
+ border: 0;
118
+ box-shadow: none;
119
+ float: right;
120
+ @if $skin-name!='bootstrap5' and $skin-name!='tailwind' and $skin-name!='FluentUI' {
121
+ height: 33px;
122
+ width: 33px;
123
+ }
124
+ @if $skin-name=='bootstrap4' {
125
+ color: $e-de-statusbar-separator-color;
126
+ }
127
+ @if $skin-name=='bootstrap5' {
128
+ color: $icon-color;
129
+ }
130
+ #{if(&, '&', '*')}:hover {
131
+ @if $skin-name=='bootstrap5' {
132
+ color: $e-de-bzr-button-hover-font-color;
133
+ }
134
+ box-shadow: none;
135
+ }
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
+ }
145
+ .e-de-statusbar-pageweb .e-de-printlayout,
146
+ .e-de-statusbar-pageweb .e-de-weblayout {
147
+ font-size: $e-de-bzr-btn-font-size;
148
+ }
149
+ .e-de-statusbar-pageweb .e-de-printlayout:hover,
150
+ .e-de-statusbar-pageweb .e-de-weblayout:hover {
151
+ font-size: $e-de-bzr-btn-font-size;
152
+ @if $skin-name=='bootstrap5' {
153
+ color: $e-de-bzr-button-hover-font-color;
154
+ }
155
+ }
156
+ .e-bigger {
157
+ @if $skin-name !='bootstrap5' and $skin-name !='tailwind' and $skin-name!='FluentUI' {
158
+ .e-btn.e-de-statusbar-pageweb {
159
+ padding: 0;
160
+ }
161
+ }
162
+ .e-de-statusbar-pageweb .e-de-printlayout,
163
+ .e-de-statusbar-pageweb .e-de-weblayout {
164
+ font-size: $e-de-bzr-btn-font-size-big;
165
+ @if $skin-name=='bootstrap' {
166
+ margin-top: -6px;
167
+ }
168
+ }
169
+ }
170
+ .e-listview .e-list-icon {
171
+ height: 24px;
172
+ width: 16px;
173
+ margin-right: $e-de-ctnr-break-listview-margin-right;
174
+ }
175
+ .e-de-listview-icon {
176
+ height: auto;
177
+ width: auto;
178
+ line-height: 22px;
179
+ margin-right: $e-de-ctnr-break-listview-margin-right;
180
+ }
181
+ .e-de-linespacing {
182
+ margin-top: $e-de-ctnr-linespacing-tick-icon;
183
+ }
184
+ .e-de-statusbar-zoom {
185
+ background: $de-ctnr-bg-clr;
186
+ border: 0;
187
+ color: $de-font-color;
188
+ float: right;
189
+ font-weight: 400;
190
+ height: 33px;
191
+ @if $skin-name =='bootstrap5' {
192
+ box-shadow: none;
193
+ }
194
+ }
195
+ .e-de-pagenumber-text {
196
+ border: none !important;
197
+ // height: 22px !important;
198
+ // margin-top: $de-pagenumber-text-margin-top !important;
199
+ }
200
+
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,
214
+ .e-de-ctnr-segment button,
215
+ .e-de-char-fmt-btn-right button,
216
+ .e-de-border-size-button,
217
+ .e-de-cell-div button,
218
+ .e-de-insert-del-cell button,
219
+ .e-de-align-text button {
220
+ border-radius: 4px;
221
+ background: $de-prop-btn-bg-color;
222
+ }
223
+ .e-de-char-fmt-btn-right button:not(:first-child),
224
+ .e-de-char-fmt-btn-left button:not(:first-child),
225
+ .e-de-align-text button:not(:first-child) {
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
+ }
242
+ }
243
+ .e-rtl {
244
+ .e-de-char-fmt-btn-right button:not(:last-child),
245
+ .e-de-char-fmt-btn-left button:not(:last-child),
246
+ .e-de-insert-del-cell button:not(:last-child),
247
+ .e-de-align-text button:not(:last-child) {
248
+ border-right: 1.7px solid rgba($border-light);
249
+ background: $de-prop-btn-bg-color;
250
+ }
251
+ }
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
+ }
270
+ }
271
+ .e-de-font-clr-picker > *,
272
+ .de-split-button>div:first-child {
273
+ margin-right: 8px;
274
+ }
275
+ }
276
+
277
+ .e-de-pagenumber-input {
278
+ background: $e-de-pagenumber-bg;
279
+ @if $skin-name =='Material3'{
280
+ border: none !important;
281
+ }
282
+ @else {
283
+ border: 1px solid $de-panel-border;
284
+ }
285
+ border-radius: $de-pagenumber-text-border-radius;
286
+ color: $de-font-color;
287
+ @if $skin-name=='bootstrap5' or $skin-name=='tailwind' or $skin-name =='FluentUI' {
288
+ font-family: inherit;
289
+ font-size: $e-de-btn-font-size;
290
+ }
291
+ padding: 0px;
292
+ text-align: center;
293
+ width: 22px;
294
+ }
295
+ @if $skin-name=='bootstrap5' or $skin-name=='tailwind' or $skin-name =='FluentUI' {
296
+ .e-bigger {
297
+ .e-de-pagenumber-input {
298
+ font-size: $e-de-btn-font-size-big;
299
+ //margin-top: $de-page-number-margin-top-big;
300
+ }
301
+ }
302
+ }
303
+ .e-btn-pageweb-toggle {
304
+ background-color: $de-pageweb-toggle-color;
305
+ box-shadow: none;
306
+ outline: $de-pageweb-toggle-outline;
307
+ outline-offset: 0;
308
+ @if $skin-name=='bootstrap4' {
309
+ color: $de-prop-btn-bg-color;
310
+ }
311
+ }
312
+ .e-btn-pageweb-spellcheck {
313
+ border: 0;
314
+ box-shadow: none;
315
+ float: right;
316
+ margin-left: $de-zoom-tlbr-margin-left;
317
+ }
318
+ @if $skin-name=='tailwind' $skin-name=='material' or $skin-name=='bootstrap-dark' or $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='fabric-dark' or $skin-name=='fabric' or $skin-name=='highcontrast' or $skin-name=='material-dark' {
319
+ .e-bigger .e-btn-pageweb-spellcheck {
320
+ margin-left: $de-zoom-tlbr-margin-left-big;
321
+ }
322
+ }
323
+ .e-de-ctn-title {
324
+ background-color: $de-title-bar-bg-clr;
325
+ border-bottom: none !important;
326
+ color: $de-title-bar-font-clr;
327
+ @if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name =='FluentUI' or $skin-name =='Material3' {
328
+ font-size: $e-de-btn-font-size !important;
329
+ button {
330
+ font-size: $e-de-btn-font-size !important;
331
+ height: 36px !important;
332
+ @if $skin-name !='tailwind' {
333
+ margin: 0 !important;
334
+ }
335
+ .e-btn-icon {
336
+ font-size: $e-de-btn-font-icon-size !important;
337
+ }
338
+ }
339
+ }
340
+ }
341
+ @if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name =='FluentUI' or $skin-name =='Material3' {
342
+ .e-bigger {
343
+ .e-de-ctn-title {
344
+ font-size: $e-de-btn-font-size-big !important;
345
+ height: 40px !important;
346
+ button {
347
+ font-size: $e-de-btn-font-size-big !important;
348
+ height: auto !important;
349
+ @if $skin-name !='tailwind' {
350
+ margin: 0 !important;
351
+ }
352
+ .e-btn-icon {
353
+ font-size: $e-de-btn-font-icon-size-big !important;
354
+ }
355
+ }
356
+ }
357
+ }
358
+ }
359
+ .e-de-tool-ctnr-properties-pane {
360
+ display: flex;
361
+ height: $de-tool-ctnr-editor-height;
362
+ width: 100%;
363
+ }
364
+ .e-de-ctnr-properties-pane {
365
+ display: flex;
366
+ height: $de-ctnr-editor-height;
367
+ width: 100%;
368
+ }
369
+ .e-de-statusbar-separator {
370
+ border-left: 1px solid $e-de-statusbar-separator-color;
371
+ height: 16px;
372
+ margin-left: $de-spellcheck-tlbr-margin-left;
373
+ margin-right: $de-spellcheck-tlbr-margin-left;
374
+ margin-top: $de-status-br-top;
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
+ }
387
+ .e-de-statusbar-spellcheck {
388
+ border-radius: 2px;
389
+ font-weight: 400;
390
+
391
+ @if $skin-name == 'Material3' {
392
+ background: $de-ctnr-bg-clr;
393
+ }
394
+ }
395
+ .e-de-ctn {
396
+ background-color: $de-ctnr-bg-clr;
397
+ border: 1px solid $de-panel-border;
398
+ height: $de-ctnr-height;
399
+ position: relative;
400
+ width: 100%;
401
+ }
402
+ .e-bigger .e-de-statusbar-spellcheck {
403
+ border-radius: 2px;
404
+ }
405
+ .e-de-ctnr-toolbar {
406
+ display: flex;
407
+ height: $de-ctnr-tlbr-height;
408
+ width: 100%;
409
+ @if $skin-name == 'Material3' {
410
+ background: $de-toolbar-background-color;
411
+ }
412
+ }
413
+ .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
414
+ .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
415
+ border: 0;
416
+ }
417
+ .e-de-pane {
418
+ border-left: 1px solid $de-panel-border;
419
+ @if $skin-name == 'Material3' {
420
+ background: $de-pane-background-color;
421
+ }
422
+ }
423
+ .e-de-pane-rtl {
424
+ border-right: 1px solid $de-panel-border;
425
+ @if $skin-name == 'Material3' {
426
+ background: $de-pane-background-color;
427
+ }
428
+ }
429
+ @if $skin-name=='material' {
430
+ .e-de-pane>div button:not(.e-primary),
431
+ .e-de-pane-rtl>div button:not(.e-primary) {
432
+ background-color: $de-panel-btn-bg-clr;
433
+ }
434
+ }
435
+ .e-de-tool-ctnr-properties-pane,
436
+ .e-de-ctnr-properties-pane {
437
+ background: $de-ctnr-prop-bg-clr;
438
+ border-bottom: 1px solid $de-panel-border;
439
+ border-top: 1px solid $de-panel-border;
440
+ }
441
+ .e-de-ctnr-segment {
442
+ margin-bottom: $de-ctnr-margin-bottom;
443
+ }
444
+ @if $skin-name=='tailwind' or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
445
+ .e-de-insert-del-cell>div:last-child {
446
+ margin-left: $de-pane-margin-right !important;
447
+ }
448
+ .e-bigger {
449
+ .e-de-ctnr-prop-label,
450
+ .e-de-ctnr-segment {
451
+ margin-bottom: 16px;
452
+ }
453
+ .e-de-property-div-padding {
454
+ //padding-bottom: 16px;
455
+ padding: 16px;
456
+ }
457
+ .e-de-insert-del-cell>div:last-child {
458
+ margin-left: $de-pane-margin-right-big !important;
459
+ }
460
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon {
461
+ margin-left: $de-btn-icon-margin;
462
+ }
463
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon:not(.e-caret) {
464
+ font-size: $de-btn-font-size-bigger;
465
+ }
466
+ .e-de-pane-rtl {
467
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon {
468
+ margin-left: 0px;
469
+ @if $skin-name=='tailwind' {
470
+ margin-right: -5px;
471
+ }
472
+ @else {
473
+ margin-right: $de-btn-icon-margin;
474
+ }
475
+ }
476
+ }
477
+ }
478
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon:not(.e-caret) {
479
+ font-size: $de-btn-font-size;
480
+ }
481
+ .e-de-property-div-padding .e-de-cellmargin-text {
482
+ padding-bottom: 3px;
483
+ }
484
+ .e-de-cntr-pane-padding.e-de-prop-separator-line>div>div:first-child>div:first-child {
485
+ margin-bottom: 0 !important;
486
+ }
487
+ }
488
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
489
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
490
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
491
+ margin-right: $de-pane-margin-right;
492
+ }
493
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
494
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
495
+ margin-left: $de-pane-margin-right;
496
+ margin-right: 0;
497
+ }
498
+ }
499
+ @if $skin-name=='bootstrap-dark' {
500
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
501
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
502
+ margin-right: $de-pane-margin-right;
503
+ }
504
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
505
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
506
+ margin-left: $de-pane-margin-right;
507
+ margin-right: 0;
508
+ }
509
+ }
510
+ .e-de-ctnr-segment>div:first-child:not(.e-rtl),
511
+ .e-de-ctnr-segment-list>div:last-child:not(.e-rtl),
512
+ .e-de-ctnr-segment>button:first-child:not(.e-rtl) {
513
+ margin-right: $de-pane-margin-right;
514
+ }
515
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>div:first-child,
516
+ .e-de-ctnr-segment-list.e-de-ctnr-segment-list-rtl>div:last-child,
517
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>button:first-child {
518
+ margin-left: $de-pane-margin-right;
519
+ margin-right: 0;
520
+ }
521
+ .e-de-tlbr-wrapper {
522
+ background-color: $de-prpty-btn-bg-clr;
523
+ height: $de-ctnr-tlbr-height;
524
+ width: $de-ctnr-tlbr-width;
525
+ }
526
+ .e-de-ctnr-prop-label {
527
+ color: $de-panel-header-color;
528
+ display: inline-block;
529
+ font-size: $de-panel-header-size;
530
+ font-weight: 500;
531
+ @if $skin-name=='Material3' {
532
+ letter-spacing: 0.3px;
533
+ }
534
+ @else {
535
+ letter-spacing: 0.05px;
536
+ }
537
+ @if $skin-name=='tailwind' {
538
+ line-height: 1.5;
539
+ }
540
+ margin-bottom: $de-ctnr-margin-bottom;
541
+ opacity: 0.87;
542
+ }
543
+ .e-de-table-prop-label {
544
+ margin-left: 12px;
545
+ }
546
+ .e-de-table-prop-label.e-de-rtl {
547
+ margin-left: 0;
548
+ margin-right: 12px;
549
+ }
550
+ .e-de-toolbar.e-toolbar {
551
+ border-radius: 0;
552
+ @if $skin-name =='FluentUI' {
553
+ box-shadow: none;
554
+ }
555
+ }
556
+ .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-first {
557
+ margin-left: 0;
558
+ margin-right: $de-tlbr-margin-right;
559
+ }
560
+ .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-first {
561
+ margin-left: $de-tlbr-margin-right;
562
+ margin-right: 0;
563
+ }
564
+ .e-bigger .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-first {
565
+ margin-left: 0;
566
+ margin-right: $de-tlbr-margin-right-big;
567
+ }
568
+ .e-bigger .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-first {
569
+ margin-left: $de-tlbr-margin-right-big;
570
+ margin-right: 0;
571
+ }
572
+ .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-last {
573
+ margin-left: $de-tlbr-margin-right;
574
+ margin-right: 0;
575
+ }
576
+ .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-last {
577
+ margin-left: 0;
578
+ margin-right: $de-tlbr-margin-right;
579
+ }
580
+ .e-bigger .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-last {
581
+ margin-left: $de-tlbr-margin-right-big;
582
+ margin-right: 0;
583
+ }
584
+ .e-bigger .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-last {
585
+ margin-left: 0;
586
+ margin-right: $de-tlbr-margin-right-big;
587
+ }
588
+ .e-de-toolbar.e-toolbar .e-toolbar-items {
589
+ height: $de-ctnr-tlbr-height;
590
+ .e-toolbar-item.e-de-separator {
591
+ @if $skin-name=='fabric' {
592
+ border: 1px solid $de-ctnr-separator-clr;
593
+ border-width: 0 1px 0 0;
594
+ }
595
+ height: 59px;
596
+ margin: $de-ctrnr-tblr-separator-margin;
597
+ }
598
+ .e-toolbar-item.e-de-toolbar-btn-start {
599
+ margin-left: $de-tlbr-margin-first !important;
600
+ margin-right: $de-tlbr-margin-right;
601
+ }
602
+ .e-toolbar-item.e-de-toolbar-btn-middle {
603
+ margin-left: $de-tlbr-margin-right;
604
+ margin-right: $de-tlbr-margin-right;
605
+ }
606
+ .e-toolbar-item.e-de-toolbar-btn-end {
607
+ margin-left: $de-tlbr-margin-right;
608
+ margin-right: $de-tlbr-margin-first;
609
+ }
610
+ .e-toolbar-item.e-de-image-focus :focus {
611
+ background-color: $de-toggle-bg-color;
612
+ }
613
+ }
614
+ @if $skin-name=='bootstrap' {
615
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
616
+ flex-direction: column;
617
+ height: $de-tlbr-btn-height;
618
+ padding: 0 1px;
619
+ padding-bottom: 5px;
620
+ #{if(&, '&', '*')}:focus {
621
+ padding: 0;
622
+ padding-bottom: 5px;
623
+ }
624
+ #{if(&, '&', '*')}:active {
625
+ padding: 0;
626
+ padding-bottom: 5px;
627
+ }
628
+ #{if(&, '&', '*')}:hover {
629
+ padding: 0;
630
+ padding-bottom: 5px;
631
+ }
632
+ }
633
+ }
634
+ @if $skin-name !='bootstrap' {
635
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
636
+ flex-direction: column;
637
+ height: $de-tlbr-btn-height;
638
+ padding: 0;
639
+ padding-bottom: $de-toolbar-padding-bottom;
640
+ #{if(&, '&', '*')}:focus {
641
+ padding: 0;
642
+ padding-bottom: $de-toolbar-padding-bottom;
643
+ }
644
+ #{if(&, '&', '*')}:active {
645
+ padding: 0;
646
+ padding-bottom: $de-toolbar-padding-bottom;
647
+ }
648
+ #{if(&, '&', '*')}:hover {
649
+ padding: 0;
650
+ padding-bottom: $de-toolbar-padding-bottom;
651
+ }
652
+ }
653
+ }
654
+ @if $skin-name=='bootstrap4' {
655
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
656
+ flex-direction: column;
657
+ height: $de-tlbr-btn-height;
658
+ padding: 0 1px;
659
+ padding-bottom: 5px;
660
+ #{if(&, '&', '*')}:focus {
661
+ padding: 0;
662
+ padding-bottom: 5px;
663
+ }
664
+ #{if(&, '&', '*')}:active {
665
+ padding: 0;
666
+ padding-bottom: 5px;
667
+ }
668
+ #{if(&, '&', '*')}:hover {
669
+ padding: 0;
670
+ padding-bottom: 5px;
671
+ }
672
+ }
673
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-btn-icon {
674
+ color: $de-toolbar-icon-clr;
675
+ font-size: 16px;
676
+ }
677
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
678
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
679
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
680
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:disabled {
681
+ .e-btn-icon {
682
+ color: $de-toggle-btn-color;
683
+ }
684
+ }
685
+ .e-bigger {
686
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-btn-icon {
687
+ color: $de-toolbar-icon-clr;
688
+ font-size: 18px;
689
+ }
690
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
691
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
692
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
693
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:disabled {
694
+ .e-btn-icon {
695
+ color: $de-toggle-btn-color;
696
+ }
697
+ }
698
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
699
+ font-size: 13px;
700
+ }
701
+ }
702
+ }
703
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
704
+ padding: 0;
705
+ }
706
+ .e-de-overlay {
707
+ height: 100%;
708
+ opacity: 0.5;
709
+ pointer-events: none;
710
+ touch-action: none;
711
+ width: 100%;
712
+ }
713
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
714
+ .e-de-font-clr-picker .e-colorpicker-container .e-split-btn-wrapper .e-btn.e-icon-btn,
715
+ .e-de-font-clr-picker .e-colorpicker-container .e-split-btn-wrapper .e-btn.e-icon-btn,
716
+ .e-de-font-clr-picker .e-colorpicker-wrapper .e-btn.e-icon-btn,
717
+ .e-de-font-clr-picker .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
718
+ .e-de-font-clr-picker .e-colorpicker-wrapper .e-btn.e-icon-btn.e-rtl {
719
+ padding: 0;
720
+ }
721
+
722
+ .e-de-prop-font-colorpicker .e-btn.e-icon-btn,
723
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-split-colorpicker.e-split-btn {
724
+ padding: 4px 8px !important;
725
+ }
726
+
727
+ .e-de-ctnr-style-div {
728
+ width: $de-text-pane-style-width;
729
+ }
730
+
731
+ .e-btn-toggle {
732
+ .e-tbar-btn-text {
733
+ color: $de-toggle-btn-color !important;
734
+ }
735
+ .e-btn-icon {
736
+ color: $de-toggle-btn-color !important;
737
+ }
738
+ }
739
+
740
+ .e-de-ctnr-list,
741
+ .e-de-list-header-presetmenu {
742
+ color: $de-prop-btn-icon-clr;
743
+ }
744
+ .e-de-ctnr-group-btn {
745
+ .e-btn {
746
+ background: $de-prop-btn-bg-color;
747
+ border-color: $de-prop-btn-border-color;
748
+ #{if(&, '&', '*')}:focus {
749
+ background-color: $de-toggle-border-hover-color;
750
+ @if $skin-name !='bootstrap4' and $skin-name!='bootstrap5' {
751
+ border: 1px;
752
+ }
753
+ border-color: $de-toggle-border-color;
754
+ box-shadow: 0 0 0 0 $de-toggle-bg-color;
755
+ outline-color: $de-toggle-bg-color;
756
+ }
757
+ #{if(&, '&', '*')}:active,
758
+ .e-btn-toggle {
759
+ background-color: $de-toggle-border-hover-color;
760
+ @if $skin-name !='bootstrap4' and $skin-name!='bootstrap5' {
761
+ border: 1px;
762
+ }
763
+ border-color: $de-toggle-border-color;
764
+ }
765
+ #{if(&, '&', '*')}:hover {
766
+ @if $skin-name !='tailwind' {
767
+ background-color: $de-toggle-hover-color;
768
+ @if $skin-name !='bootstrap4' and $skin-name!='bootstrap5' {
769
+ border: 1px;
770
+ }
771
+ @if $skin-name!='bootstrap5' {
772
+ border-color: $de-toggle-border-hover-color;
773
+ }
774
+ }
775
+ }
776
+ }
777
+ @if $skin-name=='bootstrap4' {
778
+ .e-split-btn-wrapper.e-rtl .e-split-btn {
779
+ border-color: $de-prop-btn-border-color;
780
+ }
781
+ }
782
+ }
783
+ .e-de-ctnr-group-btn .e-btn:disabled {
784
+ background-color: $de-toggle-bg-color;
785
+ border-color: $de-toggle-bg-color;
786
+ opacity: 65%;
787
+ }
788
+ .e-de-ctnr-group-btn .e-btn:hover,
789
+ .e-de-ctnr-group-btn .e-btn:focus,
790
+ .e-de-ctnr-group-btn .e-btn:active,
791
+ .e-de-ctnr-group-btn .e-btn:disabled {
792
+ .e-btn-icon {
793
+ @if $skin-name == 'bootstrap5' {
794
+ color: $de-white-color;
795
+ }
796
+ @else {
797
+ color: $de-toggle-btn-color;
798
+ }
799
+ }
800
+ }
801
+ .e-de-ctnr-group-btn .e-btn-icon {
802
+ color: $de-prop-btn-icon-clr;
803
+ font-size: $de-btn-font-size;
804
+ }
805
+ .e-bigger {
806
+ .e-de-ctnr-group-btn .e-btn-icon {
807
+ color: $de-prop-btn-icon-clr;
808
+ }
809
+ }
810
+ .e-btn-toggle .e-btn-icon {
811
+ color: $de-toggle-btn-color;
812
+ }
813
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn,
814
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn-icon,
815
+ .e-de-border-size-button,
816
+ .e-de-border-size-button .e-btn-icon {
817
+ background-color: $de-prop-btn-bg-color;
818
+ border-color: $de-prop-btn-border-color;
819
+ color: $de-prop-btn-icon-clr;
820
+ }
821
+ .e-de-border-size-button:focus,
822
+ .e-de-border-size-button:hover,
823
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn:hover,
824
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn:focus {
825
+ background-color: $de-toggle-bg-color;
826
+ box-shadow: $de-toggle-btn-border;
827
+ .e-btn-icon {
828
+ background-color: $de-toggle-bg-color;
829
+ box-shadow: $de-toggle-btn-border;
830
+ color: $de-toggle-btn-color;
831
+ }
832
+ }
833
+ .e-de-border-size-button .e-btn-icon:focus,
834
+ .e-de-border-size-button .e-btn-icon:hover {
835
+ background-color: $de-toggle-bg-color;
836
+ box-shadow: $de-toggle-btn-border;
837
+ color: $de-toggle-btn-color;
838
+ }
839
+
840
+ .e-de-pagenumber-text {
841
+ border: none !important;
842
+ // height: 22px !important;
843
+ // margin-top: $de-pagenumber-text-margin-top !important;
844
+ }
845
+
846
+ }
847
+ // .de-split-button>div:first-child {
848
+ // margin-right: $de-list-button-margin-right;
849
+ // }
850
+ .e-de-ctnr-properties-pane-btn {
851
+ @if $skin-name == 'Material3' {
852
+ width: 78px;
853
+ }
854
+ @else {
855
+ width: 75px;
856
+ }
857
+ }
858
+ .e-de-pane-enable-clr.e-de-ctnr-properties-pane-btn {
859
+ .e-btn {
860
+ color: $de-pane-color-border;
861
+ }
862
+ }
863
+ .e-de-pane-disable-clr.e-de-ctnr-properties-pane-btn {
864
+ .e-btn {
865
+ color: $de-font-color;
866
+ }
867
+ }
868
+ .e-de-ctnr-properties-pane-btn {
869
+ .e-btn {
870
+ background: $de-prpty-btn-bg-clr;
871
+ border-radius: 0;
872
+ box-shadow: none;
873
+ color: $de-pane-color-border;
874
+ min-height: 100%;
875
+ min-width: 100%;
876
+ #{if(&, '&', '*')}:focus {
877
+ box-shadow: none;
878
+ }
879
+ #{if(&, '&', '*')}:active {
880
+ box-shadow: none;
881
+ }
882
+ #{if(&, '&', '*')}:hover {
883
+ box-shadow: none;
884
+ }
885
+ }
886
+ }
887
+ .e-de-showhide-btn {
888
+ border: 0;
889
+ height: $de-ctnr-tlbr-height;
890
+ }
891
+ .e-de-showhide-btn-rtl {
892
+ border: 0;
893
+ height: $de-ctnr-tlbr-height;
894
+ }
895
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
896
+ padding: $de-ctrnr-tblr-item-padding;
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
+ }
903
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
904
+ display: table;
905
+ font-size: $de-toolbar-font-size;
906
+ margin: $de-ctrnr-tblr-item-margin;
907
+ padding: 0;
908
+ white-space: normal;
909
+ }
910
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
911
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
912
+ padding: 0 !important;
913
+ min-height: 16px;
914
+ }
915
+ .e-de-hdr-ftr-frst-div {
916
+ margin-bottom: $de-hdr-ftr-frst-div-mrgn-btm;
917
+ }
918
+ .e-de-hdr-ftr-top-div {
919
+ margin-bottom: $de-hdr-ftr-top-div-mrgn-btm;
920
+ }
921
+ .e-de-cntr-pane-padding {
922
+ padding: $de-ctnr-padding;
923
+ }
924
+ .e-de-prop-pane {
925
+ height: 100%;
926
+ min-height: 200px;
927
+ overflow: auto;
928
+ width: $de-text-pane-width;
929
+ }
930
+ .e-de-review-pane {
931
+ background: $de-ctnr-prop-bg-clr;
932
+ border-left: 1px solid $de-op-border-clr;
933
+ height: 100%;
934
+ min-height: 200px;
935
+ overflow: auto;
936
+ width: $e-de-review-pane-width;
937
+ @if $skin-name == 'FluentUI' {
938
+ .e-toolbar {
939
+ box-shadow: none;
940
+ }
941
+ }
942
+ }
943
+ .e-bigger {
944
+ .e-de-cntr-pane-padding {
945
+ @if $skin-name=='FluentUI' {
946
+ padding: 24px;
947
+ }
948
+ @else {
949
+ padding: 16px;
950
+ }
951
+ }
952
+ .e-de-prop-pane {
953
+ height: 100%;
954
+ min-height: 200px;
955
+ overflow: auto;
956
+ width: $de-text-pane-width-big;
957
+ }
958
+ @if $skin-name=='bootstrap4' {
959
+ .e-btn-toggle .e-tbar-btn-text {
960
+ color: $de-toggle-btn-color !important;
961
+ }
962
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn {
963
+ border-color: $de-clr-picker-border-clr;
964
+ }
965
+ }
966
+ @if $skin-name=='tailwind' {
967
+ .e-de-prop-sub-label {
968
+ font-size: 14px;
969
+ }
970
+ .e-de-hdr-ftr-top-div,
971
+ .e-de-hdr-ftr-frst-div {
972
+ margin-bottom: 16px;
973
+ }
974
+ }
975
+ }
976
+ .e-de-property-div-padding {
977
+ @if $skin-name=='Material3' {
978
+ border-bottom: 1px solid $de-pane-separator;
979
+ }
980
+ @else {
981
+ border-bottom: 0.5px solid $de-pane-separator;
982
+ }
983
+ //padding-bottom: $de-prop-div-padding-bottom;
984
+ padding: $de-prop-div-padding-top;
985
+ }
986
+ .e-de-ctnr-dropdown-ftr {
987
+ border-top: 1px solid $de-pane-separator;
988
+ color: $de-panel-header-color;
989
+ cursor: pointer;
990
+ display: block;
991
+ font-size: 12px;
992
+ line-height: 40px;
993
+ text-indent: 1.2em;
994
+ }
995
+ .e-de-char-fmt-btn-left>button,
996
+ .e-de-insert-del-cell button {
997
+ width: $de-left-btn-width;
998
+ }
999
+ .e-de-char-fmt-btn-right>button {
1000
+ width: $de-right-btn-width;
1001
+ }
1002
+ .e-de-panel-left-width {
1003
+ width: $de-left-panel-width;
1004
+ }
1005
+ .e-bigger {
1006
+ .e-de-panel-left-width {
1007
+ width: $de-left-panel-width-big;
1008
+ }
1009
+ .e-de-char-fmt-btn-left>button,
1010
+ .e-de-insert-del-cell button {
1011
+ width: $de-left-btn-width-big;
1012
+ }
1013
+ }
1014
+ .e-de-panel-right-width {
1015
+ width: $de-right-panel-width;
1016
+ }
1017
+ @if $skin-name=='bootstrap5' or $skin-name=='FluentUI' or $skin-name=='tailwind' {
1018
+ .e-bigger {
1019
+ .e-de-panel-right-width {
1020
+ width: $de-right-font-size-width-big;
1021
+ }
1022
+ .e-de-char-fmt-btn-left > button,
1023
+ .e-de-char-fmt-btn-right>button {
1024
+ width: $de-right-btn-width-big;
1025
+ }
1026
+ }
1027
+ }
1028
+ .e-de-cntr-highlight-pane {
1029
+ border: 1px solid $de-panel-border;
1030
+ }
1031
+
1032
+ .e-de-btn-hghlclr>button:first-child {
1033
+ padding: 1px !important;
1034
+ }
1035
+ .e-de-ctnr-hglt-color {
1036
+ font-size: 12px;
1037
+ font-weight: 400;
1038
+ height: $de-hlt-clr-height !important;
1039
+ width: $de-hlt-clr-height !important;
1040
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='tailwind' {
1041
+ border-radius: 4px;
1042
+ }
1043
+ }
1044
+
1045
+ .e-de-font-clr-picker>div div button,
1046
+ .e-de-font-clr-picker>div button,
1047
+ .e-de-font-clr-picker>button {
1048
+ width: $de-clr-pckr-width;
1049
+ }
1050
+
1051
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md {
1052
+ height: 55px;
1053
+ padding: 4px !important;
1054
+ width: 60px;
1055
+ }
1056
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md:hover {
1057
+ border: 3px solid $de-list-hover-bg;
1058
+ padding: 2px !important;
1059
+ }
1060
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md {
1061
+ height: 38px;
1062
+ padding: 4px !important;
1063
+ width: 38px;
1064
+ }
1065
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md:hover {
1066
+ border: 3px solid $de-list-hover-bg;
1067
+ padding: 2px !important;
1068
+ }
1069
+ .e-de-list-header-presetmenu {
1070
+ cursor: pointer;
1071
+ font-size: 11px;
1072
+ line-height: 14px;
1073
+ overflow: hidden;
1074
+ text-align: left;
1075
+ min-width: 50px;
1076
+ white-space: nowrap;
1077
+ width: 100%;
1078
+ @if $skin-name=='tailwind' {
1079
+ color: $icon-color;
1080
+ }
1081
+ }
1082
+ .e-de-bullet-list-header-presetmenu {
1083
+ cursor: pointer;
1084
+ font-size: 14px;
1085
+ left: -11px;
1086
+ line-height: $de-bullet-icon-line-height;
1087
+ min-width: 50px;
1088
+ overflow: hidden;
1089
+ position: relative;
1090
+ white-space: nowrap;
1091
+ width: 100%;
1092
+ }
1093
+ .e-rtl {
1094
+ .e-de-bullet-list-header-presetmenu {
1095
+ cursor: pointer;
1096
+ font-size: 14px;
1097
+ left: 10px;
1098
+ line-height: $de-bullet-icon-line-height;
1099
+ min-width: 50px;
1100
+ overflow: hidden;
1101
+ position: relative;
1102
+ white-space: nowrap;
1103
+ width: 100%;
1104
+ }
1105
+ }
1106
+ .e-de-bullet {
1107
+ font-size: 42px;
1108
+ }
1109
+ .e-de-list-header-presetmenu .e-de-list-line {
1110
+ border-bottom: 1px solid $de-prop-btn-icon-clr !important;
1111
+ margin-left: 5px;
1112
+ width: 100%;
1113
+ }
1114
+ .e-de-toc-optionsdiv {
1115
+ margin-bottom: 11.5px;
1116
+ margin-left: 5.5px;
1117
+ margin-top: 15.5px;
1118
+ }
1119
+ .e-de-toc-optionsdiv.e-de-rtl {
1120
+ margin-right: 5.5px;
1121
+ margin-left: 0;
1122
+ }
1123
+ .e-de-list-header-presetmenu div span {
1124
+ //color: #aaa;
1125
+ display: inline-block;
1126
+ vertical-align: middle;
1127
+ }
1128
+ .e-de-floating-menu .e-de-floating-menuitem,
1129
+ .e-de-floating-menu .e-de-menuitem-none {
1130
+ cursor: pointer;
1131
+ height: 70px;
1132
+ padding: 0 !important;
1133
+ margin: 0 5px 5px 0 !important;
1134
+ width: 70px;
1135
+ }
1136
+ .e-de-list-thumbnail .e-de-list-items {
1137
+ float: left;
1138
+ }
1139
+ .e-de-list-thumbnail .e-de-list-items {
1140
+ border: 1px solid $de-list-thmbnail-border-clr;
1141
+ @if $skin-name =='Material3' {
1142
+ border-radius: 4px;
1143
+ }
1144
+ clear: initial;
1145
+ display: inline-block;
1146
+ height: auto;
1147
+ margin: 5px;
1148
+ padding: 2px;
1149
+ text-align: center;
1150
+ width: auto;
1151
+ }
1152
+ .e-de-list-items {
1153
+ cursor: pointer;
1154
+ background: $de-ctnr-bg-clr;
1155
+ box-sizing: border-box;
1156
+ list-style: none;
1157
+ padding: 7px 10px 7px 10px;
1158
+ position: relative;
1159
+ }
1160
+ .e-de-list-item-size {
1161
+ font-size: 14px;
1162
+ }
1163
+ .e-de-floating-menuitem.e-de-floating-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected,
1164
+ .e-de-floating-menuitem.e-de-floating-bullet-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected {
1165
+ border: 3px solid $de-title-bar-bg-clr;
1166
+ padding: 2px !important;
1167
+ }
1168
+ .e-de-floating-menu {
1169
+ padding: 10px 4px 5px 10px !important;
1170
+ }
1171
+ @if $skin-name !='tailwind' {
1172
+ .e-de-list-container {
1173
+ @if $skin-name !='Material3' {
1174
+ border: 1px solid #ccc;
1175
+ border-radius: 2px;
1176
+ box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
1177
+ }
1178
+ background: $de-ctnr-bg-clr;
1179
+ box-sizing: border-box;
1180
+ display: inline-block;
1181
+ line-height: normal;
1182
+ margin: 0;
1183
+ outline: 0;
1184
+ @if $skin-name =='Material3' {
1185
+ padding: 10px 0;
1186
+ }
1187
+ @else {
1188
+ padding: 5px 0;
1189
+ }
1190
+ position: absolute;
1191
+ width: auto;
1192
+ z-index: 10020;
1193
+ }
1194
+ }
1195
+ .e-de-ctnr-list {
1196
+ font-size: $de-bullet-icon-font-size;
1197
+ @if ( $skin-name !='bootstrap4' and $skin-name !='tailwind') {
1198
+ vertical-align: top;
1199
+ }
1200
+ }
1201
+ .e-de-image-property {
1202
+ padding-left: 32px;
1203
+ }
1204
+ .e-de-img-prty-span {
1205
+ color: $de-font-color;
1206
+ left: $de-img-span-left;
1207
+ position: absolute;
1208
+ top: $de-img-span-top;
1209
+ }
1210
+ .e-btn-toggle {
1211
+ background-color: $de-toggle-bg-color !important;
1212
+ @if $skin-name=='highcontrast' {
1213
+ color: $de-title-bar-font-clr !important;
1214
+ }
1215
+ @if $skin-name=='fabric' {
1216
+ border-color: $de-toggle-bg-color !important;
1217
+ }
1218
+ outline: $de-toggle-btn-outline;
1219
+ outline-offset: 0;
1220
+ box-shadow: $de-toggle-btn-border !important;
1221
+ #{if(&, '&', '*')}:hover {
1222
+ background-color: $de-toggle-bg-color !important;
1223
+ @if $skin-name=='fabric' {
1224
+ border-color: $de-toggle-bg-color !important;
1225
+ }
1226
+ outline: $de-toggle-btn-outline;
1227
+ outline-offset: 0;
1228
+ box-shadow: $de-toggle-btn-border !important;
1229
+ }
1230
+ }
1231
+ @if $skin-name=='highcontrast' {
1232
+ .e-btn-toggle .e-tbar-btn-text {
1233
+ color: $de-title-bar-font-clr !important;
1234
+ }
1235
+ .e-btn-toggle>span {
1236
+ color: $de-title-bar-font-clr !important;
1237
+ }
1238
+ }
1239
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
1240
+ .e-de-ctnr-group-btn-top>button:first-child {
1241
+ border-radius: 0;
1242
+ border-top-left-radius: 4px;
1243
+ }
1244
+ .e-de-ctnr-group-btn-top.e-de-rtl>button:first-child {
1245
+ border-top-left-radius: 0;
1246
+ border-top-right-radius: 4px;
1247
+ }
1248
+ .e-de-ctnr-group-btn-top>button:last-child {
1249
+ border-radius: 0;
1250
+ border-top-right-radius: 4px;
1251
+ }
1252
+ .e-de-ctnr-group-btn-top.e-de-rtl>button:last-child {
1253
+ border-top-left-radius: 4px;
1254
+ border-top-right-radius: 0;
1255
+ }
1256
+ .e-de-ctnr-group-btn-middle>button {
1257
+ border-radius: 0;
1258
+ border-top: 0;
1259
+ border-bottom: 0;
1260
+ }
1261
+ .e-de-ctnr-group-btn-bottom>button:first-child {
1262
+ border-radius: 0;
1263
+ border-bottom-left-radius: 4px;
1264
+ }
1265
+ .e-de-ctnr-group-btn-bottom.e-de-rtl>button:first-child {
1266
+ border-bottom-left-radius: 0;
1267
+ border-bottom-right-radius: 4px;
1268
+ }
1269
+ .e-de-ctnr-group-btn-bottom>button:last-child {
1270
+ border-radius: 0;
1271
+ border-bottom-right-radius: 4px;
1272
+ }
1273
+ .e-de-ctnr-group-btn-bottom.e-de-rtl>button:last-child {
1274
+ border-bottom-right-radius: 0;
1275
+ border-bottom-left-radius: 4px;
1276
+ }
1277
+ }
1278
+ .e-de-toc-template1 {
1279
+ @if $skin-name != 'tailwind' {
1280
+ background: $de-ctnr-bg-clr;
1281
+ }
1282
+ border: 1px solid $de-panel-border;
1283
+ color: $de-panel-header-color;
1284
+ @if $skin-name=='Material3' {
1285
+ height: 130px;
1286
+ width: 95px;
1287
+ margin-left: 80px;
1288
+ }
1289
+ @else {
1290
+ height: 129px;
1291
+ width: 94px;
1292
+ margin-left: 78px;
1293
+ }
1294
+
1295
+
1296
+ }
1297
+ .e-de-toc-template1.e-de-rtl {
1298
+ margin-left: 0;
1299
+ margin-right: 78px;
1300
+ }
1301
+
1302
+ .e-de-toc-template1-content1 {
1303
+ font-size: 10px;
1304
+ @if $skin-name=='Material3' {
1305
+ height: 16px;
1306
+ margin-left: 8px;
1307
+ margin-top: 6px;
1308
+ }
1309
+ @else {
1310
+ height: 11px;
1311
+ margin-left: 5.4px;
1312
+ margin-top: 6.7px;
1313
+ }
1314
+ width: $de-toc-template-content1;
1315
+ }
1316
+ .e-de-toc-template1-content2 {
1317
+ font-size: 8px;
1318
+ height: 9px;
1319
+ @if $skin-name=='Material3' {
1320
+ margin-left: 23px;
1321
+ margin-top: 6px;
1322
+ }
1323
+ @else {
1324
+ margin-left: 20.4px;
1325
+ margin-top: 5.7px;
1326
+ }
1327
+ width: $de-toc-template-content2;
1328
+ }
1329
+ .e-de-toc-template1-content3 {
1330
+ font-size: 7px;
1331
+ height: 8px;
1332
+ @if $skin-name=='Material3' {
1333
+ margin-left: 30px;
1334
+ margin-top: 6px;
1335
+ }
1336
+ @else {
1337
+ margin-left: 28.4px;
1338
+ margin-top: 6.7px;
1339
+ }
1340
+ width: $de-toc-template-content3;
1341
+ }
1342
+ .e-de-prop-sub-label {
1343
+ color: $de-panel-sub-label-color;
1344
+ @if $skin-name=='tailwind' {
1345
+ font-size: 12px;
1346
+ line-height: 18px;
1347
+ }
1348
+ @else if $skin-name=='Material3' {
1349
+ font-size: $de-toolbar-font-size;
1350
+ }
1351
+ @else {
1352
+ font-size: 13px;
1353
+ }
1354
+ margin-bottom: $de-prop-sub-label-mrgn-btm;
1355
+ font-weight: $de-header-font-weight;
1356
+ }
1357
+ .e-de-toc-checkbox1 {
1358
+ height: $de-prop-pane-margin;
1359
+ margin-top: $de-prop-pane-margin;
1360
+ }
1361
+ .e-de-toc-checkbox2 {
1362
+ height: $de-prop-pane-margin;
1363
+ margin-top: $de-prop-pane-margin;
1364
+ }
1365
+ .e-de-toc-checkbox3 {
1366
+ height: $de-prop-pane-margin;
1367
+ margin-top: $de-prop-pane-margin;
1368
+ }
1369
+ .e-de-status-bar {
1370
+ background: $de-ctnr-bg-clr;
1371
+ //border-bottom: 1px solid $de-panel-border;
1372
+ display: flex;
1373
+ @if $skin-name !='Material3' {
1374
+ padding-top: $e-de-status-bar-padding-top;
1375
+ }
1376
+ width: 100%;
1377
+ }
1378
+ .e-de-ctnr-pg-no {
1379
+ color: $de-font-color;
1380
+ display: inline-flex;
1381
+ font-size: $de-ctnr-pg-no-spellout-fnt-size;
1382
+ height: 100%;
1383
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top;
1384
+
1385
+ span {
1386
+ border: 1px solid transparent;
1387
+ }
1388
+ }
1389
+ .e-de-ctnr-pg-no-spellout {
1390
+ color: $de-font-color;
1391
+ display: inline-flex;
1392
+ font-size: $de-ctnr-pg-no-spellout-fnt-size;
1393
+ height: 100%;
1394
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top;
1395
+ width: $de-page-no-width-spellout;
1396
+
1397
+ span {
1398
+ border: 1px solid transparent;
1399
+ }
1400
+ }
1401
+ .e-bigger .e-de-ctnr-pg-no-spellout {
1402
+ color: $de-font-color;
1403
+ display: inline-flex;
1404
+ font-size: $de-ctnr-pg-no-spellout-fnt-size-bg;
1405
+ height: 100%;
1406
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top-big;
1407
+ width: $de-page-no-width-spellout-big;
1408
+ }
1409
+ .e-de-statusbar-zoom-spell {
1410
+ @if $skin-name =='Material3' {
1411
+ background: $de-ctnr-bg-clr;
1412
+ }
1413
+ @else {
1414
+ background-color: $de-ctnr-bg-clr;
1415
+ }
1416
+ border: 0;
1417
+ color: $de-font-color;
1418
+ float: right;
1419
+ height: 34px;
1420
+ margin-left: $de-zoom-tlbr-margin-left;
1421
+ }
1422
+ .e-bigger .e-de-statusbar-zoom-spell {
1423
+ @if $skin-name =='Material3' {
1424
+ background: $de-ctnr-bg-clr;
1425
+ }
1426
+ @else {
1427
+ background-color: $de-ctnr-bg-clr;
1428
+ }
1429
+ border: 0;
1430
+ color: $de-font-color;
1431
+ float: right;
1432
+ height: 34px;
1433
+ margin-left: $de-zoom-tlbr-margin-left-big;
1434
+ }
1435
+ .e-de-btn-cancel {
1436
+ margin-left: 10px;
1437
+ }
1438
+ .e-de-btn-cancel-rtl {
1439
+ margin-left: 0;
1440
+ margin-right: 10px;
1441
+ }
1442
+ .e-de-prop-header-label {
1443
+ color: $de-panel-header-color;
1444
+ display: inline-block;
1445
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1446
+ font-size: $de-panel-header-size;
1447
+ }
1448
+ @else if $skin-name == 'Material3' {
1449
+ font-size: $de-toolbar-font-size;
1450
+ }
1451
+ @else {
1452
+ font-size: 13px;
1453
+ }
1454
+ font-weight: bold;
1455
+ letter-spacing: 0.05px;
1456
+ opacity: 0.87;
1457
+ }
1458
+ .e-de-prop-separator-line {
1459
+ border-bottom: $de-header-line-color;
1460
+ }
1461
+ .e-de-status-bar>div label {
1462
+ font-weight: $de-status-br-lbl-fnt-weight;
1463
+ }
1464
+ .e-de-stylediv {
1465
+ padding-left: $de-prop-style-padding;
1466
+ }
1467
+ .e-de-stylediv-rtl {
1468
+ padding-left: 0;
1469
+ padding-right: $de-prop-style-padding;
1470
+ }
1471
+ // .e-de-border-style-div {
1472
+ // margin-left: 12px;
1473
+ // }
1474
+ // .e-de-border-style-div.e-de-rtl {
1475
+ // margin-left: 0;
1476
+ // margin-right: 12px;
1477
+ // }
1478
+ // .e-de-insert-del-cell {
1479
+ // margin-left: 12px;
1480
+ // }
1481
+ // .e-de-insert-del-cell.e-de-rtl {
1482
+ // margin-left: 0;
1483
+ // margin-right: 12px;
1484
+ // }
1485
+ // .e-de-cell-margin {
1486
+ // margin-left: 12px;
1487
+ // }
1488
+ // .e-de-align-text {
1489
+ // margin-left: 12px;
1490
+ // }
1491
+ // .e-de-align-text.e-de-rtl {
1492
+ // margin-left: 0;
1493
+ // margin-right: 12px;
1494
+ // }
1495
+ .e-de-border-size-button {
1496
+ height: $de-border-size-button-height;
1497
+ margin-top: $de-table-prop-border-margin;
1498
+ width: $de-border-size-button-width;
1499
+ }
1500
+ .e-de-color-picker {
1501
+ height: $de-border-size-button-height;
1502
+ width: $de-border-size-button-width;
1503
+ }
1504
+ // .e-de-cell-div {
1505
+ // margin-left: $de-prop-style-padding;
1506
+ // }
1507
+ // .e-de-cell-div.e-de-rtl {
1508
+ // margin-left: 0;
1509
+ // margin-right: $de-prop-style-padding;
1510
+ // }
1511
+ .e-de-cell-text-box {
1512
+ margin-right: $de-prop-style-padding;
1513
+ }
1514
+ .e-de-pane-rtl {
1515
+ .e-de-cell-text-box {
1516
+ margin-left: $de-prop-style-padding;
1517
+ margin-right: 0;
1518
+ }
1519
+ }
1520
+ .e-de-prop-fill-label {
1521
+ //margin-left: 10.3px;
1522
+ @if $skin-name =='Material3' {
1523
+ margin-right: 16px;
1524
+ }
1525
+ @else {
1526
+ margin-right: 8px;
1527
+ }
1528
+ }
1529
+ .e-de-prop-fill-label.e-de-rtl {
1530
+ @if $skin-name =='Material3' {
1531
+ margin-left: 16px;
1532
+ }
1533
+ @else {
1534
+ margin-left: 8px;
1535
+ }
1536
+ margin-right: 0;
1537
+ }
1538
+
1539
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1540
+ height: 36px !important;
1541
+ }
1542
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1543
+ height: 42px !important;
1544
+ }
1545
+
1546
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn>button {
1547
+ @if $skin-name =='bootstrap5' {
1548
+ width: 39px;
1549
+ height: 38px;
1550
+ }
1551
+ @else if $skin-name == 'Material3' {
1552
+ width: 36px;
1553
+ height: 36px;
1554
+ }
1555
+ @else {
1556
+ width: 38px;
1557
+ height: 38px;
1558
+ }
1559
+ }
1560
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn>button {
1561
+ height: 42px;
1562
+ width: $de-border-btn-width-big;
1563
+ }
1564
+ .e-de-border-clr-picker .e-split-btn-wrapper>button:first-child {
1565
+ @if $skin-name=='Material3' {
1566
+ width: 64px;
1567
+ }
1568
+ @else {
1569
+ width: 70px;
1570
+ }
1571
+ }
1572
+ .e-documenteditor-optionspane {
1573
+ @if $skin-name=='Material3' {
1574
+ background: $de-background-color;
1575
+ }
1576
+ }
1577
+ @if $skin-name=='tailwind' {
1578
+ .e-de-prop-fill-label {
1579
+ font-size: 16px;
1580
+ line-height: 24px;
1581
+ color: $de-panel-header-color;
1582
+ }
1583
+ .e-documenteditorcontainer {
1584
+ .e-tab .e-content .e-item {
1585
+ padding: 0;
1586
+ }
1587
+ }
1588
+ }
1589
+ .e-rtl {
1590
+ .e-listview .e-list-icon {
1591
+ height: 24px;
1592
+ width: 16px;
1593
+ margin-left: $e-de-ctnr-break-listview-margin-left;
1594
+ }
1595
+ .e-de-listview-icon {
1596
+ height: auto;
1597
+ width: auto;
1598
+ line-height: 22px;
1599
+ margin-left: $e-de-ctnr-break-listview-margin-left;
1600
+ }
1601
+ }
1602
+ .e-bigger {
1603
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' or $skin-name =='bootstrap4' {
1604
+ .de-split-button>div:first-child {
1605
+ margin-right: 0;
1606
+ }
1607
+ }
1608
+ @else {
1609
+ .de-split-button>div:first-child {
1610
+ margin-right: $de-list-button-margin-right-bigger;
1611
+ }
1612
+ }
1613
+ .e-de-border-clr-picker .e-split-btn-wrapper>button:first-child {
1614
+ @if $skin-name=='Material3' {
1615
+ width: 60px;
1616
+ }
1617
+ @else {
1618
+ width: 66px;
1619
+ }
1620
+ }
1621
+ .e-de-prop-fill-label {
1622
+ margin-left: 0;
1623
+ margin-right: 9.8px;
1624
+ }
1625
+ .e-de-prop-fill-label.e-de-rtl {
1626
+ margin-left: 9.8px;
1627
+ margin-right: 0px;
1628
+ }
1629
+ // .e-de-cell-text-box {
1630
+ // margin-right: 16px;
1631
+ // }
1632
+ .e-rtl {
1633
+ .e-de-cell-text-box {
1634
+ margin-left: 16px;
1635
+ margin-right: 0;
1636
+ }
1637
+ }
1638
+ .e-de-cell-div {
1639
+ //margin-left: 16px;
1640
+ @if $skin-name =='bootstrap5' {
1641
+ button {
1642
+ width: 45px !important;
1643
+ }
1644
+ }
1645
+ }
1646
+
1647
+ .e-de-color-picker {
1648
+ height: $de-border-size-button-height-bg;
1649
+ width: $de-border-size-button-width-bg;
1650
+ }
1651
+ .e-de-border-size-button {
1652
+ height: $de-border-size-button-height-bg;
1653
+ margin-top: $de-table-prop-border-margin;
1654
+ width: $de-border-size-button-width-bg;
1655
+ }
1656
+
1657
+ .e-de-stylediv {
1658
+ padding-left: 16px;
1659
+ }
1660
+ .e-de-stylediv-rtl {
1661
+ padding-right: 16px;
1662
+ }
1663
+ .e-de-tool-ctnr-properties-pane {
1664
+ display: flex;
1665
+ height: $de-tool-ctnr-editor-height-big;
1666
+ min-height: 200px;
1667
+ width: 100%;
1668
+ }
1669
+ .e-de-ctnr-properties-pane {
1670
+ display: flex;
1671
+ height: $de-ctnr-editor-height-big;
1672
+ width: 100%;
1673
+ }
1674
+ .e-de-ctn {
1675
+ background-color: $de-ctnr-bg-clr;
1676
+ border: 1px solid $de-panel-border;
1677
+ height: $de-ctnr-height;
1678
+ position: relative;
1679
+ width: 100%;
1680
+ }
1681
+ .e-de-ctnr-toolbar {
1682
+ display: flex;
1683
+ height: $de-ctnr-tlbt-height-big;
1684
+ width: 100%;
1685
+ }
1686
+ .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
1687
+ .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
1688
+ border: 0;
1689
+ }
1690
+ .e-de-pane {
1691
+ border-left: 1px solid $de-panel-border;
1692
+ }
1693
+ .e-de-pane-rtl {
1694
+ border-right: 1px solid $de-panel-border;
1695
+ }
1696
+ @if $skin-name=='material' {
1697
+ .e-de-pane>div button:not(.e-primary),
1698
+ .e-de-pane-rtl>div button:not(.e-primary) {
1699
+ background-color: $de-panel-btn-bg-clr;
1700
+ }
1701
+ }
1702
+ .e-de-ctnr-segment {
1703
+ margin-bottom: $de-ctnr-margin-bottom-big;
1704
+ }
1705
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or $skin-name=='bootstrap5' {
1706
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
1707
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
1708
+ margin-right: $de-pane-margin-right-big;
1709
+ }
1710
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
1711
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
1712
+ margin-left: $de-pane-margin-right-big;
1713
+ margin-right: 0;
1714
+ }
1715
+ }
1716
+ @if $skin-name=='bootstrap-dark' {
1717
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
1718
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
1719
+ margin-right: $de-pane-margin-right-big;
1720
+ }
1721
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
1722
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
1723
+ margin-left: $de-pane-margin-right-big;
1724
+ margin-right: 0;
1725
+ }
1726
+ }
1727
+
1728
+ .e-de-ctnr-segment>div:first-child:not(.e-rtl),
1729
+ .e-de-ctnr-segment-list>div:last-child:not(.e-rtl),
1730
+ .e-de-ctnr-segment>button:first-child:not(.e-rtl) {
1731
+ margin-right: $de-pane-margin-right-big;
1732
+ }
1733
+
1734
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>div:first-child,
1735
+ .e-de-ctnr-segment-list.e-de-ctnr-segment-list-rtl>div:last-child,
1736
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>button:first-child {
1737
+ margin-left: $de-pane-margin-right-big;
1738
+ margin-right: 0;
1739
+ }
1740
+ .e-de-tlbr-wrapper {
1741
+ background-color: $de-prpty-btn-bg-clr;
1742
+ height: $de-ctnr-tlbt-height-big;
1743
+ width: $de-ctnr-tlbr-width;
1744
+ }
1745
+ .e-de-ctnr-prop-label {
1746
+ color: $de-panel-header-color;
1747
+ display: inline-block;
1748
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1749
+ font-size: 16px;
1750
+ }
1751
+ @else {
1752
+ font-size: $de-panel-header-size;
1753
+ }
1754
+ font-weight: 500;
1755
+ letter-spacing: 0.05px;
1756
+ margin-bottom: $de-ctnr-margin-bottom-big;
1757
+ opacity: 0.87;
1758
+ @if $skin-name=='tailwind' {
1759
+ line-height: 1.5;
1760
+ }
1761
+ }
1762
+ .e-de-table-prop-label {
1763
+ margin-left: 14.5px;
1764
+ }
1765
+ .e-de-table-prop-label.e-de-rtl {
1766
+ margin-left: 0;
1767
+ margin-right: 14.5px;
1768
+ }
1769
+ .e-de-toolbar.e-toolbar .e-toolbar-items {
1770
+ height: $de-ctnr-tlbt-height-big;
1771
+ .e-toolbar-item.e-de-separator {
1772
+ margin: $de-ctrnr-tblr-separator-margin-big;
1773
+ }
1774
+ .e-toolbar-item.e-de-toolbar-btn-start {
1775
+ margin-left: $de-tlbr-margin-first-big !important;
1776
+ margin-right: $de-tlbr-margin-right-big;
1777
+ }
1778
+ .e-toolbar-item.e-de-toolbar-btn-middle {
1779
+ margin-left: $de-tlbr-margin-right-big;
1780
+ margin-right: $de-tlbr-margin-right-big;
1781
+ }
1782
+ .e-toolbar-item.e-de-toolbar-btn-end {
1783
+ margin-left: $de-tlbr-margin-right-big;
1784
+ margin-right: $de-tlbr-margin-first-big;
1785
+ }
1786
+ .e-toolbar-item.e-de-image-focus :focus {
1787
+ background-color: $de-toggle-bg-color;
1788
+ }
1789
+ }
1790
+ @if $skin-name=='bootstrap' {
1791
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1792
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1793
+ padding: 0 1px;
1794
+ padding-bottom: 6px;
1795
+ #{if(&, '&', '*')}:focus {
1796
+ padding: 0;
1797
+ padding-bottom: 6px;
1798
+ }
1799
+ #{if(&, '&', '*')}:active {
1800
+ padding: 0;
1801
+ padding-bottom: 6px;
1802
+ }
1803
+ #{if(&, '&', '*')}:hover {
1804
+ padding: 0;
1805
+ padding-bottom: 6px;
1806
+ }
1807
+ }
1808
+ }
1809
+ @if $skin-name !='bootstrap' {
1810
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1811
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1812
+ padding: 0;
1813
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1814
+ #{if(&, '&', '*')}:focus {
1815
+ padding: 0;
1816
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1817
+ }
1818
+ #{if(&, '&', '*')}:active {
1819
+ padding: 0;
1820
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1821
+ }
1822
+ #{if(&, '&', '*')}:hover {
1823
+ padding: 0;
1824
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1825
+ }
1826
+ }
1827
+ }
1828
+ @if $skin-name=='bootstrap4' {
1829
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1830
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1831
+ padding: 0 1px;
1832
+ padding-bottom: 6px;
1833
+ #{if(&, '&', '*')}:focus {
1834
+ padding: 0;
1835
+ padding-bottom: 6px;
1836
+ }
1837
+ #{if(&, '&', '*')}:active {
1838
+ padding: 0;
1839
+ padding-bottom: 6px;
1840
+ }
1841
+ #{if(&, '&', '*')}:hover {
1842
+ padding: 0;
1843
+ padding-bottom: 6px;
1844
+ }
1845
+ }
1846
+ }
1847
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
1848
+ padding: 0 !important;
1849
+ }
1850
+ .e-de-overlay {
1851
+ height: 100%;
1852
+ opacity: 0.5;
1853
+ pointer-events: none;
1854
+ touch-action: none;
1855
+ }
1856
+ .e-de-ctnr-properties-pane-btn {
1857
+ @if $skin-name=='Material3' {
1858
+ width: 78px;
1859
+ }
1860
+ @else {
1861
+ width: 75px;
1862
+ }
1863
+ }
1864
+ .e-de-ctnr-properties-pane-btn {
1865
+ .e-btn {
1866
+ background: $de-prpty-btn-bg-clr;
1867
+ border-radius: 0;
1868
+ box-shadow: none;
1869
+ min-height: 100%;
1870
+ min-width: 100%;
1871
+ #{if(&, '&', '*')}:focus {
1872
+ box-shadow: none;
1873
+ }
1874
+ #{if(&, '&', '*')}:active {
1875
+ box-shadow: none;
1876
+ }
1877
+ #{if(&, '&', '*')}:hover {
1878
+ box-shadow: none;
1879
+ }
1880
+ }
1881
+ }
1882
+ .e-de-showhide-btn {
1883
+ border: 0;
1884
+ height: $de-ctnr-tlbt-height-big;
1885
+ }
1886
+ .e-de-showhide-btn-rtl {
1887
+ border: 0;
1888
+ height: $de-ctnr-tlbt-height-big;
1889
+ }
1890
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1891
+ padding: $de-ctrnr-tblr-item-padding;
1892
+ }
1893
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1894
+ display: table;
1895
+ @if $skin-name=='material' {
1896
+ font-size: 13px;
1897
+ }
1898
+ @if $skin-name=='material3' {
1899
+ font-size: $text-base;
1900
+ }
1901
+ @else if $skin-name=='tailwind' {
1902
+ font-size: 14px;
1903
+ line-height: 1.5;
1904
+ }
1905
+ @else if $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
1906
+ font-size: 16px;
1907
+ }
1908
+ @else {
1909
+ font-size: 12px !important;
1910
+ }
1911
+ margin: $de-ctrnr-tblr-item-margin-big;
1912
+ padding: 0;
1913
+ white-space: normal;
1914
+ }
1915
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
1916
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
1917
+ @if $skin-name=='material' {
1918
+ font-size: 16px;
1919
+ }
1920
+ padding: 0;
1921
+ }
1922
+ .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1923
+ box-shadow: none;
1924
+ height: $de-group-btn-hgt-big;
1925
+ @if $skin-name=='bootstrap5' {
1926
+ padding-left: 1px;
1927
+ }
1928
+ #{if(&, '&', '*')}:focus {
1929
+ box-shadow: none;
1930
+ }
1931
+ #{if(&, '&', '*')}:active {
1932
+ box-shadow: none;
1933
+ }
1934
+ #{if(&, '&', '*')}:hover {
1935
+ box-shadow: none;
1936
+ }
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
+ }
1956
+ .e-de-ctnr-group-btn button {
1957
+ box-shadow: none;
1958
+ height: $de-group-btn-hgt-big;
1959
+ #{if(&, '&', '*')}:focus {
1960
+ box-shadow: none;
1961
+ }
1962
+ #{if(&, '&', '*')}:active {
1963
+ box-shadow: none;
1964
+ }
1965
+ #{if(&, '&', '*')}:hover {
1966
+ box-shadow: none;
1967
+ }
1968
+ }
1969
+ @if $skin-name !='tailwind' {
1970
+ .e-de-property-div-padding {
1971
+ border-bottom: 0.5px solid $de-pane-separator;
1972
+ @if $skin-name =='FluentUI' {
1973
+ padding: 24px;
1974
+ }
1975
+ @else {
1976
+ padding: 16px;
1977
+ }
1978
+ }
1979
+ .e-de-font-clr-picker>div button,
1980
+ .e-de-font-clr-picker>button {
1981
+ @if $skin-name=='bootstrap5' {
1982
+ width:43px;
1983
+ }
1984
+ @else {
1985
+ width: auto;
1986
+ }
1987
+ }
1988
+ }
1989
+ .e-de-ctnr-dropdown-ftr {
1990
+ border-top: 1px solid $de-pane-separator;
1991
+ color: $de-panel-header-color;
1992
+ cursor: pointer;
1993
+ display: block;
1994
+ font-size: 12px;
1995
+ line-height: 40px;
1996
+ text-indent: 1.2em;
1997
+ }
1998
+ .e-de-char-fmt-btn>button {
1999
+ width: 38.5px;
2000
+ }
2001
+ .e-de-btn-hghlclr>button:first-child {
2002
+ padding: 0 6px !important;
2003
+ }
2004
+ .e-de-ctnr-hglt-color {
2005
+ font-size: 12px;
2006
+ font-weight: 400;
2007
+ height: $de-hlt-clr-height-bigger !important;
2008
+ width: $de-hlt-clr-height-bigger !important;
2009
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='tailwind' {
2010
+ border-radius: 4px;
2011
+ }
2012
+ }
2013
+
2014
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' {
2015
+ .e-de-font-clr-picker>div div button {
2016
+ width: 38px;
2017
+ }
2018
+ }
2019
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' {
2020
+ .e-de-font-clr-picker>div div button {
2021
+ width: 38px;
2022
+ }
2023
+ }
2024
+ .e-de-ctnr-list {
2025
+ font-size: $de-bullet-icon-font-size;
2026
+ vertical-align: top;
2027
+ }
2028
+ .e-de-image-property {
2029
+ padding-left: 32px;
2030
+ }
2031
+ .e-de-img-prty-span {
2032
+ color: $de-font-color;
2033
+ left: 10px;
2034
+ position: absolute;
2035
+ top: $de-img-span-top-big;
2036
+ }
2037
+ .e-btn-toggle {
2038
+ background-color: $de-toggle-bg-color !important;
2039
+ box-shadow: $de-toggle-btn-border !important;
2040
+ @if $skin-name=='fabric' {
2041
+ border-color: $de-toggle-bg-color !important;
2042
+ }
2043
+ outline: $de-toggle-btn-outline;
2044
+ outline-offset: 0;
2045
+ #{if(&, '&', '*')}:hover {
2046
+ background-color: $de-toggle-bg-color !important;
2047
+ @if $skin-name=='fabric' {
2048
+ border-color: $de-toggle-bg-color !important;
2049
+ }
2050
+ outline: $de-toggle-btn-outline;
2051
+ outline-offset: 0;
2052
+ box-shadow: $de-toggle-btn-border !important;
2053
+ }
2054
+ }
2055
+ .e-de-toc-template1 {
2056
+ background: $de-ctnr-bg-clr;
2057
+ border: 1px solid $de-panel-border;
2058
+ color: $de-panel-header-color;
2059
+ height: 129px;
2060
+ margin-left: 78px;
2061
+ width: 94px;
2062
+ }
2063
+ .e-de-toc-template1-content1 {
2064
+ font-size: 10px;
2065
+ height: 11px;
2066
+ margin-left: 5.4px;
2067
+ margin-top: 6.7px;
2068
+ width: $de-toc-template-content1;
2069
+ }
2070
+ .e-de-toc-template1-content2 {
2071
+ font-size: 8px;
2072
+ height: 9px;
2073
+ margin-left: 20.4px;
2074
+ margin-top: 5.7px;
2075
+ width: $de-toc-template-content2;
2076
+ }
2077
+ .e-de-toc-template1-content3 {
2078
+ font-size: 7px;
2079
+ height: 8px;
2080
+ margin-left: 28.4px;
2081
+ margin-top: 6.7px;
2082
+ width: $de-toc-template-content3;
2083
+ }
2084
+ .e-de-toc-optionsdiv {
2085
+ margin-bottom: 11.5px;
2086
+ margin-left: 5.5px;
2087
+ margin-top: 15.5px;
2088
+ }
2089
+ .e-de-toc-optionsdiv.e-de-rtl {
2090
+ margin-right: 5.5px;
2091
+ margin-left: 0;
2092
+ }
2093
+ @if $skin-name !='tailwind' {
2094
+ .e-de-prop-sub-label {
2095
+ font-size: 13px;
2096
+ margin-bottom: 8.5px;
2097
+ }
2098
+ }
2099
+ .e-de-btn-cancel {
2100
+ margin-left: 10px;
2101
+ }
2102
+ .e-de-status-bar {
2103
+ background: $de-ctnr-bg-clr;
2104
+ //border-bottom: 1px solid $de-panel-border;
2105
+ display: flex;
2106
+ @if $skin-name !='Material3' {
2107
+ padding-top: $e-de-status-bar-big-padding-top;
2108
+ }
2109
+ width: 100%;
2110
+ }
2111
+ .e-de-statusbar-zoom {
2112
+ border: 0;
2113
+ color: $de-font-color;
2114
+ float: right;
2115
+ @if $skin-name =='Material3' {
2116
+ height: 40px;
2117
+ background: $de-ctnr-bg-clr;
2118
+ }
2119
+ @else {
2120
+ height: 34px;
2121
+ background-color: $de-ctnr-bg-clr;
2122
+ }
2123
+ }
2124
+ @if $skin-name !='tailwind' {
2125
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
2126
+ line-height: 25px;
2127
+ @if $skin-name !='material' {
2128
+ padding: 0 5px !important;
2129
+ }
2130
+ }
2131
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
2132
+ @if $skin-name !='material' {
2133
+ height: 0;
2134
+ }
2135
+ @if $skin-name == 'material' {
2136
+ height: 6px;
2137
+ }
2138
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
2139
+ line-height: .5;
2140
+ }
2141
+ @else {
2142
+ line-height: 0;
2143
+ }
2144
+ @if $skin-name =='Material3' {
2145
+ line-height: 0.8;
2146
+ }
2147
+ }
2148
+ }
2149
+ .e-listview .e-list-icon {
2150
+ height: 24px;
2151
+ width: 16px;
2152
+ margin-right: $e-de-ctnr-break-listview-margin-right-big;
2153
+ }
2154
+ .e-de-listview-icon {
2155
+ height: auto;
2156
+ width: auto;
2157
+ line-height: 22px;
2158
+ margin-right: $e-de-ctnr-break-listview-margin-right-big;
2159
+ }
2160
+ .e-rtl {
2161
+ .e-listview .e-list-icon {
2162
+ height: 24px;
2163
+ width: 16px;
2164
+ margin-left: $e-de-ctnr-break-listview-margin-left-big;
2165
+ }
2166
+ .e-de-listview-icon {
2167
+ height: auto;
2168
+ width: auto;
2169
+ line-height: 22px;
2170
+ margin-left: $e-de-ctnr-break-listview-margin-left-big;
2171
+ }
2172
+ }
2173
+ }
2174
+ }
2175
+
2176
+ .e-de-ctn .e-de-bzr-button {
2177
+ @if $skin-name !='Material3' {
2178
+ @if $skin-name!='tailwind' and $skin-name!='tailwind-dark' and $skin-name !='bootstrap5' {
2179
+ font-size: 12px;
2180
+ }
2181
+ @if $skin-name !='bootstrap4' and $skin-name !='bootstrap5' {
2182
+ font-weight: 400;
2183
+ }
2184
+
2185
+ background: $e-de-bzr-button-bg-color;
2186
+ @if $skin-name!='tailwind' and $skin-name!='tailwind-dark' and $skin-name !='material' and $skin-name !='material-dark' {
2187
+ height: 100%;
2188
+ }
2189
+ @if $skin-name !='fabric'and $skin-name !='material' and $skin-name !='material-dark' {
2190
+ color: $e-de-bzr-button-font-color;
2191
+ }
2192
+ }
2193
+
2194
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' {
2195
+ border: 1px solid $e-de-bzr-button-border-color;
2196
+ }
2197
+ @if $skin-name=='highcontrast' or $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' or $skin-name=='fabric' or $skin-name=='fabric-dark' {
2198
+ box-shadow: none;
2199
+ border: none;
2200
+ }
2201
+ @if $skin-name=='highcontrast' {
2202
+ border: 2px solid $e-de-bzr-button-border-color;
2203
+ }
2204
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' {
2205
+ padding-bottom: 6px;
2206
+ }
2207
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
2208
+ border: none;
2209
+ height: calc(100% - 10px);
2210
+ line-height: 1.3 !important;
2211
+ padding: 10px 6px 10px 6px !important;
2212
+ font-size: 14px !important;
2213
+ }
2214
+ }
2215
+ @if $skin-name =='fabric' {
2216
+ .e-de-ctn .e-de-bzr-button:focus {
2217
+ outline: none;
2218
+ }
2219
+ }
2220
+ @if $skin-name !='material' and $skin-name !='material-dark' {
2221
+ .e-de-ctn .e-de-bzr-button:hover {
2222
+ background: $e-de-bzr-button-hover-bg-color;
2223
+ border: $e-de-bzr-button-hover-border;
2224
+ border-radius: $e-de-bzr-button-hover-border-radius;
2225
+ @if $skin-name !='tailwind' and $skin-name !='tailwind-dark' {
2226
+ color: $e-de-bzr-button-hover-font-color;
2227
+ }
2228
+ }
2229
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
2230
+ .e-de-ctn .e-de-bzr-button:hover .e-btn-icon {
2231
+ color: $e-de-bzr-button-hover-font-color;
2232
+ }
2233
+ }
2234
+ }
2235
+ @if $skin-name !='bootstrap' and $skin-name!='bootstrap-dark' and $skin-name!='tailwind' and $skin-name!='tailwind-dark' {
2236
+ .e-de-ctn .e-de-bzr-button:active {
2237
+ @if $skin-name !='bootstrap4' {
2238
+ box-shadow: none;
2239
+ }
2240
+ @if $skin-name=='fabric' or $skin-name=='highcontrast' {
2241
+ border-radius: 0;
2242
+ }
2243
+ @if $skin-name !='material' and $skin-name !='material-dark' {
2244
+ background-color: $e-de-bzr-button-active-bg-color;
2245
+ border-color: $e-de-bzr-button-active-border-color;
2246
+ color: $e-de-bzr-button-active-font-color;
2247
+ }
2248
+ }
2249
+ @if $skin-name=='highcontrast' {
2250
+ .e-de-ctn .e-de-bzr-button:active .e-btn-icon {
2251
+ color: $e-de-bzr-button-active-font-color;
2252
+ }
2253
+ }
2254
+ }
2255
+
2256
+
2257
+ @if $skin-name=='material' or $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='fabric' or $skin-name=='highcontrast' or $skin-name=='bootstrap5' or $skin-name=='FluentUI' or $skin-name=='Material3' {
2258
+ .e-de-ctn .e-de-bzr-button {
2259
+ @if $skin-name!='bootstrap5' and $skin-name!='FluentUI' and $skin-name != 'Material3' {
2260
+ font-size: 12px;
2261
+ }
2262
+ @if $skin-name !='bootstrap4' {
2263
+ font-weight: 400;
2264
+ }
2265
+ @if $skin-name=='FluentUI' or $skin-name == 'Material3' {
2266
+ font-size: 14px;
2267
+ border: none;
2268
+ }
2269
+ @if $skin-name !='material' {
2270
+ background: $e-de-bzr-button-bg-color;
2271
+ @if $skin-name !='Material3' {
2272
+ height: 100%;
2273
+ @if $skin-name !='fabric' {
2274
+ color: $e-de-bzr-button-font-color;
2275
+ }
2276
+ }
2277
+ }
2278
+ @if $skin-name =='Material3' {
2279
+ height: calc(100% - 10px);
2280
+ line-height: 16px;
2281
+ font-size: $de-toolbar-font-size !important;
2282
+ }
2283
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap' {
2284
+ border: 1px solid $e-de-bzr-button-border-color;
2285
+ }
2286
+ @if $skin-name=='bootstrap5' {
2287
+ border: none;
2288
+ line-height: 16px !important;
2289
+ }
2290
+ @if $skin-name=='highcontrast' or $skin-name=='bootstrap' or $skin-name=='bootstrap5' {
2291
+ box-shadow: none;
2292
+ }
2293
+ @if $skin-name=='highcontrast' {
2294
+ border: 2px solid $e-de-bzr-button-border-color;
2295
+ }
2296
+ @if $skin-name=='bootstrap' {
2297
+ padding-bottom: 6px;
2298
+ }
2299
+ }
2300
+ @if $skin-name=='fabric' {
2301
+ .e-de-ctn .e-de-bzr-button:focus {
2302
+ outline: none;
2303
+ }
2304
+ }
2305
+ @if $skin-name !='material' {
2306
+ .e-de-ctn .e-de-bzr-button:hover {
2307
+ background: $e-de-bzr-button-hover-bg-color;
2308
+ border: $e-de-bzr-button-hover-border;
2309
+ border-radius: $e-de-bzr-button-hover-border-radius;
2310
+ color: $e-de-bzr-button-hover-font-color;
2311
+ }
2312
+ @if $skin-name=='bootstrap4' {
2313
+ .e-de-ctn .e-de-bzr-button:hover .e-btn-icon {
2314
+ color: $e-de-bzr-button-hover-font-color;
2315
+ }
2316
+ }
2317
+ }
2318
+ @if $skin-name !='bootstrap' {
2319
+ .e-de-ctn .e-de-bzr-button:active {
2320
+ @if $skin-name !='bootstrap4' {
2321
+ box-shadow: none;
2322
+ }
2323
+ @if $skin-name=='fabric' or $skin-name=='highcontrast' {
2324
+ border-radius: 0;
2325
+ }
2326
+ @if $skin-name !='material' {
2327
+ background-color: $e-de-bzr-button-active-bg-color;
2328
+ border-color: $e-de-bzr-button-active-border-color;
2329
+ color: $e-de-bzr-button-active-font-color;
2330
+ }
2331
+ }
2332
+ @if $skin-name=='highcontrast' {
2333
+ .e-de-ctn .e-de-bzr-button:active .e-btn-icon {
2334
+ color: $e-de-bzr-button-active-font-color;
2335
+ }
2336
+ }
2337
+ }
2338
+ }
2339
+
2340
+ .e-de-ctn {
2341
+ .e-de-ctnr-toolbar {
2342
+ .e-de-bzr-button {
2343
+ @if $skin-name == 'FluentUI' {
2344
+ font-size: 14px;
2345
+ }
2346
+ .e-btn-icon {
2347
+ font-size: $e-de-bzr-btn-font-size;
2348
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
2349
+ padding-bottom: 4px !important;
2350
+ }
2351
+ @if $skin-name == 'FluentUI' {
2352
+ padding-bottom: 2px;
2353
+ }
2354
+ }
2355
+ }
2356
+
2357
+ .e-de-bzr-break.e-de-bzr-button {
2358
+ @if $skin-name=='bootstrap4' {
2359
+ line-height: 23px !important;
2360
+ }
2361
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
2362
+ padding-top: 9px !important;
2363
+ padding-bottom: 23px !important;
2364
+ }
2365
+ @if $skin-name=='material' or $skin-name=='material-dark' {
2366
+ height: calc(100% - 10px);
2367
+ line-height: 23px;
2368
+ }
2369
+ @if $skin-name =='bootstrap5' {
2370
+ .e-btn-icon {
2371
+ margin-top: -11px;
2372
+ }
2373
+ }
2374
+ @if $skin-name == 'FluentUI' {
2375
+ padding-top: 0 !important;
2376
+ }
2377
+ }
2378
+ }
2379
+ }
2380
+
2381
+ .e-bigger {
2382
+ .e-de-ctn {
2383
+ .e-de-ctnr-toolbar {
2384
+ .e-de-bzr-button {
2385
+ @if $skin-name == 'FluentUI' and $skin-name == 'Material3' {
2386
+ font-size: 16px;
2387
+ }
2388
+ .e-btn-icon {
2389
+ font-size: $e-de-bzr-btn-font-size-big;
2390
+ @if $skin-name =='bootstrap5' or $skin-name == 'FluentUI'{
2391
+ padding-bottom: 4px;
2392
+ }
2393
+ }
2394
+ }
2395
+
2396
+ .e-de-bzr-break.e-de-bzr-button {
2397
+ @if $skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'Material3'{
2398
+ padding-top: 11px !important;
2399
+ }
2400
+ @if $skin-name == 'FluentUI' {
2401
+ padding-top: 4px !important;
2402
+ }
2403
+ }
2404
+ }
2405
+ }
2406
+ }