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

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