@syncfusion/ej2-angular-documenteditor 20.1.60 → 20.2.36

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