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

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