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

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 +26 -12
  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 +548 -0
  23. package/styles/document-editor/_bootstrap-definition.scss +547 -0
  24. package/styles/document-editor/_bootstrap4-definition.scss +560 -0
  25. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  26. package/styles/document-editor/_bootstrap5-definition.scss +561 -0
  27. package/styles/document-editor/_fabric-dark-definition.scss +550 -0
  28. package/styles/document-editor/_fabric-definition.scss +549 -0
  29. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  30. package/styles/document-editor/_fluent-definition.scss +570 -0
  31. package/styles/document-editor/_fusionnew-definition.scss +561 -0
  32. package/styles/document-editor/_highcontrast-definition.scss +549 -0
  33. package/styles/document-editor/_highcontrast-light-definition.scss +2989 -0
  34. package/styles/document-editor/_layout.scss +224 -0
  35. package/styles/document-editor/_material-dark-definition.scss +566 -0
  36. package/styles/document-editor/_material-definition.scss +566 -0
  37. package/styles/document-editor/_material3-dark-definition.scss +1 -0
  38. package/styles/document-editor/_material3-definition.scss +561 -0
  39. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  40. package/styles/document-editor/_tailwind-definition.scss +558 -0
  41. package/styles/document-editor/_theme.scss +3561 -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 +141 -0
  80. package/styles/document-editor-container/_bootstrap-definition.scss +141 -0
  81. package/styles/document-editor-container/_bootstrap4-definition.scss +157 -0
  82. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  83. package/styles/document-editor-container/_bootstrap5-definition.scss +167 -0
  84. package/styles/document-editor-container/_definition.scss +12 -0
  85. package/styles/document-editor-container/_fabric-dark-definition.scss +146 -0
  86. package/styles/document-editor-container/_fabric-definition.scss +143 -0
  87. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  88. package/styles/document-editor-container/_fluent-definition.scss +168 -0
  89. package/styles/document-editor-container/_fusionnew-definition.scss +167 -0
  90. package/styles/document-editor-container/_highcontrast-definition.scss +144 -0
  91. package/styles/document-editor-container/_highcontrast-light-definition.scss +147 -0
  92. package/styles/document-editor-container/_layout.scss +89 -0
  93. package/styles/document-editor-container/_material-dark-definition.scss +145 -0
  94. package/styles/document-editor-container/_material-definition.scss +144 -0
  95. package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
  96. package/styles/document-editor-container/_material3-definition.scss +171 -0
  97. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  98. package/styles/document-editor-container/_tailwind-definition.scss +161 -0
  99. package/styles/document-editor-container/_theme.scss +2468 -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 -55
  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 -3745
  145. package/dist/ej2-angular-documenteditor.umd.js +0 -1257
  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,3561 @@
1
+ @include export-module('documenteditor-theme') {
2
+ /* stylelint-disable */
3
+ .e-de-background {
4
+ background-color: $de-background;
5
+ }
6
+ .e-de-column-label {
7
+ font-size: $de-border-dlg-settinglabels-fontsize;
8
+ font-weight: $de-border-dlg-border-label-fontweight;
9
+ padding-left: 20px;
10
+ padding-right: 20px;
11
+ }
12
+
13
+ .e-de-para-tab {
14
+ float: left;
15
+ }
16
+ .e-de-para-tab.e-rtl {
17
+ float: right;
18
+ }
19
+
20
+ .e-de-column-label.e-de-rtl {
21
+ font-size: $de-border-dlg-settinglabels-fontsize;
22
+ font-weight: $de-border-dlg-border-label-fontweight;
23
+ padding-left: 50px;
24
+ padding-right: 50px;
25
+ }
26
+ .e-de-ff-sub-header {
27
+ display: block;
28
+ font-size: 12px;
29
+ font-weight: $de-header-font-weight;
30
+ margin-top: 6px;
31
+ }
32
+
33
+ .e-de-check-exactnumbr-width {
34
+ width: $de-check-exactnumbr-width !important;
35
+ }
36
+
37
+ .e-de-ff-dlg-heading {
38
+ display: block;
39
+ // font-size: $de-para-dlg-heading-font-size;
40
+ font-weight: $de-para-dlg-heading-font-weight;
41
+ margin-bottom: $de-ff-dlg-heading-mrgn-btm;
42
+ @if $skin-name=='Material3' {
43
+ font-size: 14px;
44
+ }
45
+ @if $skin-name=='tailwind' {
46
+ color: $de-dlg-heading-main-header;
47
+ }
48
+ }
49
+ .e-de-ff-dlg-heading-small {
50
+ display: block;
51
+ // font-size: $de-para-dlg-small-heading-font-size;
52
+ font-weight: $de-para-dlg-heading-font-weight;
53
+ margin-bottom: $de-ff-dlg-hdg-small-mrgn-btm;
54
+ }
55
+ .e-de-ff-dlg-drpdwn-heading {
56
+ display: block;
57
+ font-size: $de-para-dlg-heading-font-size;
58
+ font-weight: $de-para-dlg-heading-font-weight;
59
+ margin-bottom: 8px;
60
+ @if $skin-name=='tailwind' {
61
+ color: $de-dlg-heading-main-header;
62
+ }
63
+ }
64
+ .e-de-ff-dlg-check {
65
+ display: block;
66
+ font-size: $de-para-dlg-heading-font-size;
67
+ font-weight: $de-para-dlg-heading-font-weight;
68
+ margin-bottom: -2px;
69
+ }
70
+ .e-de-div-seperate-dlg {
71
+ display: inline-flex;
72
+ margin-bottom: $de-ff-seperate-div-mrgn-btm;
73
+ width: 100%;
74
+ }
75
+ .e-de-ff-radio-div {
76
+ display: inline-flex;
77
+ margin-right: 16px;
78
+ }
79
+ .e-de-ff-radio-div.e-de-rtl {
80
+ margin-left: 16px;
81
+ margin-right: 0;
82
+ }
83
+ .e-de-ff-radio-scnd-div {
84
+ display: inline-flex;
85
+ margin-bottom: $de-ff-radio-scnd-div-mrgn-btm;
86
+ margin-right: 16px;
87
+ }
88
+ .e-de-ff-radio-scnd-div.e-de-rtl {
89
+ margin-left: 16px;
90
+ margin-right: 0;
91
+ }
92
+ .e-de-ff-dlg-lft-hlf {
93
+ margin-right: $de-ff-dlg-lft-hlf-mrgn-rgt;
94
+ width: $de-ff-dlg-lft-hlf-wdth;
95
+ }
96
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
97
+ margin-left: $de-ff-dlg-lft-hlf-mrgn-rgt;
98
+ margin-right: 0;
99
+ }
100
+ .e-de-ff-chck-exact {
101
+ margin-left: 15px;
102
+ margin-top: -6px;
103
+ }
104
+ .e-de-ff-chck-exact.e-de-rtl {
105
+ margin-left: 0;
106
+ margin-right: 15px;
107
+ }
108
+ .e-de-ff-dlg-rght-hlf {
109
+ width: 47.5%;
110
+ }
111
+ .e-de-ff-drpdwn-dlg-scndiv {
112
+ display: inline-flex;
113
+ height: 168px;
114
+ margin-bottom: $de-ff-drpdwn-dlg-scndiv-mrgn-botton;
115
+ width: 100%;
116
+ }
117
+ .e-de-cmt-avatar {
118
+ align-items: center;
119
+ display: flex;
120
+ width: $de-avatar-width;
121
+ }
122
+ .e-de-ff-cmt-avatar {
123
+ align-items: center;
124
+ border-radius: 50%;
125
+ color: $de-avatar-clr;
126
+ display: flex;
127
+ font-size: 12px;
128
+ height: $de-cmt-avatar-height;
129
+ justify-content: center;
130
+ letter-spacing: 0;
131
+ line-height: 12px;
132
+ opacity: 100%;
133
+ user-select: none;
134
+ width: $de-cmt-avatar-width;
135
+ z-index: 1;
136
+ }
137
+ .e-de-ff-drpdwn-listview {
138
+ margin-right: 12px;
139
+ width: 100%;
140
+ }
141
+ .e-de-ff-drpdwn-listview.e-de-rtl {
142
+ margin-left: 12px;
143
+ margin-right: 0;
144
+ }
145
+ .e-de-ff-drpdwn-mvup {
146
+ margin-right: 8px;
147
+ }
148
+ .e-de-ff-drpdwn-mvup.e-de-rtl {
149
+ margin-left: 8px;
150
+ margin-right: 0;
151
+ }
152
+ .e-de-drp-dwn-frst-div {
153
+ margin-bottom: $de-drp-dwn-frst-div-mrgn-btm;
154
+ width: 47.5%;
155
+ }
156
+ .e-de-result-list-block .e-de-search-result-hglt {
157
+ background: $search-result-highlight-bg-color;
158
+ border-bottom: 2px solid $search-result-hightlight-bdr-clr-hvr;
159
+ cursor: default;
160
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
161
+ }
162
+ .e-de-result-list-block .e-de-op-search-txt .e-de-op-search-word-text {
163
+ color: $search-result-hightlight-bdr-clr;
164
+ }
165
+ .e-de-search-result-item {
166
+ cursor: default;
167
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
168
+ word-break: break-word;
169
+ }
170
+ .e-de-search-result-item:hover {
171
+ border-bottom: 1px solid $search-result-hightlight-bdr-clr-hvr;
172
+ cursor: default;
173
+ }
174
+ .e-de-search-result-item:focus {
175
+ border-bottom: 2px solid $search-result-hightlight-bdr-clr-hvr;
176
+ cursor: default;
177
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
178
+ }
179
+ @if $skin-name !='tailwind' {
180
+ .e-de-search-tab-content .e-input-group .e-de-op-search-icon:focus {
181
+ border: 1px solid $search-icon-bdr-clr;
182
+ }
183
+ .e-de-op-search-icon:hover {
184
+ background: $search-icon-hvr;
185
+ }
186
+ .e-de-search-tab-content .e-input-group .e-de-op-search-close-icon:focus {
187
+ border: 1px solid $search-icon-bdr-clr;
188
+ border-right-width: 0;
189
+ }
190
+ .e-de-op-search-close-icon:hover {
191
+ background: $search-icon-hvr;
192
+ }
193
+ .e-spin-down:focus {
194
+ border: 1px solid $spin-down-bdr-clr;
195
+ border-right-width: 0;
196
+ }
197
+ .e-spin-down:hover {
198
+ background: $spin-down-hvr;
199
+ }
200
+ .e-spin-up:focus {
201
+ border: 1px solid $spin-up-bdr-clr;
202
+ border-right-width: 0;
203
+ }
204
+ .e-spin-up:hover {
205
+ background: $spin-up-hvr;
206
+ }
207
+ }
208
+ .e-de-toc-dlg-heading {
209
+ color: $de-dlg-heading-main-header;
210
+ display: block;
211
+ font-size: $de-toc-dlg-heading-font-size;
212
+ font-weight: $de-toc-dlg-heading-font-weight;
213
+ margin-bottom: $de-toc-title-bottom-margin;
214
+ }
215
+ .e-de-toc-dlg-main-heading {
216
+ color: $de-dlg-heading-main-header;
217
+ display: block;
218
+ font-size: $de-toc-dlg-heading-font-size;
219
+ font-weight: $de-toc-dlg-main-heading-font-weight;
220
+ margin-bottom: $de-title-bottom-margin;
221
+ }
222
+ .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
223
+ background-size: 100%;
224
+ }
225
+ .e-de-toc-reset-button {
226
+ margin-top: $de-toc-reset-button-margin-top;
227
+ }
228
+ .e-de-toc-reset-button.e-de-rtl {
229
+ margin-right: 0;
230
+ }
231
+ .e-de-toc-modify-button {
232
+ margin-left: $de-toc-modify-button-margin-left;
233
+ margin-top: $de-toc-modify-button-margin-top;
234
+ }
235
+ .e-de-toc-modify-button.e-de-rtl {
236
+ margin-left: 0;
237
+ margin-right: $de-toc-modify-button-margin-rtl;
238
+ }
239
+ .e-de-toc-dlg-container {
240
+ height: $de-toc-dlg-height;
241
+ width: $de-toc-dlg-width;
242
+ }
243
+ .e-de-toc-dlg-sub-container {
244
+ margin-bottom: $de-toc-sub-container-bottom;
245
+ }
246
+ .e-de-toc-list-view {
247
+ border: 1px solid $de-toc-list-view-border-color;
248
+ border-radius: $de-toc-styles-table-div-border-radius;
249
+ font-size: $de-toc-list-view-font-size;
250
+ height: $de-toc-list-view-height;
251
+ overflow-y: scroll;
252
+ }
253
+ .e-de-toc-list-view.e-de-rtl {
254
+ margin-left: 0;
255
+ }
256
+ .e-de-toc-dlg-sub-heading {
257
+ color: $de-dlg-heading-main-header;
258
+ display: block;
259
+ font-size: $de-toc-dlg-heading-font-size;
260
+ font-weight: $de-toc-dlg-heading-font-weight;
261
+ margin: $de-toc-dlg-sub-margin;
262
+ }
263
+ .e-de-toc-dlg-style-label {
264
+ margin-left: $de-toc-dlg-style-label-left;
265
+ margin-top: $de-toc-dlg-style-label-top;
266
+ }
267
+ .e-de-toc-dlg-style-label .e-de-rtl {
268
+ margin-left: 0;
269
+ margin-right: $de-toc-dlg-style-label-left;
270
+ }
271
+ .e-de-pagesetup-dlg-container {
272
+ height: $de-page-setup-dlg-height;
273
+ width: $de-page-setup-dlg-width;
274
+ }
275
+ .e-de-page-setup-ppty-tab {
276
+ border: $de-page-setup-ppty-tab-border;
277
+ }
278
+ .e-de-page-setup-dlg-sub-container {
279
+ margin-bottom: $de-page-setup-sub-container-bottom;
280
+ }
281
+ .e-de-page-setup-dlg-left-sub-container {
282
+ float: left;
283
+ position: relative;
284
+ top: $de-page-setup-dlg-left-container-top;
285
+ }
286
+ .e-de-page-setup-dlg-left-sub-container.e-de-rtl {
287
+ float: right;
288
+ }
289
+ .e-de-page-setup-dlg-right-sub-container {
290
+ float: right;
291
+ position: relative;
292
+ top: $de-page-setup-dlg-right-container-top;
293
+ }
294
+ .e-de-page-setup-dlg-right-sub-container.e-de-rtl {
295
+ float: left;
296
+ }
297
+ .e-de-page-setup-dlg-sub-header {
298
+ display: block;
299
+ font-size: $de-page-setup-margin-dia-common-font;
300
+ font-weight: $de-header-font-weight;
301
+ margin-bottom: $de-page-setup-margin-dia-common-margin-bottom;
302
+ margin-top: $de-page-setup-margin-dia-common-margin-top;
303
+ }
304
+ .e-de-page-setup-dlg-sub-title-header {
305
+ display: block;
306
+ font-size: $de-page-setup-margin-dia-common-font;
307
+ font-weight: $de-header-font-weight;
308
+ margin-bottom: $de-page-setup-margin-dia-common-margin-bottom;
309
+ margin-top: $de-page-setup-common-margin-top;
310
+ }
311
+ .e-de-page-setup-dlg-sub-container-port {
312
+ height: $de-page-setup-sub-container-height-style;
313
+ margin-bottom: $de-page-setup-sub-container-port-bottom;
314
+ }
315
+ .e-de-page-setup-dlg-sub-label {
316
+ font-size: $de-page-setup-dlg-sub-label-font-size;
317
+ font-weight: $de-page-setup-dlg-sub-label-font-weight;
318
+ @if $skin-name=='tailwind' {
319
+ color: $de-dlg-heading-main-header;
320
+ }
321
+ }
322
+ .e-de-page-setup-dlg-orientation-prop {
323
+ margin-top: $de-page-setup-dlg-orientation-prop-margin-top;
324
+ }
325
+ .e-de-page-setup-dlg-sub-size-container {
326
+ height: $de-page-setup-sub-size-container-height;
327
+ margin-bottom: $de-page-setup-sub-size-container-bottom;
328
+ }
329
+ .e-de-page-setup-dlg-layout-sub-container {
330
+ height: $de-page-setup-layout-sub-container-height;
331
+ margin-bottom: $de-page-setup-layout-sub-container-bottom;
332
+ position: relative;
333
+ top: $de-page-setup-layout-sub-container-top;
334
+ }
335
+ .e-de-page-setup-dlg-first-page-prop {
336
+ margin-bottom: 8px;
337
+ }
338
+ @if $skin-name !='tailwind' and $skin-name !='FluentUI' {
339
+ .e-de-page-setup-dlg-first-page-prop .e-label,
340
+ .e-de-page-setup-dlg-odd-or-even-prop .e-label {
341
+ font-size: $de-page-setup-checkbox-label-font-size;
342
+ }
343
+ .e-de-page-setup-dlg-first-page-prop .e-frame,
344
+ .e-de-page-setup-dlg-odd-or-even-prop .e-frame {
345
+ height: $de-checkbox-height;
346
+ line-height: $de-checkbox-line-height;
347
+ width: $de-checkbox-width;
348
+ }
349
+ }
350
+
351
+ .e-de-page-setup-dlg-left-layout-container {
352
+ float: left;
353
+ position: relative;
354
+ top: $de-page-setup-dlg-layout-container-top;
355
+ }
356
+ .e-de-page-setup-dlg-left-layout-container.e-de-rtl {
357
+ float: right;
358
+ }
359
+ .e-de-page-setup-dlg-right-layout-container {
360
+ float: right;
361
+ position: relative;
362
+ top: $de-page-setup-dlg-layout-container-top;
363
+ }
364
+ .e-de-page-setup-dlg-right-layout-container.e-de-rtl {
365
+ float: left;
366
+ }
367
+ .e-de-dlg-footer .e-btn {
368
+ margin-left: 10px;
369
+ }
370
+ .e-de-hyperlink-dlg-title {
371
+ font-size: 12px;
372
+ font-weight: $de-header-font-weight;
373
+ margin-bottom: $de-hyperlink-dlg-margin-bottom;
374
+ margin-top: $de-hyperlink-dlg-margin-top;
375
+ }
376
+ .e-de-hyperlink .e-de-hyperlink-dlg-input {
377
+ height: $de-hyperlink-dlg-input-height;
378
+ margin-bottom: $de-hyperlink-dlg-input-bottom;
379
+ width: $de-hyperlink-dlg-input-width;
380
+ }
381
+ .e-de-font-dlg-header {
382
+ display: flex;
383
+ font-size: 12px;
384
+ font-weight: $de-header-font-weight;
385
+ margin-bottom: $de-font-dlg-header-margin-bottom;
386
+ @if $skin-name=='tailwind' {
387
+ line-height: 18px;
388
+ }
389
+ }
390
+ .e-de-font-dlg-header-effects,
391
+ .e-de-font-dlg-header-font-color {
392
+ display: flex;
393
+ font-size: $de-font-dlg-font-size;
394
+ font-weight: $de-header-font-weight;
395
+ margin-bottom: $de-fnt-dlg-header-effects-mrgn-btm;
396
+ }
397
+ .e-de-font-dlg-main-header {
398
+ color: $de-dlg-heading-main-header;
399
+ font-size: 14px;
400
+ font-weight: $de-header-font-weight;
401
+ margin-right: $de-font-dlg-main-header-margin-right;
402
+ }
403
+ .e-de-font-dlg-cb-right {
404
+ margin-left: $e-de-font-dlg-cb-margin-right;
405
+ }
406
+ .e-de-font-dlg-cb-right.e-de-rtl {
407
+ margin-left: 0;
408
+ margin-right: $e-de-font-dlg-cb-margin-right;
409
+ }
410
+ .e-de-font-dlg-cb-right-div {
411
+ margin-left: 20px;
412
+ }
413
+ .e-de-dropdown {
414
+ margin-right: $de-dropdown-margin-right;
415
+ }
416
+ .e-de-restrict-pane{
417
+ border-right: 1px solid $de-op-border-clr;
418
+ padding-left: $de-op-padding-left;
419
+ padding-top: $de-op-padding-top;
420
+ padding-right: $de-op-padding-left;
421
+ position: relative;
422
+ width: 300px;
423
+ }
424
+ @if $skin-name =='FluentUI' {
425
+ .e-bigger {
426
+ .e-de-restrict-pane,
427
+ .e-de-op {
428
+ width: 300px;
429
+ }
430
+ }
431
+ }
432
+ .e-de-op {
433
+ border-right: 1px solid $de-op-border-clr;
434
+ padding-left: $de-op-padding-left;
435
+ padding-right: $de-op-padding-left;
436
+ position: relative;
437
+ width: 300px;
438
+ }
439
+ .e-de-op.e-de-rtl {
440
+ padding-left: 0;
441
+ padding-right: $de-op-padding-left;
442
+ }
443
+ .e-de-op-header {
444
+ color: $de-op-title-clr;
445
+ font-family: $de-op-header-font-family;
446
+ font-size: 15px;
447
+ font-weight: $de-op-header-font-weight;
448
+ margin-bottom: $de-op-header-bottm-margin;
449
+ padding-top: $de-op-header-padding-top;
450
+ @if $skin-name=='tailwind' {
451
+ line-height: 24px;
452
+ }
453
+ }
454
+ .e-de-op-header.e-de-rtl {
455
+ direction: rtl;
456
+ text-align: right;
457
+ }
458
+ .e-de-op-tab {
459
+ border: 0;
460
+ height: auto;
461
+ @if $skin-name=='tailwind' {
462
+ background: transparent;
463
+ }
464
+ }
465
+ .e-de-op-icon {
466
+ color: $de-op-icon-color;
467
+ @if $skin-name !='tailwind' {
468
+ height: 20px;
469
+ width: 20px;
470
+ }
471
+ }
472
+ .e-de-op-close-icon {
473
+ @if $skin-name !='bootstrap' {
474
+ color: $dialog-btn-clr;
475
+ }
476
+ }
477
+ .e-de-op-nav-btn {
478
+ @if $skin-name !='tailwind' {
479
+ height: $de-op-close-icon-width;
480
+ width: $de-op-close-icon-width;
481
+ }
482
+ }
483
+ .e-de-op-search-txt {
484
+ border-bottom: 1px solid $search-result-hightlight-bdr-item;
485
+ color: $de-dlg-heading-main-header;
486
+ font-size: 14px;
487
+ }
488
+ .e-de-op-search-txt .e-de-op-search-word {
489
+ color: $de-op-search-txt;
490
+ }
491
+ .e-de-op-more-less {
492
+ display: inline-flex;
493
+ margin-top: $de-op-more-less-mrgn-top;
494
+ }
495
+
496
+ @if $skin-name == "FluentUI" {
497
+ .e-de-rp-more-less{
498
+ .e-label{
499
+ font-size: 14px !important;
500
+ }
501
+ }
502
+ .e-bigger {
503
+ .e-de-op-more-less,
504
+ .e-de-rp-more-less {
505
+ .e-label {
506
+ font-size: 16px !important;
507
+ }
508
+ }
509
+ }
510
+ }
511
+
512
+ .e-de-op-replacetabcontentdiv {
513
+ margin-top: $de-op-more-less-mrgn-top;
514
+ }
515
+ label[for*="_wholeWord_e-de-ltr"] {
516
+ @if $skin-name == "FluentUI" {
517
+ left: 15px;
518
+ }
519
+ @else {
520
+ left: 35px;
521
+ }
522
+ }
523
+ label[for*="_wholeWord_e-de-rtl"] {
524
+ @if $skin-name == "FluentUI" {
525
+ right: 15px;
526
+ }
527
+ @else {
528
+ right: 35px;
529
+ }
530
+ }
531
+ .e-de-cell-dia-label-common {
532
+ display: inline-block;
533
+ font-size: $de-cell-margin-dia-common-font;
534
+ font-weight: $de-header-font-weight;
535
+ margin-bottom: $de-cell-margin-dia-common-margin-bottom;
536
+ margin-top: $de-cell-margin-dia-common-margin-top;
537
+ width: $de-cell-margin-dia-common-width;
538
+ }
539
+ .e-de-cell-dia-options-label {
540
+ //font-size: $de-cell-margin-dia-options-font;
541
+ font-weight: $de-para-dlg-heading-font-weight;
542
+ @if $skin-name=='tailwind' {
543
+ color: $de-dlg-heading-main-header;
544
+ }
545
+ }
546
+ .e-de-table-border-heading {
547
+ font-size: $de-border-dlg-border-label-fontsize;
548
+ font-weight: $de-border-dlg-border-label-font-weight;
549
+ padding-bottom: $de-border-dlg-border-label-paddingbottom;
550
+ @if $skin-name=='tailwind' {
551
+ color: $de-dlg-heading-main-header;
552
+ }
553
+ }
554
+ .e-de-table-setting-heading {
555
+ font-size: $de-border-dlg-setting-label-fontsize;
556
+ font-weight: $de-border-dlg-border-label-fontweight;
557
+ padding-bottom: $de-border-dlg-setting-label-paddingbottom;
558
+ }
559
+ .e-de-layout-setting-heading {
560
+ font-size: $de-border-dlg-setting-label-fontsize;
561
+ font-weight: $de-border-dlg-border-label-fontweight;
562
+ padding-bottom: $de-border-dlg-setting-label-paddingbottom;
563
+ }
564
+ .e-de-table-setting-labels-heading {
565
+ font-size: $de-border-dlg-settinglabels-fontsize;
566
+ font-weight: $de-border-dlg-border-label-fontweight;
567
+ margin-left: $de-table-alignment-label-margin-left;
568
+ }
569
+ .e-de-table-element-subheading {
570
+ font-size: $de-border-dlg-settinglabels-fontsize;
571
+ font-weight: $de-border-dlg-border-label-fontweight;
572
+ @if $skin-name=='tailwind' {
573
+ padding-bottom: 8px !important;
574
+ }
575
+ }
576
+ .e-de-border-dlg-preview-div {
577
+ border: $de-border-dlg-border-preview-div-width solid $de-border-dlg-border-preview-div-opacity;
578
+ width: 80px;
579
+ height: 80px;
580
+ }
581
+ .e-de-border-dlg-preview-inside-divs {
582
+ opacity: $de-border-dlg-preview-inside-divs-opacity;
583
+ }
584
+ .e-de-tablecell-dia-align-div {
585
+ border: $de-table-align-border-width solid $de-table-align-border-color;
586
+ display: inline-block;
587
+ height: $de-table-align-height;
588
+ margin-right: $de-table-align-margin-right;
589
+ width: $de-table-align-width;
590
+ }
591
+ .e-de-tablecell-dia-align-div.e-de-rtl {
592
+ margin-left: $de-table-align-margin-right;
593
+ margin-right: 0;
594
+ }
595
+ .e-de-table-dia-align-label {
596
+ display: inline-block;
597
+ font-size: $de-table-alignment-label-font-size;
598
+ @if $skin-name !='Material3' {
599
+ font-weight: $de-header-font-weight;
600
+ }
601
+ margin-left: $de-table-alignment-label-margin-left;
602
+ margin-top: $de-table-alignment-label-margin-top;
603
+ }
604
+ .e-de-table-dialog-separator-line {
605
+ background-color: $de-table-separator-line-color;
606
+ bottom: $de-table-separtor-line-top;
607
+ display: none;
608
+ height: $de-table-separator-line-height;
609
+ left: $de-table-separator-line-left;
610
+ margin-top: $de-table-dlg-separator-line-top;
611
+ position: absolute;
612
+ width: $de-table-separator-line-width;
613
+ }
614
+ .e-de-table-alignment-active {
615
+ border: 1px solid $de-table-align-active-color;
616
+ }
617
+ .e-de-table-dialog-options-label {
618
+ @if $skin-name =='Material3' {
619
+ font-size: $de-table-options-font-size;
620
+ font-weight: $de-table-options-font-weight;
621
+ padding-bottom: $de-table-options-padding-bottom;
622
+ }
623
+ // @if $skin-name=='tailwind' {
624
+ // color: $de-dlg-heading-main-header;
625
+ // }
626
+ }
627
+ .e-de-table-dialog-size-label {
628
+ padding-top: $de-table-options-padding-top !important;
629
+ @if $skin-name =='Material3' {
630
+ font-weight: 600;
631
+ font-size: 12px;
632
+ }
633
+ }
634
+
635
+ .e-de-list-ddl-header {
636
+ font-size: 14px;
637
+ font-weight: $de-list-dlg-header-font-weight;
638
+ margin-bottom: $de-list-dlg-header-margin-bottom;
639
+ margin-top: $de-list-dlg-header-margin-top;
640
+ @if $skin-name=='tailwind' {
641
+ color: $de-dlg-heading-main-header;
642
+ }
643
+ }
644
+ .e-de-list-ddl-header-list-level {
645
+ font-size: 14px;
646
+ font-weight: $de-list-dlg-header-font-weight;
647
+ margin-bottom: $de-list-dlg-header-margin-bottom;
648
+ @if $skin-name=='tailwind' {
649
+ color: $de-dlg-heading-main-header;
650
+ }
651
+ }
652
+ .e-de-tbl-dlg-footer {
653
+ padding-top: $de-tbl-dlg-footer;
654
+ }
655
+ .e-de-row-ht-top,
656
+ .e-de-cell-ht-top {
657
+ padding: 0 $de-table-row-cell-pdng;
658
+ @if $skin-name=='bootstrap5' or $skin-name=='tailwind' {
659
+ width: 144px;
660
+ }
661
+ @else {
662
+ width: 160px;
663
+ }
664
+ }
665
+ .e-de-ht-wdth-type {
666
+ margin-top: $de-hght-type-top;
667
+ width: 120px;
668
+ }
669
+ .e-de-row-ht-top.e-de-rtl,
670
+ .e-de-cell-ht-top.e-de-rtl {
671
+ margin-left: 0;
672
+ margin-right: $de-table-row-cell-pdng;
673
+ }
674
+ .e-de-cell-width-top {
675
+ margin-left: $de-cell-width-top-margin-left;
676
+ margin-top: $de-cell-width-top-margin-top;
677
+ }
678
+ .e-de-cell-width-top.e-de-rtl {
679
+ margin-left: 0;
680
+ margin-right: $de-cell-width-top-margin-left;
681
+ }
682
+ .e-de-tbl-dlg-border-btn {
683
+ float: right;
684
+ //margin-bottom: $de-tbl-dlg-border-btn-margin-bottom;
685
+ margin-top: $de-tbl-dlg-border-btn-margin-top;
686
+ }
687
+ .e-de-tbl-dlg-border-btn.e-de-rtl {
688
+ float: left;
689
+ margin-right: 0;
690
+ }
691
+ .e-de-table-border-setting.e-de-rtl {
692
+ right: 5px;
693
+ }
694
+ .e-de-tbl-dlg-op-btn {
695
+ left: $de-tbl-opt-btn-left;
696
+ position: absolute;
697
+ top: $de-tbl-opt-btn-top;
698
+ }
699
+ .e-de-insert-table-dlg-sub-header {
700
+ display: block;
701
+ font-size: 12px;
702
+ font-weight: $de-header-font-weight;
703
+ margin-bottom: $de-insert-table-title-bottom-margin;
704
+ margin-top: $de-insert-table-title-top-margin;
705
+ }
706
+ .e-de-insert-footnote-dlg-sub-header,
707
+ .e-de-insert-footnote-dlg-header {
708
+ display: block;
709
+ font-size: 12px;
710
+ font-weight: $de-header-font-weight;
711
+ margin-bottom: $de-insert-table-title-bottom-margin;
712
+ margin-top: $de-insert-table-title-top-margin;
713
+ }
714
+ .e-de-insert-footnote-dlg-header {
715
+ margin-bottom: $de-insert-footnote-dlg-header-mrg-btm;
716
+ }
717
+ .e-de-insert-table-dlg-input {
718
+ @if $skin-name == 'FluentUI' {
719
+ display: inline-block;
720
+ }
721
+ margin-bottom: $de-insert-table-dlg-input-bottom;
722
+ }
723
+ .e-de-list-ddl-subheader,
724
+ .e-de-list-ddl-subheaderbottom {
725
+ font-size: 12px;
726
+ font-weight: $de-list-dlg-subheader-font-weight;
727
+ margin-bottom: $de-list-dlg-subheader-margin-bottom;
728
+ margin-top: $de-list-dlg-subheader-margin-top;
729
+ }
730
+ .e-de-list-dlg-subdiv {
731
+ float: right;
732
+ margin-top: $e-de-list-subdiv-margin-top;
733
+ position: relative;
734
+ }
735
+ .e-de-list-dlg-subdiv.e-de-rtl {
736
+ float: left;
737
+ margin-top: $e-de-list-subdiv-margin-top-rtl;
738
+ }
739
+ .e-de-list-dlg-div {
740
+ float: right;
741
+ margin-top: $e-de-list-div-margin-top;
742
+ position: relative;
743
+ }
744
+ .e-de-list-dlg-div.e-de-rtl {
745
+ float: left;
746
+ margin-top: $e-de-list-div-margin-top-rtl;
747
+ }
748
+ .e-de-ok-button {
749
+ margin-right: $de-ok-insert-button-margin-right;
750
+ }
751
+ .e-de-ok-button.e-de-rtl {
752
+ margin-left: $de-ok-insert-button-margin-right;
753
+ }
754
+ .e-de-options-setter {
755
+ left: $de-options-buttons-left;
756
+ }
757
+ .e-de-op-close-icon:hover {
758
+ color: $de-op-btn-icon-hover-clr;
759
+ }
760
+ .e-de-tooltip {
761
+ background-color: $de-tooltip-bg-clr;
762
+ box-shadow: $de-tooltip-shadow;
763
+ color: $de-tooltip-color;
764
+ cursor: text;
765
+ display: table;
766
+ max-width: 200px;
767
+ padding: 5px;
768
+ word-wrap: break-word;
769
+ }
770
+ .e-de-form-popup {
771
+ background-color: $de-tooltip-bg-clr;
772
+ box-shadow: $de-tooltip-shadow;
773
+ color: $de-tooltip-color;
774
+ cursor: text;
775
+ max-width: 350px;
776
+ min-width: 300px;
777
+ padding: 16px;
778
+ position: absolute;
779
+ width: fit-content;
780
+ word-wrap: break-word;
781
+ }
782
+ .e-de-save,
783
+ .e-de-cancel {
784
+ margin-left: 8px;
785
+ }
786
+ .e-btn.e-de-op-icon-btn {
787
+ background-color: $de-op-btn-icon-bg;
788
+ border-color: $de-op-btn-icon-border;
789
+ }
790
+ .e-documenteditor .e-de-op-close-button {
791
+ left: 250px;
792
+ position: absolute;
793
+ top: $de-op-close-button-top;
794
+ @if $skin-name=='bootstrap4' {
795
+ padding-top: 0px;
796
+ }
797
+ }
798
+ @if $skin-name=='FluentUI' or $skin-name=='bootstrap5' {
799
+ .e-bigger {
800
+ .e-documenteditor .e-de-op-close-button {
801
+ left: 240px;
802
+ position: absolute;
803
+ top: 5px;
804
+ }
805
+ }
806
+ }
807
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
808
+
809
+ .e-de-style-paragraph-indent-group-button .e-btn.e-active,
810
+ .e-de-style-paragraph-group-button .e-btn.e-active,
811
+ .e-de-style-font-group-button .e-btn.e-active {
812
+ @if $skin-name !='tailwind' {
813
+ background-color: $de-style-btn-bg-color;
814
+ box-shadow: $de-toggle-btn-border;
815
+ box-shadow: none;
816
+ .e-btn-icon {
817
+ @if $skin-name !='bootstrap5' {
818
+ color: $de-style-btn-color;
819
+ }
820
+ }
821
+ }
822
+ }
823
+
824
+ .e-de-style-font-group-button,
825
+ .e-de-style-paragraph-group-button,
826
+ .e-de-style-paragraph-indent-group-button {
827
+ .e-btn {
828
+ background: $de-style-dlg-btn-bg-color;
829
+ @if $skin-name !='Material3' {
830
+ border-color: $de-style-dlg-btn-border-color;
831
+ }
832
+ #{if(&, '&', '*')}:focus {
833
+ background-color: $de-style-btn-bg-color;
834
+ box-shadow: $de-toggle-btn-border;
835
+ }
836
+ #{if(&, '&', '*')}:active {
837
+ background-color: $de-style-btn-bg-color;
838
+ box-shadow: $de-toggle-btn-border;
839
+ }
840
+ #{if(&, '&', '*')}:hover {
841
+ background-color: $de-style-btn-bg-color;
842
+ box-shadow: $de-toggle-btn-border;
843
+ }
844
+ }
845
+ }
846
+ .e-de-style-font-group-button .e-btn:hover,
847
+ .e-de-style-font-group-button .e-btn:focus,
848
+ .e-de-style-font-group-button .e-btn:active,
849
+ .e-de-style-font-group-button .e-btn:disabled,
850
+ .e-de-style-paragraph-group-button .e-btn:hover,
851
+ .e-de-style-paragraph-group-button .e-btn:focus,
852
+ .e-de-style-paragraph-group-button .e-btn:active,
853
+ .e-de-style-paragraph-group-button .e-btn:disabled {
854
+ .e-btn-icon {
855
+ @if $skin-name=='bootstrap5' {
856
+ color: $de-style-btn-hover-color
857
+ }
858
+ @else {
859
+ color: $de-style-btn-color;
860
+ }
861
+ }
862
+ }
863
+ .e-de-style-font-group-button .e-btn-icon,
864
+ .e-de-style-paragraph-group-button .e-btn-icon,
865
+ .e-de-style-paragraph-indent-group-button .e-btn-icon {
866
+ color: $de-prop-btn-icon-clr;
867
+ font-size: $de-btn-font-size;
868
+ }
869
+ .e-de-style-paragraph-indent-group-button .e-btn:hover,
870
+ .e-de-style-paragraph-indent-group-button .e-btn:focus,
871
+ .e-de-style-paragraph-indent-group-button .e-btn:active,
872
+ .e-de-style-paragraph-indent-group-button .e-btn:disabled {
873
+ .e-btn-icon {
874
+ color: $de-style-btn-color;
875
+ }
876
+ }
877
+ .e-de-style-paragraph-indent-group-button .e-btn-icon {
878
+ color: $de-prop-btn-icon-clr;
879
+ font-size: $de-btn-font-size;
880
+ }
881
+
882
+ @if $skin-name != 'bootstrap5' {
883
+ .e-de-style-font-color-picker .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
884
+ .e-de-style-font-color-picker .e-btn.e-icon-btn,
885
+ .e-de-dlg-clr-picker .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
886
+ .e-de-dlg-clr-picker .e-btn.e-icon-btn,
887
+ .e-de-font-dlg-display .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
888
+ .e-de-font-dlg-display .e-colorpicker-wrapper .e-btn.e-icon-btn {
889
+ padding: 4px 8px !important;
890
+ }
891
+
892
+ .e-de-rp-close-icon.e-btn {
893
+ background: $de-rp-btn-bg-color;
894
+ border: 0;
895
+ color: $de-cmt-pant-content-font;
896
+ opacity: 1;
897
+ }
898
+
899
+ .e-de-toc-dlg-style-input {
900
+ margin-top: 18px;
901
+ }
902
+ .e-de-list-container {
903
+ background: $de-style-btn-color !important;
904
+ }
905
+
906
+ .e-documenteditor .e-de-op-close-button {
907
+ top: 10px;
908
+ }
909
+ .e-de-styles,
910
+ .e-de-bookmark {
911
+ margin-top: 0 !important;
912
+ }
913
+ .e-de-bookmark .e-bookmark-textbox-input {
914
+ box-sizing: border-box !important;
915
+ }
916
+ .e-de-cp-option {
917
+ background: transparent;
918
+ }
919
+
920
+ .e-styles-common {
921
+ padding-top: $de-style-list-top;
922
+ }
923
+ .e-styles-list {
924
+ margin-right: $de-style-list-top;
925
+ }
926
+ .e-bigger {
927
+ .e-de-style-dlg-name-input {
928
+ height: $e-de-style-input-text-height-bigger;
929
+ }
930
+ .e-de-style-bold-button-size {
931
+ height: $e-de-style-input-text-height-bigger;
932
+ }
933
+ .e-styles-common {
934
+ padding-top: $de-style-list-top-bigger;
935
+ }
936
+ .e-styles-list {
937
+ margin-right: $de-style-list-top-bigger;
938
+ }
939
+ .e-bookmark-gotobutton,
940
+ .e-bookmark-addbutton,
941
+ .e-styles-addbutton,
942
+ .e-bookmark-deletebutton {
943
+ margin-bottom: $de-style-list-top-bigger;
944
+ }
945
+ }
946
+ .e-bigger .e-de-search-tab-content {
947
+ margin-top: $de-op-search-tab-content-margin-top-bigger;
948
+ width: $de-op-search-text-box-container-width;
949
+ }
950
+ .e-bigger .e-de-op-more-less {
951
+ display: inline-flex;
952
+ margin-top: 16px;
953
+ }
954
+ .e-bigger .e-de-op-dlg-footer {
955
+ margin-top: $de-op-dlg-footer-margin-top-bigger;
956
+ }
957
+ .e-de-font-dlg-display .e-split-btn-wrapper .e-btn {
958
+ border-color: $de-style-toggle-btn-color;
959
+ }
960
+ }
961
+ }
962
+ @if $skin-name=='bootstrap5' or $skin-name=='FluentUI' {
963
+ .e-de-restrict-pane {
964
+ color: $content-text-color;
965
+ }
966
+ //Hyperlink dialog
967
+ .e-bigger {
968
+ .e-de-hyperlink-dlg-input,
969
+ .e-de-insert-table-dlg-input,
970
+ .e-de-insert-footnote-dlg-header,
971
+ .e-bookmark-dlgfields,
972
+ .e-de-ff-dlg-heading {
973
+ margin-bottom: $de-bigger-padding !important;
974
+ }
975
+ @if $skin-name != 'FluentUI' {
976
+ // Font dialog
977
+ .e-de-font-dlg-cb-right,
978
+ .e-bookmark-list.e-de-rtl,
979
+ .e-styles-list.e-de-rtl,
980
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
981
+ margin-left: $de-bigger-padding;
982
+ }
983
+ .e-de-font-dlg-cb-right.e-de-rtl,
984
+ .e-bookmark-list,
985
+ .e-styles-list,
986
+ .e-de-ff-dlg-lft-hlf {
987
+ margin-right: $de-bigger-padding;
988
+ }
989
+ }
990
+ @else {
991
+ // Font dialog
992
+ .e-de-font-dlg-cb-right,
993
+ .e-bookmark-list.e-de-rtl,
994
+ .e-styles-list.e-de-rtl,
995
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
996
+ margin-left: 16px;
997
+ }
998
+ .e-de-font-dlg-cb-right.e-de-rtl,
999
+ .e-bookmark-list,
1000
+ .e-styles-list,
1001
+ .e-de-ff-dlg-lft-hlf {
1002
+ margin-right: 16px;
1003
+ }
1004
+ }
1005
+
1006
+ .e-bookmark-textboxdiv {
1007
+ margin-bottom: 12px !important;
1008
+ }
1009
+ .e-de-ff-drpdwn-mvdn,
1010
+ .e-de-ff-drpdwn-mvup {
1011
+ width: 52px !important;
1012
+ }
1013
+ .e-documenteditor {
1014
+ .e-de-op-close-button.e-de-rtl {
1015
+ right: 240px;
1016
+ }
1017
+ }
1018
+ // .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
1019
+ // margin-bottom: $de-bigger-padding;
1020
+ // }
1021
+ .e-de-track-date {
1022
+ font-size: 12px;
1023
+ }
1024
+ .e-de-page-setup-dlg-sub-container-port {
1025
+ @if $skin-name != 'FluentUI' {
1026
+ margin-top: 19px;
1027
+ }
1028
+ @else {
1029
+ margin-top: 34px;
1030
+ }
1031
+ }
1032
+ // .e-de-table-ppty-dlg-left-indent-container {
1033
+ // bottom: 12px;
1034
+ // }
1035
+ .e-de-table-container-div {
1036
+ margin-top: 13px;
1037
+ }
1038
+ .e-de-table-properties-dlg {
1039
+ width: 470px;
1040
+ }
1041
+ .e-de-table-ppty-dlg-preferred-width-div,
1042
+ .e-de-table-ppty-dlg-measure-drop-down-div,
1043
+ .e-de-ht-wdth-type {
1044
+ width: 155px;
1045
+ }
1046
+ .e-de-row-ht-top,
1047
+ .e-de-cell-ht-top {
1048
+ width: 179px;
1049
+ }
1050
+ }
1051
+ }
1052
+ @if $skin-name=='tailwind' {
1053
+ .e-bigger {
1054
+ .e-de-table-properties-dlg {
1055
+ width: 485px;
1056
+ }
1057
+ .e-de-table-ppty-dlg-preferred-width-div,
1058
+ .e-de-table-ppty-dlg-measure-drop-down-div,
1059
+ .e-de-ht-wdth-type {
1060
+ width: 155px;
1061
+ }
1062
+ .e-de-row-ht-top,
1063
+ .e-de-cell-ht-top {
1064
+ width: 179px;
1065
+ }
1066
+ .e-de-restrict-pane {
1067
+ width: 295px;
1068
+ }
1069
+ // .e-de-rp-sub-div,
1070
+ // .e-de-rp-whole-header {
1071
+ // padding: 16px;
1072
+ // }
1073
+ .e-de-rp-stop-div1 {
1074
+ padding: 12px 16px 12px 16px;
1075
+ }
1076
+ .e-de-rp-stop-div2 {
1077
+ padding: 16px 16px 24px;
1078
+ }
1079
+ // .e-de-rp-stop-div3 {
1080
+ // padding: 0 0 16px 16px;
1081
+ // }
1082
+ // .e-de-rp-nav-btn {
1083
+ // margin: 0px 25px;
1084
+ // }
1085
+ // .e-de-rp-enforce {
1086
+ // padding: 16px;
1087
+ // }
1088
+ .e-de-cmt-sub-container,
1089
+ .e-de-font-dlg-header,
1090
+ .e-de-font-dlg-header-effects,
1091
+ .e-de-font-dlg-header-font-color,
1092
+ .e-de-dlg-sub-header,
1093
+ .e-de-prop-sub-label,
1094
+ .e-de-hyperlink-dlg-title,
1095
+ .e-de-insert-table-dlg-sub-header,
1096
+ .e-de-row-ht-top,
1097
+ .e-de-table-dia-align-label,
1098
+ .e-de-cell-dia-label-common,
1099
+ .e-de-table-setting-labels-heading,
1100
+ .e-de-trckchanges-inner,
1101
+ .e-de-page-setup-dlg-sub-header,
1102
+ .e-de-tbl-indent-lbl,
1103
+ .e-de-table-element-subheading,
1104
+ .e-de-ff-dlg-heading-small,
1105
+ .e-styles-dlgfields,
1106
+ .e-de-insert-footnote-dlg-sub-header,
1107
+ .e-de-list-ddl-subheaderbottom,
1108
+ .e-de-table-measure-lbl,
1109
+ .e-bookmark-dlgfields,
1110
+ .e-de-page-setup-dlg-sub-title-header,
1111
+ .e-de-list-ddl-subheader,
1112
+ .e-de-rp-stop-div1,
1113
+ .e-de-unprotect-dlg-title,
1114
+ .e-de-rp-stop-div2,
1115
+ .e-de-rp-enforce-nav.e-de-rp-nav-lbl .e-label,
1116
+ .e-de-enforce-dlg-title,
1117
+ .e-de-track-date,
1118
+ .e-de-rp-sub-content-div,
1119
+ .e-de-rp-stop-div3,
1120
+ .e-de-cmt-date {
1121
+ font-size: 14px !important;
1122
+ }
1123
+ .e-de-table-setting-heading,
1124
+ .e-de-cell-dia-options-label,
1125
+ .e-de-style-formatting,
1126
+ .e-de-table-border-heading,
1127
+ .e-de-style-properties,
1128
+ .e-de-page-setup-dlg-sub-label,
1129
+ .e-de-toc-dlg-heading,
1130
+ .e-de-ff-dlg-heading,
1131
+ .e-de-toc-dlg-main-heading,
1132
+ .e-de-list-ddl-header,
1133
+ .e-de-prop-header-label,
1134
+ .e-de-table-border-heading,
1135
+ .e-de-dlg-spellchecker-subheader,
1136
+ .e-de-dlg-spellchecker-subheaderbtm,
1137
+ .e-de-list-ddl-header-list-level,
1138
+ .e-de-rp-format,
1139
+ .e-de-track-toolbar-overlay,
1140
+ .e-de-cmt-author-name,
1141
+ .e-de-cmt-readonly,
1142
+ .e-de-op-search-icon,
1143
+ .e-de-op-nav-btn,
1144
+ .e-de-track-user-nme,
1145
+ .e-de-tc-no-chng {
1146
+ font-size: 16px;
1147
+ }
1148
+ .e-de-cell-margin-top {
1149
+ padding-top: 0;
1150
+ }
1151
+ .e-de-op {
1152
+ padding-left: 16px;
1153
+ padding-right: 16px;
1154
+ width: 308px;
1155
+ }
1156
+ .e-de-font-dlg-cb-right.e-de-rtl,
1157
+ .e-de-style-left-div,
1158
+ .e-bookmark-list,
1159
+ .e-de-ff-dlg-lft-hlf,
1160
+ .e-styles-list,
1161
+ .e-de-user-dlg-textbox-input {
1162
+ margin-right: 16px !important;
1163
+ }
1164
+ .e-de-ff-dlg-lft-hlf.e-de-rtl,
1165
+ .e-de-table-ppty-dlg-preferred-width-div,
1166
+ .e-de-font-dlg-cb-right,
1167
+ .e-de-table-ppty-dlg-measure-div,
1168
+ .e-de-ff-drpdwn-listview.e-de-rtl,
1169
+ .e-de-table-ppty-dlg-measure-drop-down-div,
1170
+ .e-bookmark-list.e-de-rtl,
1171
+ .e-de-op.e-de-rtl .e-de-search-tab-content,
1172
+ .e-de-user-dlg-list.e-de-rtl .e-de-user-dlg-textbox-input {
1173
+ margin-left: 16px;
1174
+ }
1175
+ .e-de-toc-dlg-style-label {
1176
+ margin-top: 56px;
1177
+ }
1178
+ .e-de-ff-drpdwn-mvup {
1179
+ margin-right: 12px;
1180
+ }
1181
+ .e-de-font-clr-div,
1182
+ .e-de-toc-dlg-styles,
1183
+ // .e-de-tbl-dlg-border-btn {
1184
+ // margin-top: 20px;
1185
+ // }
1186
+ .e-de-font-dlg-padding,
1187
+ .e-de-page-setup-dlg-sub-title-header,
1188
+ .e-de-op-result-container .e-de-list-ddl-subheaderbottom,
1189
+ .e-de-op-more-less,
1190
+ .e-de-op-replacetabcontentdiv,
1191
+ .e-de-op-dlg-footer {
1192
+ margin-top: 16px;
1193
+ }
1194
+ // .e-de-table-ppty-dlg-left-indent-container {
1195
+ // bottom: 14px;
1196
+ // }
1197
+ // .e-de-table-ppty-dlg-left-indent-container {
1198
+ // left: 50px;
1199
+ // }
1200
+ // .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
1201
+ // right: 50px;
1202
+ // }
1203
+ .e-de-ff-drpdwn-mvdn,
1204
+ .e-de-ff-drpdwn-mvup {
1205
+ width: 46px !important;
1206
+ }
1207
+ .e-de-list-dlg-div.e-de-rtl,
1208
+ .e-de-list-dlg-subdiv.e-de-rtl {
1209
+ margin-top: -150px;
1210
+ }
1211
+ .e-de-list-dlg-div:not(.e-de-rtl) {
1212
+ margin-top: 40px;
1213
+ }
1214
+ .e-de-ht-wdth-type {
1215
+ margin-top: -18px;
1216
+ }
1217
+ .e-de-list-dlg {
1218
+ width: 425px;
1219
+ }
1220
+ .e-de-list-dlg-subdiv .e-input {
1221
+ height: 38px;
1222
+ }
1223
+ .e-de-toc-dlg-container {
1224
+ width: 640px;
1225
+ }
1226
+ .e-de-toc-styles-table-div {
1227
+ height: 195px;
1228
+ }
1229
+ .e-de-toc-table-div {
1230
+ height: 127px;
1231
+ }
1232
+ .e-de-toc-list-view {
1233
+ height: 204px;
1234
+ }
1235
+ .e-de-style-options-div,
1236
+ .e-de-ff-dlg-heading,
1237
+ .e-de-table-ppty-options-break,
1238
+ .e-de-page-setup-dlg-first-page-prop,
1239
+ .e-de-style-options-div>div:first-child,
1240
+ .e-de-toc-dlg-sub-container,
1241
+ .e-de-cmt-author,
1242
+ .e-de-font-checkbox-transform,
1243
+ .e-de-font-color-label,
1244
+ .e-bookmark-gotobutton,
1245
+ .e-de-drp-dwn-frst-div,
1246
+ .e-de-font-checkbox-transform-label,
1247
+ .e-bookmark-deletebutton,
1248
+ .e-bookmark-textboxdiv,
1249
+ .e-de-user-dlg-user,
1250
+ .e-de-page-setup-dlg-sub-label {
1251
+ margin-bottom: 12px !important;
1252
+ }
1253
+ .e-de-row-ht-top,
1254
+ .e-de-cell-ht-top {
1255
+ padding: 0 16px;
1256
+ }
1257
+ .e-de-style-name,
1258
+ .e-de-style-styletype,
1259
+ .e-de-style-style-based-on,
1260
+ .e-de-style-style-paragraph {
1261
+ font-size: 14px;
1262
+ }
1263
+ .e-de-pagesetup-dlg-container .e-input-group {
1264
+ width: 199px !important;
1265
+ }
1266
+ .e-de-table-measure-lbl {
1267
+ width: 90px !important;
1268
+ }
1269
+ .e-de-list-ddl-subheader,
1270
+ .e-de-cell-dia-label-common,
1271
+ .e-de-page-setup-dlg-sub-container-port {
1272
+ margin-top: 42px;
1273
+ }
1274
+ .e-de-page-setup-dlg-first-page-prop {
1275
+ height: 30px !important;
1276
+ }
1277
+ .e-de-table-dialog-options-label {
1278
+ padding-bottom: 16px;
1279
+ }
1280
+ .e-de-row-ht-top,
1281
+ .e-de-cell-ht-top {
1282
+ margin-top: 4px;
1283
+ }
1284
+ .e-de-table-options-dlg {
1285
+ width: 425px;
1286
+ }
1287
+ .e-de-style-based-para-div .e-input-group,
1288
+ .e-de-style-nametype-div .e-input-group,
1289
+ .e-de-style-nametype-div .e-input {
1290
+ width: 320px !important;
1291
+ }
1292
+ .e-de-font-color-label,
1293
+ .e-de-hyperlink-bookmark-check,
1294
+ .e-de-search-tab-content,
1295
+ .e-de-page-setup-dlg-orientation-prop {
1296
+ margin-top: 16px;
1297
+ }
1298
+ .e-de-page-setup-dlg-sub-size-container,
1299
+ .e-bookmark-addbutton,
1300
+ .e-de-page-setup-dlg-layout-sub-container,
1301
+ .e-de-insert-table-dlg-input,
1302
+ .e-de-insert-footnote-dlg-header,
1303
+ .e-de-hyperlink-dlg-input,
1304
+ .e-de-style-nametype-div,
1305
+ .e-de-rp-format,
1306
+ .e-de-hdr-ftr-frst-page-div,
1307
+ .e-de-page-setup-dlg-sub-container,
1308
+ .e-de-div-seperate-dlg,
1309
+ .e-styles-addbutton,
1310
+ .e-de-user-dlg-list,
1311
+ .e-de-spellcheck-error-container,
1312
+ .e-bookmark-deletebutton,
1313
+ .e-bookmark-gotobutton {
1314
+ margin-bottom: 16px !important;
1315
+ }
1316
+ .e-de-op-header {
1317
+ margin-bottom: 0;
1318
+ }
1319
+ .e-de-style-based-para-div,
1320
+ .e-de-table-options-dlg-div {
1321
+ margin-bottom: 20px;
1322
+ }
1323
+ .e-de-font-dlg .e-input-group {
1324
+ width: max-content !important;
1325
+ }
1326
+ .e-de-list-dlg .e-input-group,
1327
+ .e-de-list-dlg .e-input {
1328
+ width: 203px !important;
1329
+ }
1330
+ .e-de-pagesetup-dlg-container {
1331
+ width: 415px;
1332
+ }
1333
+ .e-style-font-fmaily-right {
1334
+ width: 188px !important;
1335
+ }
1336
+ .e-de-style-format-dropdwn {
1337
+ height: auto !important;
1338
+ }
1339
+ .e-de-table-options-dlg-div .e-input-group {
1340
+ width: 200px !important;
1341
+ margin-right: 16px;
1342
+ }
1343
+ }
1344
+ .e-bigger .e-de-rp-enforce-nav:not(.e-de-rp-nav-lbl) {
1345
+ margin: 0 16px 16px 16px;
1346
+ }
1347
+ .e-de-style-font-group-button .e-btn:not(button:last-child),
1348
+ .e-de-style-paragraph-group-button .e-btn:not(button:last-child),
1349
+ .e-de-style-paragraph-indent-group-button .e-btn:not(button:last-child) {
1350
+ margin-right: 3px;
1351
+ }
1352
+ .e-style-font-fmaily-right:not(.e-bigger .e-style-font-fmaily-right) {
1353
+ width: 148px !important;
1354
+ }
1355
+ .e-de-rp-enforce-nav.e-de-rp-nav-lbl .e-label {
1356
+ font-size: 12px;
1357
+ }
1358
+ .e-de-cell-margin-top {
1359
+ padding-bottom: 0;
1360
+ }
1361
+ .e-bigger .e-de-ctnr-prop-label.e-de-table-prop-label {
1362
+ margin-bottom: 12px;
1363
+ }
1364
+ .e-de-ctnr-prop-label.e-de-table-prop-label {
1365
+ margin-bottom: 8px;
1366
+ }
1367
+ .e-de-search-tab-content .e-input-group .e-de-op-search-icon:active,
1368
+ .e-de-op-search-close-icon:active {
1369
+ color: $search-icon-bdr-clr !important;
1370
+ }
1371
+ .e-de-op-search-icon:hover,
1372
+ .e-de-op-search-close-icon:hover {
1373
+ color: $search-icon-hvr !important;
1374
+ }
1375
+ .e-de-enforce {
1376
+ font-weight: 500;
1377
+ }
1378
+ // .e-bigger .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
1379
+ // margin-bottom: 16px;
1380
+ // }
1381
+ .e-de-page-setup-dlg-first-page-prop {
1382
+ margin-bottom: 8px;
1383
+ }
1384
+ .e-de-pagesetup-dlg-container .e-input-group {
1385
+ width: 184px !important;
1386
+ }
1387
+ .e-de-table-options-dlg-div .e-input-group {
1388
+ width: 187px !important;
1389
+ }
1390
+ .e-de-font-dlg .e-input-group,
1391
+ .e-de-list-dlg .e-input-group,
1392
+ .e-de-list-dlg .e-input {
1393
+ width: max-content !important;
1394
+ }
1395
+ .e-de-list-ddl-subheaderbottom {
1396
+ margin-top: 12px;
1397
+ }
1398
+ .e-de-style-based-para-div .e-input-group,
1399
+ .e-de-style-nametype-div .e-input-group,
1400
+ .e-de-style-nametype-div .e-input {
1401
+ width: 256px !important;
1402
+ }
1403
+ .e-de-list-ddl-subheader {
1404
+ width: auto !important;
1405
+ }
1406
+ .e-de-table-measure-lbl {
1407
+ width: 80px !important;
1408
+ }
1409
+ .e-de-style-font-group-button>button:last-child {
1410
+ margin-right: 6px;
1411
+ }
1412
+ .e-de-hdr-ftr-frst-page-div,
1413
+ .e-de-page-setup-dlg-sub-container,
1414
+ .e-de-div-seperate-dlg {
1415
+ margin-bottom: 12px;
1416
+ }
1417
+ .e-de-toc-dlg-tab-div {
1418
+ margin-top: 16px;
1419
+ }
1420
+ .e-bookmark-textbox-input {
1421
+ margin-top: 0px !important;
1422
+ }
1423
+ .e-de-table-cell-header-div,
1424
+ .e-de-table-header-div {
1425
+ margin-top: 4px !important;
1426
+ }
1427
+ .e-documenteditor {
1428
+ .e-tab .e-content .e-item {
1429
+ padding: 0;
1430
+ }
1431
+ }
1432
+ // .e-de-enforce .e-de-enforce-dlg-input:last-child {
1433
+ // margin-bottom: 0;
1434
+ // }
1435
+ .e-de-table-cell-margin-dlg .e-input-group {
1436
+ width: 188px !important;
1437
+ }
1438
+ .e-de-restrict-pane {
1439
+ line-height: $de-rp-content-ln-ht;
1440
+ }
1441
+ }
1442
+ .e-de-restrict-pane {
1443
+ color: $de-input-color;
1444
+ }
1445
+ .e-de-op.e-de-rtl .e-de-search-tab-content {
1446
+ margin-left: $de-op-search-tab-content-margin-top;
1447
+ margin-right: 0;
1448
+ }
1449
+ .e-documenteditor .e-de-op-close-button.e-de-rtl {
1450
+ right: 255px;
1451
+ }
1452
+ .e-de-table-measure-lbl {
1453
+ font-size: $de-tbl-measure-lbl-font-size;
1454
+ font-weight: $de-header-font-weight;
1455
+ display: block;
1456
+ margin-bottom: $de-row-height-bottom-margin;
1457
+ }
1458
+ .e-de-tbl-indent-lbl {
1459
+ font-weight: $de-header-font-weight;
1460
+ font-size: $de-tbl-indent-lb-fnt-size;
1461
+ position: relative;
1462
+ display: block;
1463
+ margin-bottom: $de-tbl-indent-lbl-mrgn-btm;
1464
+ top: $de-tbl-indent-lbl-top;
1465
+ }
1466
+ .e-btn.e-de-op-close-button:hover {
1467
+ background-color: $de-op-btn-icon-bg;
1468
+ border-color: $de-op-btn-icon-border;
1469
+ color: $de-op-btn-icon-hover-clr;
1470
+ }
1471
+ .e-btn.e-de-op-close-button:focus {
1472
+ background-color: $de-op-btn-icon-bg;
1473
+ border-color: $de-op-btn-icon-border;
1474
+ color: $de-op-btn-icon-hover-clr;
1475
+ }
1476
+ .e-btn.e-de-op-close-button:active {
1477
+ background-color: $de-op-btn-icon-bg;
1478
+ border-color: $de-op-btn-icon-border;
1479
+ color: $de-op-btn-icon-active-clr;
1480
+ }
1481
+ .e-documenteditor {
1482
+ .e-input {
1483
+ //color: $de-input-color;
1484
+ font-size: 14px;
1485
+ }
1486
+ }
1487
+ .e-de-dlg-target .e-footer-content {
1488
+ .e-control.e-btn.e-flat:not(.e-icon-btn) {
1489
+ height: $de-dlg-btn-height;
1490
+ }
1491
+ }
1492
+ .e-de-tbl-dlg-border-btn .e-control.e-btn.e-flat:not(.e-icon-btn) {
1493
+ height: auto;
1494
+ }
1495
+ .e-de-op-result-container {
1496
+ margin-top: $de-op-result-container-margin-top;
1497
+ }
1498
+ .e-de-restrict-pane,
1499
+ .e-de-op {
1500
+ background: $de-op-bg-color;
1501
+ }
1502
+ .e-de-restrict-pane,
1503
+ .e-de-op {
1504
+ .e-tab-header .e-toolbar-items {
1505
+ margin-bottom: $de-op-tab-header-margin-bottom;
1506
+ margin-top: $de-op-tab-header-margin-top;
1507
+ }
1508
+ }
1509
+ .e-de-font-dlg-color {
1510
+ border: $de-font-color-border;
1511
+ border-radius: $de-font-color-border-radius;
1512
+ font-size: 12px;
1513
+ height: 16px;
1514
+ margin-left: 15px;
1515
+ width: 25px;
1516
+ }
1517
+ .e-de-icon-table-row-above {
1518
+ top: $de-icon-table-row-above-top;
1519
+ }
1520
+ .e-de-icon-table-row-below {
1521
+ top: $de-icon-table-row-below-top;
1522
+ }
1523
+ .e-de-icon-table-column-left {
1524
+ top: $de-icon-table-column-left-top;
1525
+ }
1526
+ .e-de-icon-table-column-right {
1527
+ top: $de-icon-table-column-right-top;
1528
+ }
1529
+ .e-de-icon-table-delete {
1530
+ top: $de-icon-table-delete-top;
1531
+ }
1532
+ .e-de-icon-table-row-delete {
1533
+ top: $de-icon-table-row-delete-top;
1534
+ }
1535
+ .e-de-icon-table-column-delete {
1536
+ top: $de-icon-table-column-delete-top;
1537
+ }
1538
+ .e-de-list-bullet-none {
1539
+ height: 40px;
1540
+ width: 40px;
1541
+ }
1542
+ .e-de-list-bullet-dot {
1543
+ height: 40px;
1544
+ width: 40px;
1545
+ }
1546
+ .e-de-list-bullet-circle {
1547
+ height: 40px;
1548
+ width: 40px;
1549
+ }
1550
+ .e-de-list-bullet-square {
1551
+ height: 40px;
1552
+ width: 40px;
1553
+ }
1554
+ .e-de-list-bullet-flower {
1555
+ height: 40px;
1556
+ width: 40px;
1557
+ }
1558
+ .e-de-list-bullet-arrow {
1559
+ height: 40px;
1560
+ width: 40px;
1561
+ }
1562
+ .e-de-list-bullet-tick {
1563
+ height: 40px;
1564
+ width: 40px;
1565
+ }
1566
+ .e-de-bullet:hover {
1567
+ background: $de-bullet-list-hover-color;
1568
+ }
1569
+ .e-de-list-numbered-none {
1570
+ height: 80px;
1571
+ width: 80px;
1572
+ }
1573
+ .e-de-list-numbered-number-dot {
1574
+ height: 80px;
1575
+ width: 80px;
1576
+ }
1577
+ .e-de-list-numbered-number-brace {
1578
+ height: 80px;
1579
+ width: 80px;
1580
+ }
1581
+ .e-de-list-numbered-up-roman {
1582
+ height: 80px;
1583
+ width: 80px;
1584
+ }
1585
+ .e-de-list-numbered-up-letter {
1586
+ height: 80px;
1587
+ width: 80px;
1588
+ }
1589
+ .e-de-list-numbered-low-letter-brace {
1590
+ height: 80px;
1591
+ width: 80px;
1592
+ }
1593
+ .e-de-numbered-low-letter-dot {
1594
+ height: 80px;
1595
+ width: 80px;
1596
+ }
1597
+ .e-de-list-numbered-low-roman {
1598
+ height: 80px;
1599
+ width: 80px;
1600
+ }
1601
+ .e-de-numbered:hover {
1602
+ background: $de-number-list-hover-color;
1603
+ }
1604
+ .e-de-list-multilevel-none {
1605
+ height: 80px;
1606
+ width: 80px;
1607
+ }
1608
+ .e-de-list-multilevel-list-normal {
1609
+ height: 80px;
1610
+ width: 80px;
1611
+ }
1612
+ .e-de-list-multilevel-list-multilevel {
1613
+ height: 80px;
1614
+ width: 80px;
1615
+ }
1616
+ .e-de-list-multilevel-list-bullets {
1617
+ height: 80px;
1618
+ width: 80px;
1619
+ }
1620
+ .e-de-multilevel-list:hover {
1621
+ background: $de-multilevel-list-hover-color;
1622
+ }
1623
+ .e-de-list-dialog-open:hover {
1624
+ background: $de-list-dialog-hover-color;
1625
+ }
1626
+ .e-de-cell-options {
1627
+ left: $de-cell-options-left;
1628
+ top: $de-cell-options-top;
1629
+ }
1630
+ .e-de-cell-options.e-de-rtl {
1631
+ left: $de-cell-options-rtl;
1632
+ }
1633
+ .e-de-font-color-label {
1634
+ margin-bottom: $de-font-color-margin-bottom;
1635
+ margin-right: $de-font-color-margin-top;
1636
+ margin-top: $de-font-color-margin-top;
1637
+ }
1638
+ .e-de-font-content-label {
1639
+ width: $de-font-label-width;
1640
+ }
1641
+ .e-de-font-color-margin {
1642
+ margin-right: $de-font-dlg-color-margin-right;
1643
+ margin-top: $de-font-dlg-color-margin-top;
1644
+ }
1645
+ .e-de-font-color-margin.e-de-rtl {
1646
+ margin-left: $de-font-dlg-color-margin-right;
1647
+ margin-right: 0;
1648
+ }
1649
+ .e-de-font-content-checkbox-label {
1650
+ margin-left: $de-font-content-checkbox-left;
1651
+ }
1652
+ .e-de-font-content-checkbox-label-rtl {
1653
+ margin-right: $de-font-content-checkbox-right;
1654
+ }
1655
+ .e-bigger {
1656
+ .e-de-font-content-checkbox-label {
1657
+ margin-left: $de-font-content-checkbox-left-bg;
1658
+ }
1659
+ .e-de-font-content-checkbox-label-rtl {
1660
+ margin-right: $de-font-content-checkbox-right-bg;
1661
+ }
1662
+ .e-de-font-content-label {
1663
+ width: $de-font-label-width-bg;
1664
+ }
1665
+ }
1666
+ .e-de-font-checkbox {
1667
+ margin-top: $de-font-style-margin;
1668
+ }
1669
+ .e-de-font-checkbox-transform {
1670
+ margin-left: $de-font-checkbox-ltr;
1671
+ }
1672
+ .e-de-font-checkbox-transform.e-de-rtl {
1673
+ margin-left: 0;
1674
+ margin-right: $de-font-checkbox-ltr;
1675
+ }
1676
+ .e-de-font-checkbox-transform-label {
1677
+ margin-bottom: $de-font-style-margin;
1678
+ margin-top: $de-font-style-margin;
1679
+ }
1680
+ .e-de-font-checkbox.e-de-rtl {
1681
+ margin-left: 0;
1682
+ margin-right: $de-font-checkbox-ltr;
1683
+ }
1684
+ .e-de-font-checkbox.e-de-rtl {
1685
+ margin-left: 0;
1686
+ margin-right: $de-font-checkbox-left;
1687
+ }
1688
+ .e-de-font-clr-div {
1689
+ margin-top: $de-font-clr-div-mrgn-top;
1690
+ }
1691
+ .e-de-font-dlg-padding {
1692
+ margin-top: $de-font-dlg-margin-top;
1693
+ }
1694
+ .e-de-table-container-div {
1695
+ margin-top: $de-table-container-margin-top;
1696
+ }
1697
+ .e-de-table-header-div {
1698
+ padding-top: $de-table-header-padding-top;
1699
+ }
1700
+ .e-de-table-subheader-div {
1701
+ float: right;
1702
+ margin-right: $de-table-subheader-div-margin-right;
1703
+ margin-top: $de-table-subheader-div-margin-top;
1704
+ }
1705
+ .e-de-table-subheader-div.e-de-rtl {
1706
+ float: left;
1707
+ margin-left: $de-table-subheader-div-margin-right;
1708
+ margin-right: 0;
1709
+ }
1710
+ .e-de-table-cell-header-div {
1711
+ padding-top: $de-table-header-padding-top;
1712
+ }
1713
+ .e-de-table-cell-subheader-div {
1714
+ top: $de-cell-subheader-top;
1715
+ }
1716
+ .e-de-cell-margin-header {
1717
+ left: $de-cell-margin-header-left;
1718
+ top: $de-cell-margin-header-top;
1719
+ }
1720
+ .e-de-font-dlg-display {
1721
+ display: inline-flex;
1722
+ }
1723
+ .e-de-tbl-margin-sub-header {
1724
+ margin-top: $de-tbl-margin-sub-header;
1725
+ }
1726
+ .e-de-tbl-btn-separator {
1727
+ width: $de-tbl-btn-separator;
1728
+ }
1729
+ .e-de-op-msg {
1730
+ color: $de-op-container-messagediv-color;
1731
+ top: 79px;
1732
+ }
1733
+ .e-de-save-dlg-file-name {
1734
+ height: 25px;
1735
+ margin-bottom: 8px;
1736
+ }
1737
+ .e-de-save-dlg-format-type {
1738
+ height: 25px;
1739
+ margin-bottom: 8px;
1740
+ padding-top: $de-save-dlg-format-type-padding;
1741
+ }
1742
+ .e-de-search-tab-content {
1743
+ //margin-right: $de-op-search-tab-content-margin-top;
1744
+ margin-top: $de-op-search-tab-content-margin-top;
1745
+ width: $de-op-search-text-box-container-width;
1746
+ }
1747
+ .e-de-font-dlg {
1748
+ width: $de-font-dlg-width;
1749
+ @if $skin-name == 'Material3' {
1750
+ padding: 8px
1751
+ }
1752
+ }
1753
+ .e-de-hyperlink {
1754
+ width: $de-hyper-link-width;
1755
+ }
1756
+ @if $skin-name =='Material3'{
1757
+ .e-de-table-border-shading-dlg {
1758
+ .e-de-dlg-row .e-de-dlg-row label {
1759
+ margin-left: 10px;
1760
+ }
1761
+ }
1762
+ .e-de-table-setting-heading {
1763
+ line-height: 22px;
1764
+ letter-spacing: 0.30000001192092896px;
1765
+ }
1766
+ .e-de-rp-btn-enforce {
1767
+ border-radius: 4px !important;
1768
+ }
1769
+ .e-de-track-toolbar .e-de-track-pane-drop-btn, #e-de-menu-option {
1770
+ background: none;
1771
+ }
1772
+ }
1773
+ .e-bigger {
1774
+ .e-de-hyperlink {
1775
+ @if $skin-name=='Material3' {
1776
+ width: 320px;
1777
+ }
1778
+ @else {
1779
+ width: 300px;
1780
+ }
1781
+ }
1782
+ }
1783
+ .e-de-insert-table {
1784
+ height: $de-insert-table-height;
1785
+ width: $de-insert-table-width;
1786
+ }
1787
+ .e-de-insert-footnote {
1788
+ height: $de-insert-footnote-height;
1789
+ width: $de-insert-footnote-width;
1790
+ }
1791
+ .e-de-insert-spellchecker {
1792
+ height: $de-insert-spellchecker-height;
1793
+ width: $de-insert-spellchecker-width;
1794
+ font-weight: $de-header-font-weight;
1795
+ }
1796
+ .e-bigger {
1797
+ .e-de-insert-spellchecker {
1798
+ width: $de-insert-big-spellchecker-width;
1799
+ }
1800
+ }
1801
+ .e-de-dlg-spellcheck-listview {
1802
+ @if $skin-name !='tailwind' {
1803
+ border: 1px solid $de-spellcheck-listview-border-color;
1804
+ border-radius: 2px !important;
1805
+ }
1806
+ height: $de-spellcheck-listview-height !important;
1807
+ margin-right: $de-bookmark-list-margin-right;
1808
+ margin-top: 8px;
1809
+ position: relative;
1810
+ float: left;
1811
+ width:$de-spellcheck-list-width;
1812
+ }
1813
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
1814
+ float: right;
1815
+ }
1816
+ .e-de-spellcheck-error-container {
1817
+ height: $de-spellcheck-container-height;
1818
+ margin-bottom: $de-spellcheck-container-gap;
1819
+ display: flex;
1820
+ }
1821
+ .e-de-spellcheck-suggestion-container {
1822
+ // height: 140px;
1823
+ height: $de-spellcheck-container-height;
1824
+ margin-bottom: $de-spellcheck-container-gap;
1825
+ display: flex;
1826
+ }
1827
+ .e-dlg-spellcheck-listitem {
1828
+ font-size: 15px !important;
1829
+ }
1830
+ // .e-de-dlg-suggestListView {
1831
+ // position:absolute;
1832
+ // width: 343px;
1833
+ // height: 124px !important;
1834
+ // margin-top: 8px;
1835
+ // }
1836
+ .e-de-spellcheck-btncontainer {
1837
+ margin-top: 8px;
1838
+ position: relative;
1839
+ width:$de-spellcheck-btn-container-width;
1840
+ float: right;
1841
+ }
1842
+ .e-de-spellcheck-btncontainer.e-de-rtl {
1843
+ float: left;
1844
+ }
1845
+ .e-de-spellcheck-btn {
1846
+ //height: 36px;
1847
+ margin-bottom:$de-padding-half-bigger;
1848
+ width:$de-spellcheck-btn-width;
1849
+ }
1850
+ .e-de-dlg-spellchecker-subheader {
1851
+ margin-top: 8px;
1852
+ @if $skin-name=='tailwind' {
1853
+ font-size: 14px;
1854
+ margin-top: 4px;
1855
+ }
1856
+ @else {
1857
+ font-size: 15px;
1858
+ }
1859
+ }
1860
+ .e-de-dlg-spellchecker-subheaderbtm {
1861
+ @if $skin-name=='tailwind' {
1862
+ font-size: 14px;
1863
+ }
1864
+ @else {
1865
+ font-size: 15px;
1866
+ }
1867
+ }
1868
+ .e-de-list-dlg {
1869
+ height: $de-list-dlg-height;
1870
+ width: $de-list-dlg-width;
1871
+ }
1872
+ .e-de-save-dlg {
1873
+ height: $de-save-dlg-height;
1874
+ width: $de-save-dlg-width;
1875
+ }
1876
+ .e-de-table-properties-dlg {
1877
+ //height: $de-table-ppty-dlg-height;
1878
+ @if $skin-name =='Material3' {
1879
+ padding: 0px 8px;
1880
+ }
1881
+ width: $de-table-ppty-dlg-width;
1882
+ }
1883
+ .e-de-table-border-shading-dlg {
1884
+ width: $de-table-border-shading-dlg-width;
1885
+ @if $skin-name =='Material3'{
1886
+ height: 400px
1887
+ }
1888
+ }
1889
+ .e-de-table-cell-margin-dlg {
1890
+ height: $de-table-cell-margin-dlg-height;
1891
+ width: $de-table-cell-margin-dlg-width;
1892
+ @if $skin-name =='Material3' {
1893
+ padding: 0px 8px
1894
+ }
1895
+ }
1896
+ .e-de-table-options-dlg {
1897
+ height: $de-table-options-dlg-height;
1898
+ width: $de-table-options-dlg-width;
1899
+ }
1900
+ .e-de-table-border-none {
1901
+ position: absolute;
1902
+ top: $de-table-border-none-top;
1903
+ }
1904
+ .e-de-table-border-box {
1905
+ position: absolute;
1906
+ top: $de-table-border-box-top;
1907
+ }
1908
+ .e-de-table-border-all {
1909
+ position: absolute;
1910
+ top: $de-table-border-all-top;
1911
+ }
1912
+ .e-de-table-border-custom {
1913
+ position: absolute;
1914
+ top: $de-table-border-custom-top;
1915
+ }
1916
+ .e-de-table-shading-preview {
1917
+ top: $de-table-shading-preview-top;
1918
+ }
1919
+ // .e-de-font-content-label span.e-label {
1920
+ // color: $de-checkbox-wrapper-color;
1921
+ // }
1922
+ .e-de-font-label span.e-label {
1923
+ color: $de-checkbox-wrapper-color;
1924
+ }
1925
+ .e-de-font-content-label:hover .e-label,
1926
+ .e-css.e-de-font-content-label:hover .e-label {
1927
+ color: $de-checkbox-wrapper-color;
1928
+ }
1929
+ .e-de-font-label:hover .e-label,
1930
+ .e-css.e-de-font-label:hover .e-label {
1931
+ color: $de-checkbox-wrapper-color;
1932
+ }
1933
+ // @if $skin-name !='tailwind' and $skin-name !='bootstrap5' {
1934
+ // .e-documenteditor {
1935
+ // // .e-checkbox-wrapper .e-label {
1936
+ // // color: $de-checkbox-wrapper-color;
1937
+ // // font-size: 14px;
1938
+ // // }
1939
+ // // .e-checkbox-wrapper .e-frame {
1940
+ // // height: $de-checkbox-height;
1941
+ // // line-height: $de-checkbox-line-height;
1942
+ // // width: $de-checkbox-width;
1943
+ // // }
1944
+ // }
1945
+ // }
1946
+ .e-de-op-dlg-footer {
1947
+ margin-top: $de-op-dlg-footer-margin-top;
1948
+ }
1949
+ .e-de-op-dlg-footer .e-btn {
1950
+ // height: $de-dlg-btn-height;
1951
+ padding-left: 6px;
1952
+ padding-right: 6px;
1953
+ }
1954
+ .e-de-search-tab-content .e-input-group .e-de-search-input {
1955
+ width: $de-op-search-input-width;
1956
+ }
1957
+ .e-de-op-replacewith {
1958
+ width: $de-op-replacewith-width;
1959
+ }
1960
+ .e-de-table-ppty-tab {
1961
+ border: $de-table-ppty-tab-border;
1962
+ }
1963
+ // @if $skin-name !='tailwind' {
1964
+ // .e-de-table-container-div .e-checkbox-wrapper .e-label {
1965
+ // color: $de-checkbox-wrapper-color;
1966
+ // }
1967
+ // .e-de-table-header-div .e-checkbox-wrapper .e-label {
1968
+ // color: $de-checkbox-wrapper-color;
1969
+ // }
1970
+ // .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label {
1971
+ // color: $de-checkbox-wrapper-color;
1972
+ // }
1973
+ // .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label {
1974
+ // color: $de-checkbox-wrapper-color;
1975
+ // }
1976
+ // .e-de-table-cell-header-div .e-checkbox-wrapper .e-label {
1977
+ // color: $de-checkbox-wrapper-color;
1978
+ // }
1979
+ // .e-de-tbl-margin-sub-header .e-label {
1980
+ // color: $de-checkbox-wrapper-color;
1981
+ // }
1982
+ // .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label {
1983
+ // color: $de-checkbox-wrapper-color;
1984
+ // }
1985
+ // }
1986
+ // .e-de-table-container-div .e-checkbox-wrapper .e-label {
1987
+ // color: $de-checkbox-wrapper-color;
1988
+ // }
1989
+ // .e-de-table-header-div .e-checkbox-wrapper .e-label {
1990
+ // color: $de-checkbox-wrapper-color;
1991
+ // }
1992
+ // .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label {
1993
+ // color: $de-checkbox-wrapper-color;
1994
+ // }
1995
+ // .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label {
1996
+ // color: $de-checkbox-wrapper-color;
1997
+ // }
1998
+ // .e-de-table-cell-header-div .e-checkbox-wrapper .e-label {
1999
+ // color: $de-checkbox-wrapper-color;
2000
+ // }
2001
+ // .e-de-tbl-margin-sub-header .e-label {
2002
+ // color: $de-checkbox-wrapper-color;
2003
+ // }
2004
+ // .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label {
2005
+ // color: $de-checkbox-wrapper-color;
2006
+ // }
2007
+ .e-de-list-format-info {
2008
+ border-radius: 50% !important;
2009
+ cursor: default;
2010
+ font-size: 12px !important;
2011
+ height: 15px;
2012
+ line-height: 1px;
2013
+ padding: $de-list-info-btn-padding !important;
2014
+ text-transform: lowercase;
2015
+ width: 16px;
2016
+ }
2017
+ .e-button-custom {
2018
+ height: $de-bookmark-custom-btn-height;
2019
+ width: 100%;
2020
+ }
2021
+ .e-bigger {
2022
+ .e-button-custom {
2023
+ height: $de-bigger-style-button-height;
2024
+ width: 100%;
2025
+ }
2026
+ }
2027
+ .e-styles-listview,
2028
+ .e-bookmark-listview {
2029
+ border: 1px solid $bookmark-listview-border-color;
2030
+ border-radius: $de-bookmark-list-view-border-radius;
2031
+ height: 150px;
2032
+ overflow-y: scroll;
2033
+ }
2034
+ .e-bookmark-gotobutton,
2035
+ .e-bookmark-addbutton,
2036
+ .e-styles-addbutton,
2037
+ .e-bookmark-deletebutton {
2038
+ margin-bottom: 12px;
2039
+ }
2040
+ .e-bookmark-list {
2041
+ float: left;
2042
+ margin-right: $de-bookmark-list-margin-right;
2043
+ width: 250px;
2044
+ }
2045
+ .e-bookmark-list.e-de-rtl {
2046
+ margin-left: $de-bkmrk-list-margin-left;
2047
+ margin-right: 0;
2048
+ }
2049
+ .e-bookmark-textboxdiv {
2050
+ margin-bottom: $de-bookmark-textbox-margin-bottom;
2051
+ }
2052
+ .e-bookmark-listview .e-list-item {
2053
+ font-size: 13px;
2054
+ height: 30px;
2055
+ line-height: 27px;
2056
+ }
2057
+ .e-bookmark-common {
2058
+ display: flex;
2059
+ }
2060
+ .e-bookmark-button {
2061
+ position: relative;
2062
+ top: $de-bookmark-button-div-top-position;
2063
+ }
2064
+ .e-font {
2065
+ float: left;
2066
+ }
2067
+ .e-font-rtl {
2068
+ float: right;
2069
+ }
2070
+ .e-de-table-border-toptop-alignment,
2071
+ .e-de-table-border-topcenter-alignment,
2072
+ .e-de-table-border-topbottom-alignment,
2073
+ .e-de-table-border-diagionalup-alignment,
2074
+ .e-de-table-border-diagionaldown-alignment,
2075
+ .e-de-table-border-bottomleft-alignment,
2076
+ .e-de-table-border-bottomcenter-alignment,
2077
+ .e-de-table-border-bottomright-alignment {
2078
+ left: $de-table-border-dlg-alignments-left;
2079
+ position: relative;
2080
+ top: $de-table-border-preview-top;
2081
+ transform: $de-table-border-dlg-alignments-transform;
2082
+ }
2083
+ .e-de-style-properties,
2084
+ .e-de-style-formatting {
2085
+ font-size: $de-style-heading-font-size;
2086
+ font-weight: $de-style-heading-font-weight;
2087
+ color: $de-dlg-heading-main-header;
2088
+ }
2089
+ .e-de-style-formatting {
2090
+ margin-bottom: $de-style-dialog-style-formatting-bottom-margin;
2091
+ }
2092
+ .e-de-style-paragraph-indent-group-button .e-btn,
2093
+ .e-de-style-paragraph-group-button .e-btn,
2094
+ .e-de-style-font-group-button .e-btn {
2095
+ box-shadow: none;
2096
+ }
2097
+ .e-de-table-options-dlg-div {
2098
+ height: auto;
2099
+ position: relative;
2100
+ margin-bottom: 14px;
2101
+ width: $de-dlg-table-options-content-div;
2102
+ }
2103
+ @if $skin-name !='bootstrap4' and $skin-name !='tailwind' {
2104
+ .e-de-style-paragraph-indent-group-button .e-btn.e-active,
2105
+ .e-de-style-paragraph-group-button .e-btn.e-active,
2106
+ .e-de-style-font-group-button .e-btn.e-active {
2107
+ background-color: $de-style-btn-active-bg-border-color;
2108
+ border-color: $de-style-btn-active-bg-border-color;
2109
+ box-shadow: none;
2110
+ color: $de-style-btn-active-text-color;
2111
+ }
2112
+ }
2113
+ .e-de-style-properties {
2114
+ margin-bottom: $de-style-dialog-style-ppties-bottom-margin;
2115
+ }
2116
+ .e-de-style-nametype-div {
2117
+ margin-bottom: $de-style-dialog-style-name-type-div-bottom-margin;
2118
+ }
2119
+ .e-de-style-based-para-div {
2120
+ margin-bottom: $de-style-dialog-style-based-para-div-bottom-margin;
2121
+ }
2122
+ .e-de-style-name,
2123
+ .e-de-style-styletype,
2124
+ .e-de-style-style-based-on,
2125
+ .e-de-style-style-paragraph {
2126
+ font-weight: $de-header-font-weight;
2127
+ margin-bottom: $de-style-dialog-label-bottom-margin;
2128
+ font-size: $de-style-font-size;
2129
+ @if $skin-name !='tailwind' {
2130
+ width: 180px;
2131
+ }
2132
+ }
2133
+ .e-de-style-left-div {
2134
+ margin-right: $de-style-dialog-style-left-div-right-margin;
2135
+ }
2136
+ .e-de-style-left-div.e-de-rtl {
2137
+ margin-left: $de-style-dialog-style-left-div-right-margin;
2138
+ margin-right: 0;
2139
+ }
2140
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2141
+ .e-de-style-font-color-picker,
2142
+ .e-de-style-icon-button-size,
2143
+ .e-de-style-icon-button-first-size,
2144
+ .e-de-style-icon-button-last-size {
2145
+ height: 31px;
2146
+ }
2147
+ }
2148
+ .e-bigger {
2149
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2150
+ .e-de-style-font-color-picker,
2151
+ .e-de-style-icon-button-size,
2152
+ .e-de-style-icon-button-first-size,
2153
+ .e-de-style-icon-button-last-size {
2154
+ height: 35px;
2155
+ }
2156
+ }
2157
+ .e-de-style-bold-button-size {
2158
+ margin-left: $de-style-dialog-label-bottom-margin;
2159
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
2160
+ margin-right: 8px;
2161
+ height: 35px;
2162
+ }
2163
+ }
2164
+ }
2165
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog {
2166
+ .e-de-style-font-group-button,
2167
+ .e-style-paragraph {
2168
+ button {
2169
+ @if $skin-name =='Material3' {
2170
+ height: 40px !important;
2171
+ width: 44px !important;
2172
+ }
2173
+ }
2174
+ }
2175
+ .e-de-style-font-color-picker button {
2176
+ height: 40px !important;
2177
+ width: auto !important;
2178
+ }
2179
+ }
2180
+
2181
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog {
2182
+ .e-de-style-font-group-button,
2183
+ .e-style-paragraph {
2184
+ button {
2185
+ @if $skin-name =='Material3' {
2186
+ height: 40px !important;
2187
+ width: 44px !important;
2188
+ }
2189
+ }
2190
+ }
2191
+ .e-de-style-font-color-picker button {
2192
+ height: 40px !important;
2193
+ width: auto !important;
2194
+ }
2195
+ }
2196
+
2197
+ @if $skin-name =='Material3' {
2198
+ .e-bigger {
2199
+ .e-rtl {
2200
+ .e-de-style-font-group-button,
2201
+ .e-de-style-paragraph-indent-group-button,
2202
+ .e-de-style-paragraph-group-button {
2203
+ button {
2204
+ height: 40px !important;
2205
+ width: 44px !important;
2206
+ }
2207
+ }
2208
+ }
2209
+ .e-de-style-font-group-button,
2210
+ .e-de-style-paragraph-indent-group-button,
2211
+ .e-de-style-paragraph-group-button {
2212
+ button {
2213
+ height: 40px !important;
2214
+ width: 44px !important;
2215
+ }
2216
+ }
2217
+ }
2218
+ .e-de-style-font-group-button button,
2219
+ .e-de-style-paragraph-indent-group-button button,
2220
+ .e-de-style-paragraph-group-button button {
2221
+ width: 36px;
2222
+ border-radius: 4px;
2223
+ margin-right: 5px;
2224
+ background: $de-style-dlg-btn-bg-color;
2225
+ }
2226
+ }
2227
+ .e-de-style-bold-button-size {
2228
+ margin-left: $de-style-dialog-label-bottom-margin;
2229
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2230
+ margin-right: 8px;
2231
+ height: 31px;
2232
+ }
2233
+ }
2234
+ .e-de-style-format-dropdwn .e-btn-icon {
2235
+ margin-left: 8px;
2236
+ }
2237
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2238
+ .e-de-style-font-color-picker,
2239
+ .e-de-style-icon-button-size {
2240
+ margin-right: $de-style-dialog-label-bottom-margin;
2241
+ }
2242
+ }
2243
+ .e-de-style-icon-button-first-size {
2244
+ margin-left: $de-style-dialog-label-bottom-margin;
2245
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2246
+ margin-right: 3px;
2247
+ }
2248
+ }
2249
+ .e-de-style-icon-button-last-size {
2250
+ margin-right: $de-style-dialog-label-bottom-margin;
2251
+ }
2252
+ .e-de-style-font-color-picker {
2253
+ margin-left: $de-style-dialog-label-bottom-margin;
2254
+ }
2255
+ .e-style-font-fmaily-right {
2256
+ margin-right: $de-style-dialog-label-bottom-margin;
2257
+ }
2258
+ .e-style-font {
2259
+ margin-left: $de-style-font-margin-left;
2260
+ margin-right: $de-style-font-margin-right;
2261
+ }
2262
+ .e-de-style-dlg-name-input {
2263
+ height: $e-de-style-input-text-height;
2264
+ }
2265
+ .e-style-list {
2266
+ margin-left: $de-style-list-margin-left;
2267
+ }
2268
+ .e-de-style-dialog .e-de-style-only-this-document {
2269
+ margin-top: 25px;
2270
+ }
2271
+ .e-de-style-format-dropdwn {
2272
+ @if $skin-name == 'FluentUI' {
2273
+ width: 145px;
2274
+ }
2275
+ @else
2276
+ {
2277
+ width: 135px;
2278
+ @if $skin-name =='Material3' {
2279
+ background: $de-style-dlg-btn-bg-color;
2280
+ border-radius: 2px;
2281
+ }
2282
+ }
2283
+ }
2284
+ .e-de-style-options-div,
2285
+ .e-de-style-options-div>div:first-child {
2286
+ margin-bottom: $de-style-dialog-option-div-bottom-margin !important;
2287
+ }
2288
+ .e-de-style-paragraph-group-button {
2289
+ @if $skin-name !='Material3' {
2290
+ border-right: 2px solid $de-style-toggle-btn-color;
2291
+ }
2292
+ }
2293
+ .e-de-style-font-group-button {
2294
+ @if $skin-name !='Material3' {
2295
+ border-left: 2px solid $de-style-toggle-btn-color;
2296
+ border-right: 2px solid $de-style-toggle-btn-color;
2297
+ }
2298
+ @if $skin-name=='bootstrap5' or $skin-name == 'FluentUI' {
2299
+ padding-right: $de-style-dialog-option-div-bottom-margin;
2300
+ }
2301
+ }
2302
+ .e-de-op-replace-messagediv {
2303
+ color: $de-op-container-messagediv-color;
2304
+ top: auto;
2305
+ }
2306
+ @if $skin-name !='bootstrap5' and $skin-name !='FluentUI' {
2307
+ .e-de-font-content-label .e-label,
2308
+ .e-de-font-dlg-cb-right .e-label,
2309
+ .e-de-font-checkbox .e-label {
2310
+ font-size: $de-font-checkbox-label-font-size;
2311
+ @if $skin-name=='tailwind' {
2312
+ line-height: 1.5;
2313
+ }
2314
+ }
2315
+ .e-de-font-content-label .e-frame,
2316
+ .e-de-font-dlg-cb-right .e-frame,
2317
+ .e-de-font-checkbox .e-frame,
2318
+ .e-de-font-content-label-caps .e-frame,
2319
+ .e-de-cntr-pane-padding .e-frame {
2320
+ height: $de-checkbox-height;
2321
+ line-height: $de-checkbox-line-height;
2322
+ width: $de-checkbox-width;
2323
+ }
2324
+ }
2325
+ .e-de-op-input-group,
2326
+ .e-de-op-replacewith {
2327
+ height: $de-op-input-group-height;
2328
+ }
2329
+ .e-bigger {
2330
+ .e-de-op-input-group,
2331
+ .e-de-op-replacewith {
2332
+ height: 40px;
2333
+ }
2334
+ }
2335
+ .e-de-hyperlink-bookmark-check {
2336
+ margin-top: $de-hyperlink-bookmark-check-margin-top;
2337
+ }
2338
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name !='FluentUI' {
2339
+ .e-de-table-container-div .e-checkbox-wrapper .e-frame,
2340
+ .e-de-table-header-div .e-checkbox-wrapper .e-frame,
2341
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-frame,
2342
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-frame,
2343
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-frame,
2344
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-frame,
2345
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-frame,
2346
+ .e-de-tbl-margin-sub-header .e-frame {
2347
+ height: $de-checkbox-height;
2348
+ line-height: $de-checkbox-line-height;
2349
+ width: $de-checkbox-width;
2350
+ }
2351
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2352
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2353
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2354
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label,
2355
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2356
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2357
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2358
+ .e-de-tbl-margin-sub-header .e-label {
2359
+ font-size: 14px;
2360
+ }
2361
+ }
2362
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2363
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2364
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2365
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label,
2366
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2367
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2368
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2369
+ .e-de-tbl-margin-sub-header .e-label {
2370
+ font-size: 14px;
2371
+ }
2372
+ .e-de-table-ppty-dlg-measure-div {
2373
+ float: right;
2374
+ margin-left: $de-table-ppty-dlg-measure-div-margin-left;
2375
+ margin-top: -18px;
2376
+ }
2377
+ .e-de-table-ppty-dlg-measure-div.e-de-rtl {
2378
+ float: left;
2379
+ margin-left: 0;
2380
+ margin-right: $de-table-ppty-dlg-measure-div-margin-left;
2381
+ }
2382
+ .e-de-table-ppty-dlg-measure-drop-down-div {
2383
+ float: right;
2384
+ margin-left: $de-table-ppty-dlg-measure-div-margin-left;
2385
+ margin-top: $de-table-ppty-dlg-measure-div-margin-top;
2386
+ width: 120px;
2387
+ }
2388
+ .e-de-table-ppty-dlg-measure-drop-down-div.e-de-rtl {
2389
+ margin-left: 0;
2390
+ margin-right: $de-table-ppty-dlg-measure-div-margin-left;
2391
+ }
2392
+ .e-de-table-ppty-dlg-left-indent-container {
2393
+ @if $skin-name =='Material3' {
2394
+ bottom: $e-de-table-ppty-dlg-left-indent-container-bottom;
2395
+ left: $de-table-prop-left-indnt-cntr-pos;
2396
+ position: relative;
2397
+ }
2398
+ }
2399
+ .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2400
+ @if $skin-name =='Material3' {
2401
+ right: $de-table-prop-left-indnt-cntr-pos;
2402
+ }
2403
+ }
2404
+ .e-de-table-ppty-dlg-row-height-label {
2405
+ float: right;
2406
+ margin-right: $de-table-ppty-dlg-row-height-label-margin-right;
2407
+ margin-top: $de-table-ppty-dlg-row-height-label-margin-top;
2408
+ }
2409
+ .e-de-table-ppty-dlg-row-height-label.e-de-rtl {
2410
+ float: left;
2411
+ margin-left: $de-table-ppty-dlg-row-height-label-margin-right;
2412
+ margin-right: 0;
2413
+ }
2414
+ .e-de-table-ppty-dlg-preferred-width-div {
2415
+ float: right;
2416
+ margin-left: $de-table-ppty-dlg-preferred-width-margin-left;
2417
+ margin-top: $de-table-ppty-dlg-preferred-width-margin-top;
2418
+ width: 120px;
2419
+ }
2420
+ .e-de-table-ppty-dlg-preferred-width-div.e-de-rtl {
2421
+ margin-left: 0;
2422
+ margin-right: $de-table-ppty-dlg-preferred-width-margin-left;
2423
+ width: 120px;
2424
+ }
2425
+ .e-de-table-ppty-options-break {
2426
+ margin-bottom: $de-table-ppty-options-break-margin-bottom;
2427
+ }
2428
+ .e-de-table-cell-subheader-div {
2429
+ margin-right: $de-table-cell-subheader-div-margin-right;
2430
+ margin-top: $de-table-cell-subheader-div-margin-top;
2431
+ }
2432
+ .e-de-table-cell-subheader-div.e-de-rtl {
2433
+ margin-left: $de-table-cell-subheader-div-margin-right;
2434
+ margin-right: 0;
2435
+ }
2436
+ .e-de-table-ppty-dlg-cell-tab-measure-label {
2437
+ float: right;
2438
+ margin-right: $de-table-ppty-dlg-cell-tab-measure-label-margin-right;
2439
+ margin-top: $de-table-ppty-dlg-cell-tab-measure-label-margin-top;
2440
+ }
2441
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-row-header {
2442
+ padding-left: $de-table-ppty-dlg-table-header-padding;
2443
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2444
+ }
2445
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-cell-header {
2446
+ padding-left: $de-table-ppty-dlg-table-header-padding;
2447
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2448
+ }
2449
+ .e-tab .e-tab-header .e-toolbar-item .e-de-page-setup-dlg-margin-tab-header {
2450
+ padding-left: $de-table-ppty-dlg-table-header-padding-left;
2451
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2452
+ }
2453
+ .e-styles-list {
2454
+ float: left;
2455
+ margin-right: $de-bookmark-listview-margin-right;
2456
+ width: 250px;
2457
+ }
2458
+ .e-styles-textboxdiv {
2459
+ padding-bottom: 15px;
2460
+ }
2461
+ .e-styles-listview .e-list-item {
2462
+ font-size: 13px;
2463
+ height: 30px;
2464
+ line-height: 27px;
2465
+ }
2466
+ .e-styles-common {
2467
+ padding-top: 5px;
2468
+ }
2469
+ .e-styles-button {
2470
+ float: right;
2471
+ }
2472
+ .e-de-toc-dlg-right-sub-container.e-de-rtl {
2473
+ margin-left: $de-toc-dlg-right-sub-container-margin-right;
2474
+ margin-right: $de-toc-dlg-right-sub-container-margin-right;
2475
+ }
2476
+ .e-de-toc-dlg-styles {
2477
+ margin-bottom: $de-toc-dlg-styles-margin-bottom;
2478
+ margin-left: $de-toc-dlg-styles-margin-left;
2479
+ margin-top: $de-toc-dlg-styles-margin-top;
2480
+ }
2481
+ .e-de-toc-dlg-styles.e-de-rtl {
2482
+ margin-left: 0;
2483
+ margin-right: $de-toc-dlg-styles-margin-left;
2484
+ }
2485
+ .e-de-toc-dlg-style-input.e-de-rtl {
2486
+ margin-left: 0;
2487
+ margin-right: $de-toc-dlg-style-input-margin-left;
2488
+ }
2489
+ .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2490
+ height: 24px;
2491
+ margin-left: $de-toc-dlg-toc-level-margin-left;
2492
+ width: 44px;
2493
+ }
2494
+ .e-de-toc-styles-table-div {
2495
+ border: 1px solid $de-toc-list-view-border-color;
2496
+ border-radius: $de-toc-styles-table-div-border-radius;
2497
+ margin-top: $de-toc-styles-table-div-margin-top;
2498
+ width: $de-toc-list-view-width;
2499
+ height: $de-toc-table-list-view-height;
2500
+ }
2501
+ .e-de-toc-dlg-sub-level-heading {
2502
+ font-size: 12px;
2503
+ }
2504
+ .e-de-toc-table-div {
2505
+ height: $e-de-toc-table-div-height;
2506
+ overflow-y: scroll;
2507
+ width: $de-toc-table-div-width;
2508
+ }
2509
+ .e-de-toc-dlg-style-input {
2510
+ margin-bottom: $de-toc-dlg-style-input-margin-bottom;
2511
+ margin-left: $de-toc-dlg-style-input-margin-left;
2512
+ width: $de-toc-dlg-style-input-width;
2513
+ }
2514
+ .e-de-toc-dlg-outline-levels {
2515
+ margin-top: 15px;
2516
+ width: $de-toc-dlg-outline-levels-width;
2517
+ }
2518
+ .e-bookmark-textboxdiv .e-bookmark-textbox-input {
2519
+ height: $de-bookmark-textbox-height;
2520
+ }
2521
+ .e-styles-dlgfields {
2522
+ font-weight: $de-header-font-weight;
2523
+ margin-bottom: 6px;
2524
+ }
2525
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-find-tab-header {
2526
+ padding-left: $de-op-tab-header-padding-left;
2527
+ padding-right: $de-op-tab-header-padding;
2528
+ }
2529
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-replace-tab-header {
2530
+ padding-left: $de-op-tab-header-padding-left;
2531
+ padding-right: $de-op-tab-header-padding;
2532
+ }
2533
+ .e-de-dlg-target .e-footer-content .e-list-dlg-font {
2534
+ margin-left: $de-list-dlg-font-margin-left;
2535
+ }
2536
+ .e-bookmark-dlgfields {
2537
+ font-weight: $de-header-font-weight;
2538
+ font-size: $de-dlg-bkm-fld-fnt-size;
2539
+ margin-bottom: $de-bookmark-dlgfields-margin-bottom;
2540
+ }
2541
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-menuitem-md {
2542
+ height: $de-floating-menu-height;
2543
+ padding: $de-floating-menu-padding;
2544
+ width: $de-floating-menu-width;
2545
+ }
2546
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-bullet-menuitem-md {
2547
+ height: 45px;
2548
+ width: 45px;
2549
+ }
2550
+ .e-de-bullet-icon-size {
2551
+ height: 45px;
2552
+ width: 45px;
2553
+ }
2554
+ .e-de-ui-list-header-presetmenu {
2555
+ cursor: pointer;
2556
+ font-size: 11px;
2557
+ line-height: 14px;
2558
+ min-width: $de-ui-list-header-presetmenu-min-width;
2559
+ overflow: hidden;
2560
+ text-align: left;
2561
+ white-space: nowrap;
2562
+ width: 100%;
2563
+ @if $skin-name=='tailwind' {
2564
+ color: $icon-color;
2565
+ }
2566
+ }
2567
+ .e-de-number-bullet-dlg .e-tab .e-content .e-item {
2568
+ padding: 0px;
2569
+ }
2570
+ .e-de-number-bullet-dlg {
2571
+ width: $de-bullet-numbered-dlg-width;
2572
+ }
2573
+ .e-de-style-numbered-list,
2574
+ .e-de-ui-bullet-list-header-presetmenu {
2575
+ height: $de-bullet-numbered-dlg-height;
2576
+ }
2577
+ .e-de-ui-bullet {
2578
+ font-size: 42px;
2579
+ }
2580
+ .e-de-ui-list-header-presetmenu .e-de-ui-list-line {
2581
+ border-bottom: 1px solid $de-numbering-list-line-color;
2582
+ margin-left: 5px;
2583
+ width: 100%;
2584
+ }
2585
+ .e-de-ui-list-header-presetmenu div span {
2586
+ color: $de-numbering-list-span-color;
2587
+ display: inline-block;
2588
+ vertical-align: middle;
2589
+ }
2590
+ .e-de-ui-wfloating-menu .e-de-ui-wfloating-menuitem,
2591
+ .e-de-ui-wfloating-menu .e-de-ui-menuitem-none {
2592
+ border: 0;
2593
+ box-shadow: inset 0 0 0 1px $de-numbering-list-border-color;
2594
+ cursor: pointer;
2595
+ height: 70px;
2596
+ margin: $de-ui-wfloating-menu;
2597
+ padding: 0;
2598
+ width: 70px;
2599
+ }
2600
+ .e-de-ui-wfloating-menu {
2601
+ padding: $de-ui-floating-menu-padding;
2602
+ }
2603
+ .e-de-list-thumbnail .e-de-list-items {
2604
+ float: left;
2605
+ }
2606
+ .e-de-list-thumbnail .e-de-list-items {
2607
+ background: $de-numbering-list-background-color;
2608
+ border: 1px solid transparent;
2609
+ clear: initial;
2610
+ display: inline-block;
2611
+ height: auto;
2612
+ margin: 5px;
2613
+ text-align: center;
2614
+ width: auto;
2615
+ }
2616
+ .e-de-list-items {
2617
+ background: $de-numbering-list-background-color;
2618
+ box-sizing: border-box;
2619
+ cursor: pointer;
2620
+ list-style: none;
2621
+ padding: 7px 10px;
2622
+ position: relative;
2623
+ }
2624
+ .e-de-list-item-size {
2625
+ font-size: 14px;
2626
+ }
2627
+ .e-de-ui-wfloating-menu {
2628
+ padding: $de-ui-floating-menu-padding;
2629
+ }
2630
+ .e-de-table-ppty-dlg-tabs {
2631
+ height: $de-table-ppty-dlg-tabs-height;
2632
+ position: relative;
2633
+ }
2634
+ .e-de-ui-bullet-list-header-presetmenu .e-de-list-thumbnail .e-de-list-active,
2635
+ .e-de-style-numbered-list .e-de-list-thumbnail .e-de-list-active {
2636
+ border-color: $de-table-align-active-color;
2637
+ }
2638
+ .e-de-rp-sub-content-div {
2639
+ line-height: $de-rp-content-ln-ht;
2640
+ font-size: $de-rp-font-size;
2641
+ margin-bottom: 8px;
2642
+ }
2643
+ .e-de-bullet-icons {
2644
+ left: 50%;
2645
+ position: absolute;
2646
+ top: 50%;
2647
+ transform: translate(-50%, -50%);
2648
+ }
2649
+ .e-de-header-footer-list {
2650
+ color: $de-op-search-txt;
2651
+ }
2652
+
2653
+ .e-de-ltr-btn-div {
2654
+ font-size: 12px;
2655
+ @if $skin-name =='Material3' {
2656
+ width: 100px;
2657
+ }
2658
+ @else {
2659
+ width: 200px;
2660
+ }
2661
+ }
2662
+ .e-de-tbl-rtl-btn-div {
2663
+ font-size: 12px;
2664
+ margin-right: 14px;
2665
+ //width: 140px;
2666
+ }
2667
+ .e-de-tbl-rtl-btn-div.e-de-rtl {
2668
+ margin-left: 14px;
2669
+ margin-right: 0;
2670
+ }
2671
+ .e-de-tbl-ltr-btn-div {
2672
+ font-size: 12px;
2673
+ //width: 140px;
2674
+ }
2675
+
2676
+ .e-de-disabledbutton {
2677
+ opacity: $de-paradialog-dir-div;
2678
+ pointer-events: none;
2679
+ }
2680
+ .e-bigger {
2681
+ .e-de-insert-table {
2682
+ height: auto;
2683
+ width: auto;
2684
+ }
2685
+ .e-de-insert-footnote {
2686
+ height: auto;
2687
+ width: auto;
2688
+ }
2689
+ .e-de-dlg-target .e-footer-content .e-control.e-btn.e-flat:not(.e-icon-btn) {
2690
+ height: auto;
2691
+ }
2692
+ .e-de-font-dlg {
2693
+ width: $de-font-dlg-width-big;
2694
+ }
2695
+ .e-para-dlg-sub-height {
2696
+ height: 170px;
2697
+ }
2698
+ .e-de-toc-table-div .e-de-toc-dlg-toc-level.e-de-rtl {
2699
+ margin-right: $de-toc-dlg-toc-level-margin-left;
2700
+ }
2701
+ .e-de-font-content-label-width {
2702
+ width: $de-font-content-label-width;
2703
+ }
2704
+ .e-de-toc-label {
2705
+ margin-left: 0px;
2706
+ }
2707
+ .e-de-toc-label-rtl {
2708
+ margin-left: 0px;
2709
+ margin-right: 0px;
2710
+ }
2711
+ .e-de-outline-rtl {
2712
+ width: 173px;
2713
+ }
2714
+ .e-de-rp-header {
2715
+ font-size: 16px;
2716
+ width: 75%;
2717
+ }
2718
+ }
2719
+ .e-de-restrict-format {
2720
+ margin-top: 16px;
2721
+ }
2722
+ .e-de-rp-format {
2723
+ font-size: $de-rp-format-font-size;
2724
+ @if $skin-name == 'FluentUI'{
2725
+ margin-bottom: 16px;
2726
+ }
2727
+ @else {
2728
+ margin-bottom: 12px;
2729
+ opacity: 0.65;
2730
+ }
2731
+ font-weight: $de-header-font-weight;
2732
+ }
2733
+ .e-de-rp-checkbox {
2734
+ font-size: 12px;
2735
+ }
2736
+ .e-de-rp-border {
2737
+ margin-bottom: 12px;
2738
+ margin-top: 12px;
2739
+ }
2740
+ .e-de-rp-header {
2741
+ font-size: 15px;
2742
+ font-weight: $de-header-font-weight;
2743
+ opacity: 0.87;
2744
+ color: $de-op-title-clr;
2745
+ width: 75%;
2746
+ }
2747
+ @if $skin-name !='tailwind' {
2748
+ // .e-de-restrict-pane {
2749
+ // .e-checkbox-wrapper .e-label {
2750
+ // color: $de-checkbox-wrapper-color;
2751
+ // font-size: 12px;
2752
+ // }
2753
+ // .e-checkbox-wrapper .e-frame {
2754
+ // height: 16px;
2755
+ // width: 16px;
2756
+ // }
2757
+ // .e-checkbox-wrapper {
2758
+ // margin-bottom: 8px;
2759
+ // }
2760
+ // }
2761
+ .e-de-rp-user .e-checkbox-wrapper {
2762
+ width: auto;
2763
+ }
2764
+ }
2765
+ .e-de-rp-nav-btn,
2766
+ .e-de-rp-btn-enforce {
2767
+ @if $skin-name !='tailwind' {
2768
+ background: $de-rp-btn-bg-color;
2769
+ font-size: 13px;
2770
+ }
2771
+ opacity: 0.87;
2772
+ border-radius: 2px;
2773
+ box-shadow: $de-rp-btn-enforce-bx-shadow;
2774
+ // @if $skin-name !='FluentUI' {
2775
+ // height: 36px;
2776
+ // }
2777
+ @if $skin-name=='bootstrap4' {
2778
+ border-color: $de-cmt-separator;
2779
+ box-shadow: none;
2780
+ color: $de-cmt-pant-content-font;
2781
+ opacity: 1;
2782
+ }
2783
+ }
2784
+ .e-bigger .e-de-rp-btn-enforce {
2785
+ padding-left: $de-rp-btn-enforce-padding-big;
2786
+ padding-right: $de-rp-btn-enforce-padding-big;
2787
+ }
2788
+ .e-de-rp-nav-btn {
2789
+ //margin: $de-rp-nav-btn-mrgn;
2790
+ width: auto;
2791
+ }
2792
+ .e-de-rp-btn-stop-enforce {
2793
+ @if $skin-name !='tailwind' {
2794
+ background: $de-rp-btn-bg-color;
2795
+ font-size: 13px;
2796
+ opacity: 0.87;
2797
+ }
2798
+ border-radius: 2px;
2799
+ box-shadow: $de-rp-btn-enforce-bx-shadow;
2800
+ // @if $skin-name !='FluentUI' {
2801
+ // height: 36px;
2802
+ // }
2803
+ //margin: $de-rp-btn-enforce-prtct-margin;
2804
+ @if $skin-name=='bootstrap4' {
2805
+ border-color: $de-cmt-separator;
2806
+ box-shadow: none;
2807
+ color: $de-cmt-pant-content-font;
2808
+ opacity: 1;
2809
+ }
2810
+ }
2811
+ .e-de-rp-sub-div {
2812
+ border-bottom: 1px solid $de-list-view;
2813
+ padding: $de-rp-sub-div-padding;
2814
+ }
2815
+ .e-de-restrict-pane {
2816
+ padding-left: 0;
2817
+ padding-top: 0;
2818
+ padding-right: 0;
2819
+ }
2820
+ .e-de-rp-whole-header {
2821
+ padding: $de-rp-whole-header-padding;
2822
+ }
2823
+ .e-de-rp-user {
2824
+ background: $de-numbering-list-background-color;
2825
+ border: 1px solid $de-list-view;
2826
+ border-radius: 2px;
2827
+ font-size: 12px;
2828
+ height: 110px;
2829
+ //width: 238px;
2830
+ }
2831
+ .e-de-rp-enforce {
2832
+ padding: $de-rp-enforce-padding;
2833
+ // @if $skin-name=='bootstrap4' {
2834
+ // text-align: center;
2835
+ // }
2836
+ }
2837
+ .e-de-rp-enforce-nav {
2838
+ margin: 0 12px 12px 12px;
2839
+ }
2840
+ .e-de-enforce-dlg-title {
2841
+ font-size: $de-enforce-dlg-title-fnt-size;
2842
+ font-weight: $de-header-font-weight;
2843
+ margin-bottom: $de-hyperlink-dlg-margin-bottom;
2844
+ }
2845
+ .e-de-enforce .e-de-enforce-dlg-input {
2846
+ height: $de-hyperlink-dlg-input-height;
2847
+ //margin-bottom: $de-enforce-btn-mrng-btm;
2848
+ width: 300px;
2849
+ }
2850
+ .e-de-user-add-btn {
2851
+ @if ($skin-name !='bootstrap4' and $skin-name !='tailwind' and $skin-name !='bootstrap5') {
2852
+ background: $de-style-toggle-btn-color;
2853
+ }
2854
+ border-radius: 2px;
2855
+ width: 74px;
2856
+ }
2857
+ .e-de-user-dlg .e-de-user-dlg-textbox-input {
2858
+ margin-right: $de-user-dlg-textbox-input-mrgn-right;
2859
+ width: 304px;
2860
+ }
2861
+ .e-de-user-dlg-list.e-de-rtl .e-de-user-dlg-textbox-input {
2862
+ margin-right: 0;
2863
+ margin-left: $de-user-dlg-textbox-input-mrgn-right;
2864
+ }
2865
+ .e-de-user-dlg-list {
2866
+ margin-bottom: $de-user-dlg-list-mrgn-btm;
2867
+ display: inline-flex;
2868
+ }
2869
+ .e-de-user-listview {
2870
+ border: 1px solid $de-list-view;
2871
+ border-radius: 2px;
2872
+ height: 106px;
2873
+ }
2874
+ .e-de-user-dlg-user {
2875
+ margin-bottom: $de-user-dlg-user-mrgn-btm;
2876
+ @if $skin-name=='tailwind' {
2877
+ color: $de-dlg-heading-main-header;
2878
+ font-weight: $de-para-dlg-heading-font-weight;
2879
+ }
2880
+ }
2881
+ .e-user-delete {
2882
+ float: left;
2883
+ }
2884
+ .e-de-unprotect-dlg-title {
2885
+ font-size: $de-unprotect-dlg-title-fnt-size;
2886
+ margin-bottom: $de-unprotect-dlg-title-mrgn-btm;
2887
+ }
2888
+ .e-de-rp-stop-div1 {
2889
+ @if $skin-name != 'FluentUI' {
2890
+ opacity: 0.87;
2891
+ }
2892
+ padding: 12px 12px 6px 12px;
2893
+ font-weight: 500;
2894
+ border-bottom: 1px solid #e0e0e0;
2895
+ }
2896
+ .e-de-rp-stop-div2 {
2897
+ padding: 12px 12px 24px;
2898
+ }
2899
+ // .e-de-rp-stop-div3 {
2900
+ // padding: 0 0 12px 12px;
2901
+ // }
2902
+ .e-de-rp-close-icon {
2903
+ float: right;
2904
+ position: relative;
2905
+ top: $de-rp-close-icon-top;
2906
+ right: $de-rp-close-icon-right;
2907
+ }
2908
+ .e-de-restrict-pane {
2909
+ height: 100%;
2910
+ overflow: auto;
2911
+ overflow-x: hidden;
2912
+ width: $de-rp-width;
2913
+ }
2914
+ .e-de-rp-nav-lbl {
2915
+ font-size: 13px;
2916
+ margin: 0 12px;
2917
+ }
2918
+ .e-documenteditor-optionspane {
2919
+ height: 100%;
2920
+ }
2921
+ //Comment Implementation
2922
+ .e-de-cmt-pane {
2923
+ background-color: inherit;
2924
+ color: $de-cmt-pant-content-font;
2925
+ }
2926
+ .e-de-cp-whole-header {
2927
+ padding: 12px;
2928
+ }
2929
+ .e-de-cp-header {
2930
+ font-size: 13px;
2931
+ font-weight: 500;
2932
+ opacity: 0.87;
2933
+ width: 75%;
2934
+ }
2935
+ .e-de-cmt-container {
2936
+ height: auto;
2937
+ padding: $de-cmt-container-padding;
2938
+ overflow: auto;
2939
+ }
2940
+ .e-de-cmt-sub-container {
2941
+ @if $skin-name !='tailwind' and $skin-name != 'FluentUI' {
2942
+ background-color: $de-background;
2943
+ }
2944
+ @if $skin-name !='Material3' {
2945
+ border: 1px solid $de-cmt-separator;
2946
+ border-radius: 2px;
2947
+ }
2948
+ margin: $de-cmt-sub-container-margin;
2949
+ padding: $de-cmt-sub-container-padding;
2950
+ }
2951
+ .e-de-cmt-view {
2952
+ cursor: default;
2953
+ }
2954
+ .e-de-cmt-sub-container.e-de-cmt-selection {
2955
+ border-left: 3px solid $de-cmt-selection;
2956
+ padding-left: $de-cmt-sub-container-padding-left;
2957
+ }
2958
+ .e-de-tc-outer {
2959
+ border-bottom: 1px solid #d8d8d8;
2960
+ }
2961
+ .e-de-tc-pane {
2962
+ color: $de-cmt-pant-content-font;
2963
+ }
2964
+ .e-de-trckchanges-inner {
2965
+ cursor: default;
2966
+ margin: $de-trckchanges-inner-mrgn;
2967
+ padding-left: 8px;
2968
+ padding-right: 16px;
2969
+ padding-bottom: 8px;
2970
+ }
2971
+ .e-de-trckchanges-inner:hover {
2972
+ border-left: 2px solid $de-cmt-selection;
2973
+ cursor: default;
2974
+ margin: $de-trckchanges-inner-mrgn;
2975
+ padding-left: 6px;
2976
+ padding-right: 16px;
2977
+ padding-bottom: 8px;
2978
+ }
2979
+ .e-de-trckchanges-inner.e-de-trckchanges-inner-select {
2980
+ border-left: 3px solid $de-cmt-selection;
2981
+ cursor: default;
2982
+ margin: $de-trckchanges-inner-mrgn;
2983
+ padding-left: 5px;
2984
+ padding-right: 16px;
2985
+ padding-bottom: 8px;
2986
+ }
2987
+ .e-de-tc-no-chng {
2988
+ color: $de-input-color;
2989
+ font-size: 14px;
2990
+ opacity: 65%;
2991
+ margin: 60px 0;
2992
+ text-align: center;
2993
+ }
2994
+ .e-tc-btn-bg-clr.e-btn:not(:hover):not(.e-active) {
2995
+ background-color: inherit;
2996
+ border-color: transparent;
2997
+ color: inherit;
2998
+ }
2999
+ .e-tc-nvgte.e-icon-btn {
3000
+ text-align: center;
3001
+ vertical-align: middle;
3002
+ }
3003
+ .e-de-track-span-user {
3004
+ display: inline-flex;
3005
+ overflow: hidden;
3006
+ width: 110px;
3007
+ }
3008
+ .e-de-track-span-view {
3009
+ display: inline-flex;
3010
+ overflow: hidden;
3011
+ width: 50px;
3012
+ }
3013
+ .e-btn.e-outline.e-de-track-accept-button {
3014
+ min-width: 66px;
3015
+ padding: 5px $de-tc-btn-padding;
3016
+ text-transform: initial;
3017
+ }
3018
+ .e-btn.e-outline.e-de-track-accept-button:hover {
3019
+ min-width: 66px;
3020
+ padding: 5px $de-tc-btn-padding;
3021
+ text-transform: initial;
3022
+ }
3023
+ .e-btn.e-outline.e-de-track-reject-button {
3024
+ min-width: 64px;
3025
+ padding: 5px 6px;
3026
+ margin-left: 8px;
3027
+ text-transform: initial;
3028
+ }
3029
+ .e-btn.e-outline.e-de-track-reject-button:hover {
3030
+ min-width: 64px;
3031
+ padding: 5px 6px;
3032
+ margin-left: 8px;
3033
+ text-transform: initial;
3034
+ }
3035
+ .e-de-track-chngs-count {
3036
+ font-size: 12px;
3037
+ margin-left: 6px;
3038
+ opacity: 0.87;
3039
+ padding-top: 7px;
3040
+ white-space: nowrap;
3041
+ }
3042
+ .e-de-track-insert {
3043
+ color: $de-track-chngs-sucs-bg-color;
3044
+ font-size: 13px;
3045
+ opacity: 100%;
3046
+ }
3047
+ .e-de-track-delete {
3048
+ color: $de-track-chngs-rejct-bg-color;
3049
+ font-size: 13px;
3050
+ opacity: 100%;
3051
+ }
3052
+ @if $skin-name !='tailwind' {
3053
+ .e-de-track-toolbar {
3054
+ border-bottom: 1px solid #d8d8d8;
3055
+ border-top: 1px solid #d8d8d8;
3056
+ padding-bottom: $de-tc-tlbr-padding-btm;
3057
+ }
3058
+ .e-de-track-pane-drop-btn {
3059
+ padding-left: 0px;
3060
+ padding-right: 0px;
3061
+ @if $skin-name =='Material3' {
3062
+ padding-top: 10px !important;
3063
+ }
3064
+ @else {
3065
+ padding-top: 5px;
3066
+ }
3067
+ font-size: 13px;
3068
+ font-weight: $de-header-font-weight;
3069
+ }
3070
+ @if ($skin-name =='fabric' or $skin-name =='bootstrap') {
3071
+ .e-de-track-toolbar .e-de-track-pane-drop-btn {
3072
+ padding-top: 4px !important;
3073
+ }
3074
+ }
3075
+ }
3076
+ .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
3077
+ opacity: 1;
3078
+ font-weight: $de-header-font-weight;
3079
+ font-size: $de-cmt-author-nme-fnt-size;
3080
+ }
3081
+ .e-de-track-date {
3082
+ font-size: $de-cmt-date-fnt-size;
3083
+ margin-top: 4px;
3084
+ opacity: 0.67;
3085
+ }
3086
+ .e-de-track-usernme-div {
3087
+ justify-content: space-between;
3088
+ padding-top: 8px;
3089
+ }
3090
+ .e-de-track-user-nme {
3091
+ font-size: $de-cmt-author-nme-fnt-size;
3092
+ font-weight: 500;
3093
+ padding-left: 8px;
3094
+ }
3095
+ .e-de-track-chngs-text {
3096
+ line-height: 19.5px;
3097
+ overflow: hidden;
3098
+ word-wrap: break-word;
3099
+ text-overflow: ellipsis;
3100
+ font-size: $de-cmt-author-nme-fnt-size;
3101
+ min-height: 20px;
3102
+ padding-top: 8px;
3103
+ margin-bottom: 16px;
3104
+ }
3105
+ .e-de-track-chng-table {
3106
+ border-collapse: collapse;
3107
+ border-spacing: 0px;
3108
+ opacity: 70%;
3109
+ width: 100%;
3110
+ }
3111
+ .e-de-tc-tble-cell {
3112
+ border: 1px solid;
3113
+ height: 20px;
3114
+ }
3115
+ .e-de-tc-shrink-img {
3116
+ height: 30px;
3117
+ margin: 0 4px;
3118
+ vertical-align: middle;
3119
+ width: 50px;
3120
+ }
3121
+ .e-de-tc-field {
3122
+ background-color: rgb(206, 205, 205);
3123
+ margin: 0 2px;
3124
+ }
3125
+ .e-de-tc-pmark {
3126
+ font-size: 14px;
3127
+ font-family: Roboto-Regular;
3128
+ font-weight: 600;
3129
+ color: rgb(1, 22, 119);
3130
+ margin: 0 2px;
3131
+ }
3132
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3133
+ border-left: 2px solid $de-cmt-selection;
3134
+ padding-left: $de-cmt-sub-container-hover-padding-left;
3135
+ }
3136
+ .e-de-cmt-author {
3137
+ align-items: center;
3138
+ @if $skin-name == 'bootstrap5' {
3139
+ margin-bottom: 12px;
3140
+ }
3141
+ @else {
3142
+ margin-bottom: 8px;
3143
+ }
3144
+ }
3145
+ .e-de-cmt-author-name {
3146
+ font-size: $de-cmt-author-nme-fnt-size;
3147
+ font-weight: $de-header-font-weight;
3148
+ padding-left: $de-cmt-author-nme-padding-left;
3149
+ width: 90%;
3150
+ }
3151
+ .e-de-cp-option.e-btn.e-icon-btn {
3152
+ background-color: inherit;
3153
+ border: none;
3154
+ color: inherit;
3155
+ float: right;
3156
+ height: $de-cmt-opt-size;
3157
+ padding: 0px;
3158
+ width: $de-cmt-opt-size;
3159
+ @if $skin-name=='bootstrap4' {
3160
+ margin-top: -4px;
3161
+ }
3162
+ @if $skin-name=='bootstrap' {
3163
+ margin-top: -8px;
3164
+ }
3165
+ }
3166
+ .e-de-cp-option.e-btn.e-icon-btn span {
3167
+ margin-top: 0px;
3168
+ background: $de-op-bg-color;
3169
+ }
3170
+ .e-de-cmt-view:hover {
3171
+ .e-de-cp-option {
3172
+ display: block;
3173
+ }
3174
+ }
3175
+ .e-de-cmt-readonly {
3176
+ font-size: $de-cmt-author-nme-fnt-size;
3177
+ @if $skin-name != 'bootstrap5' {
3178
+ padding-top: 4px;
3179
+ }
3180
+ word-break: break-word;
3181
+ }
3182
+ .e-de-cmt-date {
3183
+ font-size: $de-cmt-date-fnt-size;
3184
+ margin-top: $de-cmt-date-mrgn-top;
3185
+ opacity: 0.67;
3186
+ }
3187
+ .e-de-cmt-sub-container.e-de-cmt-reply {
3188
+ border: none;
3189
+ border-top: 1px solid $de-cmt-separator;
3190
+ border-radius: 0px;
3191
+ margin: $de-rply-cmt-sub-container-margin;
3192
+ padding: 0px;
3193
+ .e-de-cmt-view {
3194
+ margin-top: $de-cmt-view-mrgn-top;
3195
+ }
3196
+ }
3197
+ .e-de-cmt-textarea.e-input {
3198
+ color: $de-cmt-pant-content-font;
3199
+ @if $skin-name == 'tailwind' {
3200
+ font-size: $de-cmt-author-nme-fnt-size;
3201
+ }
3202
+ @else {
3203
+ font-size: 13px;
3204
+ }
3205
+ line-height: normal;
3206
+ min-height: 30px;
3207
+ overflow: hidden;
3208
+ padding-top: $e-de-cmt-textarea-padding-top;
3209
+ resize: none;
3210
+ }
3211
+ .e-bigger .e-de-cmt-textarea.e-input {
3212
+ padding-top: $e-de-cmt-textarea-padding-top-big;
3213
+ }
3214
+ .e-de-cmt-action-button {
3215
+ text-align: right;
3216
+ margin-top: $de-reply-footer-margin-top;
3217
+ }
3218
+ .e-de-cmt-post-btn.e-btn.e-flat,
3219
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3220
+ height: $de-cmt-post-btn-ht;
3221
+ margin-left: 8px;
3222
+ width: $de-cmt-post-btn-wt;
3223
+ @if $skin-name == 'tailwind' {
3224
+ padding-top: $de-cmt-cancel-btn-padding-top;
3225
+ padding-left: $de-cmt-cancel-btn-padding-left;
3226
+ }
3227
+ }
3228
+ .e-de-cmt-resolved {
3229
+ .e-de-cmt-author-name,
3230
+ .e-de-cmt-readonly,
3231
+ e-de-cmt-date {
3232
+ opacity: 0.67;
3233
+ }
3234
+ .e-de-cmt-rply-view {
3235
+ display: none;
3236
+ }
3237
+ .e-de-cmt-resolve-btn {
3238
+ display: block;
3239
+ margin-top: 8px;
3240
+ text-align: right;
3241
+ }
3242
+ }
3243
+ .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
3244
+ border-left: 3px solid $de-cmt-selection-rslv;
3245
+ }
3246
+ .e-de-cmt-sub-container.e-de-cmt-resolved:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3247
+ border-left: 2px solid $de-cmt-selection-rslv;
3248
+ }
3249
+ .e-de-lock-mark {
3250
+ cursor: default;
3251
+ color: $de-op-icon-color;
3252
+ font-size: 13px;
3253
+ height: 13px;
3254
+ pointer-events: all;
3255
+ width: 13px;
3256
+ }
3257
+ .e-de-cmt-mark {
3258
+ cursor: default;
3259
+ color: $de-op-icon-color;
3260
+ font-size: 13px;
3261
+ height: 13px;
3262
+ pointer-events: all;
3263
+ width: 13px;
3264
+ :hover {
3265
+ color: $de-cmt-selection;
3266
+ }
3267
+ }
3268
+ .e-de-cmt-mark.e-de-cmt-mark-selected,
3269
+ .e-de-cmt-mark.e-de-cmt-mark-hover {
3270
+ color: $de-cmt-selection;
3271
+ }
3272
+ .e-de-cmt-no-cmt {
3273
+ margin-left: 6px;
3274
+ margin-top: 24px;
3275
+ font-size: 13px;
3276
+ }
3277
+ .e-de-cmt-drawer-cnt {
3278
+ font-size: 13px;
3279
+ height: 20px;
3280
+ margin-top: 8px;
3281
+ }
3282
+ .e-de-cmt-drawer {
3283
+ cursor: pointer;
3284
+ float: right;
3285
+ opacity: 0.54;
3286
+ margin-right: 4px;
3287
+ margin-top: 4px;
3288
+ }
3289
+ .e-de-cmt-rply-view {
3290
+ margin-top: $de-cmt-textbox-top-margin;
3291
+ }
3292
+ .e-de-cmt-resolve-btn {
3293
+ display: none;
3294
+ }
3295
+ @if $skin-name=='bootstrap4' {
3296
+ textarea.e-de-cmt-textarea {
3297
+ height: 28px;
3298
+ }
3299
+ }
3300
+ .e-rtl {
3301
+ .e-de-cmt-pane {
3302
+ border-left: none;
3303
+ border-right: 1px solid $de-op-border-clr;
3304
+ }
3305
+ .e-de-rp-close-icon {
3306
+ float: left;
3307
+ right: $de-rp-close-icon-right-rtl;
3308
+ }
3309
+ .e-de-cp-option.e-btn.e-icon-btn {
3310
+ float: left;
3311
+ }
3312
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3313
+ border-left: 1px solid $de-cmt-separator;
3314
+ border-right: 3px solid $de-cmt-selection;
3315
+ padding-left: $de-cmt-sub-container-padding;
3316
+ padding-right: $de-cmt-sub-container-padding-left;
3317
+ }
3318
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3319
+ border-left: 1px solid $de-cmt-separator;
3320
+ border-right: 2px solid $de-cmt-selection;
3321
+ padding-left: $de-cmt-sub-container-padding;
3322
+ padding-right: $de-cmt-sub-container-hover-padding-left;
3323
+ }
3324
+ .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
3325
+ border-right: 3px solid $de-cmt-selection-rslv;
3326
+ }
3327
+ .e-de-cmt-sub-container.e-de-cmt-resolved:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3328
+ border-right: 2px solid $de-cmt-selection-rslv;
3329
+ }
3330
+ .e-de-cmt-action-button {
3331
+ text-align: left;
3332
+ }
3333
+ .e-de-cmt-no-cmt {
3334
+ margin-left: auto;
3335
+ margin-right: 6px;
3336
+ }
3337
+ .e-de-cmt-drawer {
3338
+ float: left;
3339
+ margin-left: 8px;
3340
+ margin-right: auto;
3341
+ }
3342
+ .e-de-cmt-resolve-btn {
3343
+ text-align: left;
3344
+ }
3345
+ }
3346
+ .e-bigger {
3347
+ .e-de-cmt-post-btn.e-btn.e-flat,
3348
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3349
+ height: $de-cmt-post-btn-ht-big;
3350
+ margin-left: 12px;
3351
+ width: $de-cmt-post-btn-wt-big;
3352
+ @if $skin-name == 'tailwind' {
3353
+ padding-top: $de-cmt-cancel-btn-padding-top-big;
3354
+ padding-left: $de-cmt-cancel-btn-padding-left-big;
3355
+ }
3356
+ }
3357
+ .e-de-cp-whole-header {
3358
+ height: 56px;
3359
+ padding: 16px;
3360
+ padding-right: 8px;
3361
+ }
3362
+ .e-de-rp-close-icon {
3363
+ float: right;
3364
+ position: relative;
3365
+ top: $de-rp-close-icon-top-bigger;
3366
+ right: $de-rp-close-icon-right-bigger;
3367
+ }
3368
+ .e-rtl {
3369
+ .e-de-cmt-post-btn.e-btn.e-flat,
3370
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3371
+ margin-right: 12px;
3372
+ @if $skin-name == 'tailwind' {
3373
+ padding-bottom: $de-cmt-cancel-btn-padding-top-big;
3374
+ padding-right: $de-cmt-cancel-btn-padding-left-big;
3375
+ }
3376
+ }
3377
+ }
3378
+ }
3379
+ .e-de-close-icon.e-btn {
3380
+ background-color: $dialog-btn-bg-color !important;
3381
+ border-color: $dialog-btn-border-color !important;
3382
+ border-radius: $dialog-headericon-border-radius;
3383
+ color: $dialog-btn-clr;
3384
+ //height: 26px;
3385
+ //width: 26px;
3386
+ border: none;
3387
+ #{if(&, '&', '*')}:active {
3388
+ background-color: $dialog-closeicon-btn-active-color !important;
3389
+ border-color: $dialog-btn-border-color !important;
3390
+ box-shadow: none;
3391
+ }
3392
+ #{if(&, '&', '*')}:hover {
3393
+ background-color: $dialog-closeicon-btn-hover-color !important;
3394
+ box-shadow: none;
3395
+ color: $dialog-active-icon-color;
3396
+ cursor: $e-de-close-icon-cursor;
3397
+ border: none;
3398
+ }
3399
+ }
3400
+ .e-btn.e-de-close-icon:hover span {
3401
+ cursor: pointer;
3402
+ color: $dialog-active-icon-color;
3403
+ }
3404
+ // Blazor
3405
+ .e-de-para-dlg-right-sub-container-blazor {
3406
+ top: $de-para-dlg-right-sub-container-top-margin;
3407
+ }
3408
+ .e-de-rp-mu-btn {
3409
+ margin-top: 3px;
3410
+ }
3411
+ .e-de-table-dialog-row-height {
3412
+ padding-top: $de-table-row-height-padding;
3413
+ }
3414
+ .e-de-tablecell-dialog-alignment-icon {
3415
+ width: $de-table-alignment-icon-width;
3416
+ height: $de-table-alignment-icon-height;
3417
+ margin: $de-table-alignment-icon-margin;
3418
+ }
3419
+ .e-de-table-dia-indent-from-left {
3420
+ right: 45px;
3421
+ }
3422
+ .e-de-table-dia-align-div {
3423
+ border: $de-table-align-border-width solid $de-table-align-border-color;
3424
+ display: inline-block;
3425
+ height: $de-table-dia-align-height;
3426
+ margin-right: $de-table-align-margin-right;
3427
+ width: $de-table-dia-align-width;
3428
+ }
3429
+ .e-de-table-dialog-alignment-icon {
3430
+ margin: $de-table-alignment-icon-margin;
3431
+ height: $de-table-dia-align-icon-height;
3432
+ }
3433
+ .e-de-table-border-setting-genral {
3434
+ margin-right: $de-table-align-margin-right;
3435
+ }
3436
+ .e-de-table-border-clr-left-container {
3437
+ padding-right: $de-border-dlg-clr-padding-right;
3438
+ }
3439
+ .e-de-table-border-clr-heading {
3440
+ font-size: $de-border-dlg-setting-label-fontsize;
3441
+ font-weight: $de-border-dlg-border-label-fontweight;
3442
+ padding-bottom: $de-border-dlg-clr-padding-bottom;
3443
+ }
3444
+ .e-de-table-border-icon-container {
3445
+ margin-top: 4px;
3446
+ margin-right: 4px;
3447
+ }
3448
+ .e-de-table-border-preview-container {
3449
+ padding-left: $de-border-dlg-preview-padding-left;
3450
+ }
3451
+ .e-de-table-dlg-alignment-heading {
3452
+ color: $de-dlg-heading-main-header;
3453
+ display: block;
3454
+ font-size: $de-para-dlg-heading-font-size;
3455
+ font-weight: $de-par-dlg-hdr-weight;
3456
+ margin-bottom: $de-tbl-dlg-align-padding-bottom;
3457
+ @if $skin-name == 'tailwind' {
3458
+ line-height: 22px;
3459
+ }
3460
+ }
3461
+
3462
+ .e-rtl{
3463
+ .e-de-cmt-author-name {
3464
+ padding-left: 0%;
3465
+ padding-right: $de-cmt-author-nme-padding-left;
3466
+ }
3467
+ .e-de-cmt-post-btn.e-btn.e-flat,
3468
+ .e-de-cmt-cancel-btn.e-btn.e-flat{
3469
+ @if $skin-name == 'tailwind' {
3470
+ padding-bottom: $de-cmt-cancel-btn-padding-top;
3471
+ padding-right: $de-cmt-cancel-btn-padding-left;
3472
+ }
3473
+ }
3474
+ .e-de-ok-button {
3475
+ margin-right: 0;
3476
+ margin-left: $de-ok-insert-button-margin-right;
3477
+ }
3478
+ .e-de-table-dia-align-div.e-de-rtl {
3479
+ margin-left: $de-table-align-margin-right;
3480
+ margin-right: 0;
3481
+ }
3482
+ .e-de-table-border-clr-left-container {
3483
+ padding-right: 0;
3484
+ padding-left: $de-border-dlg-clr-padding-right;
3485
+ }
3486
+ .e-de-table-border-preview-container {
3487
+ padding-right: $de-border-dlg-preview-padding-left;
3488
+ padding-left: 0;
3489
+ }
3490
+ .e-de-table-border-setting-genral {
3491
+ margin-right: 0;
3492
+ margin-left: $de-table-align-margin-right;
3493
+ }
3494
+ .e-de-table-border-icon-container {
3495
+ margin-right: 0;
3496
+ margin-left: 4px;
3497
+ }
3498
+ .e-de-table-border-preview {
3499
+ width: 23px;
3500
+ }
3501
+ .e-de-table-setting-labels-heading {
3502
+ margin-left: 0;
3503
+ margin-right: 10px;
3504
+ }
3505
+ }
3506
+ .e-bigger {
3507
+ .e-de-cmt-author-name {
3508
+ padding-left: $de-cmt-author-nme-padding-left-big ;
3509
+ }
3510
+ .e-de-cmt-rply-view{
3511
+ margin-top: $de-cmt-textbox-top-margin-big;
3512
+ }
3513
+ .e-de-cmt-sub-container{
3514
+ padding: $de-cmt-sub-container-padding-big;
3515
+ }
3516
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3517
+ padding-left: $de-cmt-sub-container-padding-left-big;
3518
+ }
3519
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover{
3520
+ padding-left: $de-cmt-sub-container-hover-padding-left-big;
3521
+ }
3522
+ .e-de-cmt-sub-container.e-de-cmt-reply{
3523
+ padding: 0%;
3524
+ }
3525
+ .e-de-rp-nav-btn {
3526
+ width: auto;
3527
+ }
3528
+ .e-de-rp-whole-header {
3529
+ padding: $de-rp-whole-header-padding-big;
3530
+ }
3531
+ .e-de-rp-sub-div {
3532
+ border-bottom: 1px solid $de-list-view;
3533
+ padding: $de-rp-sub-div-padding-big;
3534
+ }
3535
+ .e-de-rp-enforce {
3536
+ padding: $de-rp-enforce-padding-big;
3537
+ }
3538
+ .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
3539
+ width: 300px;
3540
+ }
3541
+
3542
+ .e-rtl{
3543
+ .e-de-cmt-author-name {
3544
+ padding-left: 0%;
3545
+ padding-right: $de-cmt-author-nme-padding-left-big;
3546
+ }
3547
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3548
+ padding-left: $de-cmt-sub-container-padding-big;
3549
+ padding-right: $de-cmt-sub-container-padding-left-big;
3550
+ }
3551
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3552
+ padding-left: $de-cmt-sub-container-padding-big;
3553
+ padding-right: $de-cmt-sub-container-hover-padding-left-big;
3554
+ }
3555
+ .e-de-rp-close-icon {
3556
+ float: left;
3557
+ right: $de-rp-close-icon-right-bigger-rtl;
3558
+ }
3559
+ }
3560
+ }
3561
+ }