@syncfusion/ej2-angular-documenteditor 20.1.60 → 20.2.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +113 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +262 -0
  4. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  5. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  8. package/esm2020/src/index.mjs +8 -0
  9. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +29 -15
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  17. package/src/document-editor/documenteditor.component.d.ts +3 -0
  18. package/src/document-editor/documenteditor.module.d.ts +6 -0
  19. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  20. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  21. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +215 -105
  23. package/styles/bootstrap.css +214 -104
  24. package/styles/bootstrap4.css +216 -106
  25. package/styles/bootstrap5-dark.css +220 -110
  26. package/styles/bootstrap5.css +220 -110
  27. package/styles/document-editor/_all.scss +3 -0
  28. package/styles/document-editor/_bootstrap-dark-definition.scss +544 -0
  29. package/styles/document-editor/_bootstrap-definition.scss +543 -0
  30. package/styles/document-editor/_bootstrap4-definition.scss +556 -0
  31. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  32. package/styles/document-editor/_bootstrap5-definition.scss +556 -0
  33. package/styles/document-editor/_fabric-dark-definition.scss +546 -0
  34. package/styles/document-editor/_fabric-definition.scss +545 -0
  35. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  36. package/styles/document-editor/_fluent-definition.scss +564 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +556 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  40. package/styles/document-editor/_layout.scss +217 -0
  41. package/styles/document-editor/_material-dark-definition.scss +561 -0
  42. package/styles/document-editor/_material-definition.scss +563 -0
  43. package/styles/document-editor/_material3-definition.scss +556 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +555 -0
  46. package/styles/document-editor/_theme.scss +3395 -0
  47. package/styles/document-editor/bootstrap-dark.css +211 -104
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +210 -103
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +211 -104
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +215 -108
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +215 -108
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +211 -104
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +211 -104
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +218 -110
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +218 -110
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +74 -46
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +211 -104
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +609 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +609 -0
  71. package/styles/document-editor/icons/_bootstrap4.scss +592 -0
  72. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  73. package/styles/document-editor/icons/_bootstrap5.scss +642 -0
  74. package/styles/document-editor/icons/_fabric-dark.scss +608 -0
  75. package/styles/document-editor/icons/_fabric.scss +608 -0
  76. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  77. package/styles/document-editor/icons/_fluent.scss +640 -0
  78. package/styles/document-editor/icons/_fusionnew.scss +642 -0
  79. package/styles/document-editor/icons/_highcontrast-light.scss +612 -0
  80. package/styles/document-editor/icons/_highcontrast.scss +607 -0
  81. package/styles/document-editor/icons/_material-dark.scss +600 -0
  82. package/styles/document-editor/icons/_material.scss +600 -0
  83. package/styles/document-editor/icons/_material3.scss +642 -0
  84. package/styles/document-editor/icons/_tailwind-dark.scss +642 -0
  85. package/styles/document-editor/icons/_tailwind.scss +642 -0
  86. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +171 -0
  87. package/styles/document-editor/material-dark.css +204 -97
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +202 -95
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +221 -127
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +221 -127
  94. package/styles/document-editor/tailwind.scss +4 -1
  95. package/styles/document-editor-container/_all.scss +2 -0
  96. package/styles/document-editor-container/_bootstrap-dark-definition.scss +125 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +125 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +141 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +152 -0
  101. package/styles/document-editor-container/_definition.scss +10 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +130 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +127 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +153 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +152 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +128 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +131 -0
  109. package/styles/document-editor-container/_layout.scss +88 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +129 -0
  111. package/styles/document-editor-container/_material-definition.scss +128 -0
  112. package/styles/document-editor-container/_material3-definition.scss +152 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +146 -0
  115. package/styles/document-editor-container/_theme.scss +2004 -0
  116. package/styles/document-editor-container/bootstrap-dark.css +4 -1
  117. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  118. package/styles/document-editor-container/bootstrap.css +4 -1
  119. package/styles/document-editor-container/bootstrap.scss +5 -1
  120. package/styles/document-editor-container/bootstrap4.css +5 -2
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -2
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -2
  125. package/styles/document-editor-container/bootstrap5.scss +5 -1
  126. package/styles/document-editor-container/fabric-dark.css +4 -1
  127. package/styles/document-editor-container/fabric-dark.scss +5 -1
  128. package/styles/document-editor-container/fabric.css +4 -1
  129. package/styles/document-editor-container/fabric.scss +5 -1
  130. package/styles/document-editor-container/fluent-dark.css +5 -2
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -2
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +22 -19
  135. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  136. package/styles/document-editor-container/highcontrast.css +4 -1
  137. package/styles/document-editor-container/highcontrast.scss +5 -1
  138. package/styles/document-editor-container/icons/_bootstrap-dark.scss +397 -0
  139. package/styles/document-editor-container/icons/_bootstrap.scss +397 -0
  140. package/styles/document-editor-container/icons/_bootstrap4.scss +397 -0
  141. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  142. package/styles/document-editor-container/icons/_bootstrap5.scss +423 -0
  143. package/styles/document-editor-container/icons/_fabric-dark.scss +397 -0
  144. package/styles/document-editor-container/icons/_fabric.scss +397 -0
  145. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  146. package/styles/document-editor-container/icons/_fluent.scss +423 -0
  147. package/styles/document-editor-container/icons/_fusionnew.scss +423 -0
  148. package/styles/document-editor-container/icons/_highcontrast-light.scss +397 -0
  149. package/styles/document-editor-container/icons/_highcontrast.scss +397 -0
  150. package/styles/document-editor-container/icons/_material-dark.scss +400 -0
  151. package/styles/document-editor-container/icons/_material.scss +400 -0
  152. package/styles/document-editor-container/icons/_material3.scss +423 -0
  153. package/styles/document-editor-container/icons/_tailwind-dark.scss +423 -0
  154. package/styles/document-editor-container/icons/_tailwind.scss +423 -0
  155. package/styles/document-editor-container/material-dark.css +4 -1
  156. package/styles/document-editor-container/material-dark.scss +5 -1
  157. package/styles/document-editor-container/material.css +4 -1
  158. package/styles/document-editor-container/material.scss +5 -1
  159. package/styles/document-editor-container/tailwind-dark.css +5 -3
  160. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  161. package/styles/document-editor-container/tailwind.css +5 -3
  162. package/styles/document-editor-container/tailwind.scss +5 -1
  163. package/styles/fabric-dark.css +215 -105
  164. package/styles/fabric.css +215 -105
  165. package/styles/fluent-dark.css +223 -112
  166. package/styles/fluent.css +223 -112
  167. package/styles/highcontrast-light.css +78 -47
  168. package/styles/highcontrast.css +215 -105
  169. package/styles/material-dark.css +208 -98
  170. package/styles/material.css +206 -96
  171. package/styles/tailwind-dark.css +226 -130
  172. package/styles/tailwind.css +226 -130
  173. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  174. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -574
  175. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  176. package/@syncfusion/ej2-angular-documenteditor.js +0 -544
  177. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  178. package/CHANGELOG.md +0 -3071
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -838
  180. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  181. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  182. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  183. package/ej2-angular-documenteditor.d.ts +0 -6
  184. package/ej2-angular-documenteditor.metadata.json +0 -1
  185. package/postinstall/tagchange.js +0 -18
  186. package/schematics/collection.json +0 -15
  187. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  188. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  189. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  190. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  191. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  192. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  193. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  194. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  195. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -124
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,2988 @@
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
+
894
+ // Table properties
895
+ $de-row-height-bottom-margin: 8px;
896
+
897
+ @include export-module('documenteditor-icons') {
898
+ .e-documenteditor {
899
+ .e-close::before {
900
+ content: '\e825';
901
+ font-family: 'e-icons';
902
+ font-size: 14px;
903
+ }
904
+
905
+ .e-de-op-search-icon::before {
906
+ content: '\e275';
907
+ font-family: 'e-icons';
908
+ font-size: $de-op-icon-font-size;
909
+ }
910
+
911
+ .e-arrow-up::before {
912
+ content: '\e834';
913
+ font-family: 'e-icons';
914
+ font-size: $de-op-icon-font-size;
915
+ }
916
+
917
+ .e-arrow-down::before {
918
+ content: '\e83d';
919
+ font-family: 'e-icons';
920
+ font-size: $de-op-icon-font-size;
921
+ }
922
+
923
+ .e-de-op-close-icon {
924
+ height: $de-op-close-icon-width;
925
+ }
926
+
927
+ .e-de-op-close-icon::before {
928
+ content: '\e7fc';
929
+ }
930
+
931
+ .e-de-op-search-close-icon::before {
932
+ content: '\e7fc';
933
+ font-family: 'e-icons';
934
+ font-size: 10px;
935
+ }
936
+ }
937
+
938
+ .e-de-table-properties-alignment:hover {
939
+ border-color: $de-table-align-hover-color;
940
+ }
941
+
942
+ .e-de-table-properties-alignment {
943
+ border: 1px solid transparent;
944
+ }
945
+
946
+ .e-de-tablecell-alignment {
947
+ border: 1px solid transparent;
948
+ }
949
+
950
+ .e-de-tablecell-alignment:hover {
951
+ border-color: $de-cell-align-hover-color;
952
+ }
953
+
954
+ .e-de-table-left-alignment::before {
955
+ content: '\e517';
956
+ font-size: $de-table-alignment-font-size;
957
+ position: absolute;
958
+ top: $de-table-alignment-top;
959
+ }
960
+
961
+ .e-de-table-center-alignment::before {
962
+ content: '\e518';
963
+ font-size: $de-table-alignment-font-size;
964
+ position: absolute;
965
+ top: $de-table-alignment-top;
966
+ }
967
+
968
+ .e-de-table-right-alignment::before {
969
+ content: '\e515';
970
+ font-size: $de-table-alignment-font-size;
971
+ position: absolute;
972
+ top: $de-table-alignment-top;
973
+ }
974
+
975
+ .e-de-tablecell-top-alignment::before {
976
+ content: '\e527';
977
+ font-size: $de-tablecell-alignment-font-size;
978
+ }
979
+
980
+ .e-de-tablecell-center-alignment::before {
981
+ content: '\e526';
982
+ font-size: $de-tablecell-alignment-font-size;
983
+ }
984
+
985
+ .e-de-tablecell-bottom-alignment::before {
986
+ content: '\e525';
987
+ font-size: $de-tablecell-alignment-font-size;
988
+ }
989
+
990
+ .e-de-table-alignment-active {
991
+ border: 1px solid $de-table-align-active-color;
992
+ }
993
+
994
+ .e-de-table-border-setting {
995
+ border: 1px solid $de-border-dlg-border-setting-inside-border;
996
+ height: 48px;
997
+ left: 5px;
998
+ position: relative;
999
+ top: 5px;
1000
+ width: 48px;
1001
+ }
1002
+
1003
+ .e-de-table-border-setting-genral {
1004
+ border: 1px solid $de-border-dlg-border-setting-divs-color;
1005
+ display: inline-block;
1006
+ height: 60px;
1007
+ width: 60px;
1008
+ }
1009
+
1010
+ .e-de-table-border-preview-genral {
1011
+ border: 1px solid $de-border-dlg-border-preview-divs-color;
1012
+ display: inline-block;
1013
+ height: 25px;
1014
+ width: 25px;
1015
+ }
1016
+
1017
+ .e-de-table-border-inside-setting:hover {
1018
+ border: 1px solid $de-table-setting-hover-color;
1019
+ }
1020
+
1021
+ .e-de-table-border-preview {
1022
+ height: 24px;
1023
+ width: 24px;
1024
+ }
1025
+
1026
+ .e-de-table-border-inside-preview:hover {
1027
+ border: 1px solid $de-table-preview-hover-color;
1028
+ }
1029
+
1030
+ .e-de-table-border-inside-setting-click {
1031
+ border: 1px solid $de-table-setting-color;
1032
+ }
1033
+
1034
+ .e-de-table-border-inside-preview-click {
1035
+ border: 1px solid $de-table-preview-setting-color;
1036
+ }
1037
+
1038
+ .e-de-table-border-none-setting::before {
1039
+ content: '\e507';
1040
+ font-size: $de-border-none-setting-font-size;
1041
+ position: absolute;
1042
+ }
1043
+
1044
+ .e-de-table-border-box-setting::before {
1045
+ content: '\e509';
1046
+ font-size: $de-border-setting-font-size;
1047
+ left: 2px;
1048
+ position: absolute;
1049
+ top: 2px;
1050
+ }
1051
+
1052
+ .e-de-table-border-all-setting::before {
1053
+ content: '\e511';
1054
+ font-size: $de-border-setting-font-size;
1055
+ left: 2px;
1056
+ position: absolute;
1057
+ top: 2px;
1058
+ }
1059
+
1060
+ .e-de-table-border-custom-setting::before {
1061
+ content: '\e516';
1062
+ font-size: $de-border-setting-font-size;
1063
+ left: 2px;
1064
+ position: absolute;
1065
+ top: 2px;
1066
+ }
1067
+
1068
+ .e-de-table-border-toptop-alignment::before {
1069
+ content: '\e281';
1070
+ font-size: 16px;
1071
+ left: 4px;
1072
+ position: absolute;
1073
+ top: $de-td-table-border-top;
1074
+ }
1075
+
1076
+ .e-de-table-border-topcenter-alignment::before {
1077
+ content: '\e276';
1078
+ font-size: 16px;
1079
+ left: 4px;
1080
+ position: absolute;
1081
+ top: $de-td-table-border-top;
1082
+ }
1083
+
1084
+ .e-de-table-border-topbottom-alignment::before {
1085
+ content: '\e298';
1086
+ font-size: 16px;
1087
+ left: 4px;
1088
+ position: absolute;
1089
+ top: $de-td-table-border-top;
1090
+ }
1091
+
1092
+ .e-de-table-border-diagionalup-alignment::before {
1093
+ content: '\e262';
1094
+ font-size: 16px;
1095
+ left: 4px;
1096
+ position: absolute;
1097
+ top: $de-td-table-border-top;
1098
+ }
1099
+
1100
+ .e-de-table-border-diagionaldown-alignment::before {
1101
+ content: '\e265';
1102
+ font-size: 16px;
1103
+ left: 4px;
1104
+ position: absolute;
1105
+ top: $de-td-table-border-top;
1106
+ }
1107
+
1108
+ .e-de-table-border-bottomleft-alignment::before {
1109
+ content: '\e291';
1110
+ font-size: 16px;
1111
+ left: 4px;
1112
+ position: absolute;
1113
+ top: $de-td-table-border-top;
1114
+ }
1115
+
1116
+ .e-de-table-border-bottomcenter-alignment::before {
1117
+ content: '\e287';
1118
+ font-size: 16px;
1119
+ left: 4px;
1120
+ position: absolute;
1121
+ top: $de-td-table-border-top;
1122
+ }
1123
+
1124
+ .e-de-table-border-bottomright-alignment::before {
1125
+ content: '\e288';
1126
+ font-size: 16px;
1127
+ left: 4px;
1128
+ position: absolute;
1129
+ top: $de-td-table-border-top;
1130
+ }
1131
+
1132
+ .e-menu-item .e-de-cut::before {
1133
+ content: $de-context-menu-cut-icon;
1134
+ }
1135
+
1136
+ .e-menu-item .e-de-copy::before {
1137
+ content: $de-context-menu-copy-icon;
1138
+ }
1139
+
1140
+ .e-menu-item .e-de-paste::before {
1141
+ content: $de-context-menu-paste-icon;
1142
+ }
1143
+
1144
+ .e-menu-item .e-de-continue-numbering::before {
1145
+ content: $de-context-menu-continue-numbering-icon;
1146
+ }
1147
+
1148
+ .e-menu-item .e-de-restart-at::before {
1149
+ content: $de-context-menu-restart-at-icon;
1150
+ }
1151
+
1152
+ .e-menu-item .e-de-insertlink::before {
1153
+ content: $de-context-menu-insertlink;
1154
+ }
1155
+
1156
+ .e-menu-item .e-de-open-hyperlink::before {
1157
+ content: $de-context-menu-open-hyperlink;
1158
+ }
1159
+
1160
+ .e-menu-item .e-de-copy-hyperlink::before {
1161
+ content: $de-context-menu-copy-hyperlink;
1162
+ }
1163
+
1164
+ .e-menu-item .e-de-edit-hyperlink::before {
1165
+ content: $de-context-menu-edit-hyperlink;
1166
+ }
1167
+
1168
+ .e-menu-item .e-de-remove-hyperlink::before {
1169
+ content: $de-context-menu-remove-hyperlink;
1170
+ }
1171
+
1172
+ .e-menu-item .e-de-fonts::before {
1173
+ content: $de-context-menu-font-icon;
1174
+ }
1175
+
1176
+ .e-menu-item .e-de-paragraph::before {
1177
+ content: $de-context-menu-paragraph-icon;
1178
+ }
1179
+
1180
+ .e-menu-item .e-de-table::before {
1181
+ content: $de-context-menu-table-properties-icon;
1182
+ }
1183
+
1184
+ .e-menu-item .e-de-insertabove::before {
1185
+ content: $de-context-menu-insert-above-icon;
1186
+ }
1187
+
1188
+ .e-menu-item .e-de-insertbelow::before {
1189
+ content: $de-context-menu-insert-below-icon;
1190
+ }
1191
+
1192
+ .e-menu-item .e-de-insertleft::before {
1193
+ content: $de-context-menu-insert-left-icon;
1194
+ }
1195
+
1196
+ .e-menu-item .e-de-insertright::before {
1197
+ content: $de-context-menu-insert-right-icon;
1198
+ }
1199
+
1200
+ .e-menu-item .e-de-delete-table::before {
1201
+ content: $de-context-menu-delete-table-icon;
1202
+ }
1203
+
1204
+ .e-menu-item .e-de-deleterow::before {
1205
+ content: $de-context-menu-delete-row-icon;
1206
+ }
1207
+
1208
+ .e-menu-item .e-de-deletecolumn::before {
1209
+ content: $de-context-menu-delete-column-icon;
1210
+ }
1211
+
1212
+ // .e-de-tablecell-top-alignment {
1213
+ // padding: 4px;
1214
+ // }
1215
+
1216
+ // .e-de-tablecell-center-alignment {
1217
+ // padding: 4px;
1218
+ // }
1219
+
1220
+ // .e-de-tablecell-bottom-alignment {
1221
+ // padding-left: 4px;
1222
+ // }
1223
+
1224
+ .e-de-bold::before {
1225
+ content: '\e339';
1226
+ font-family: 'e-icons';
1227
+ font-size: 16px;
1228
+ font-weight: 400;
1229
+ }
1230
+
1231
+ .e-de-italic::before {
1232
+ content: '\e35a';
1233
+ font-family: 'e-icons';
1234
+ font-size: 16px;
1235
+ font-weight: 400;
1236
+ }
1237
+
1238
+ .e-de-underline::before {
1239
+ content: '\e343';
1240
+ font-family: 'e-icons';
1241
+ font-size: 16px;
1242
+ font-weight: 400;
1243
+ }
1244
+
1245
+ .e-de-indent::before {
1246
+ content: '\e35d';
1247
+ font-family: 'e-icons';
1248
+ font-size: 16px;
1249
+ font-weight: 400;
1250
+ }
1251
+
1252
+ .e-de-outdent::before {
1253
+ content: '\e33f';
1254
+ font-family: 'e-icons';
1255
+ font-size: 16px;
1256
+ font-weight: 400;
1257
+ }
1258
+
1259
+ .e-de-align-left::before {
1260
+ content: '\e33a';
1261
+ font-family: 'e-icons';
1262
+ font-size: 16px;
1263
+ font-weight: 400;
1264
+ }
1265
+
1266
+ .e-de-align-center::before {
1267
+ content: '\e35e';
1268
+ font-family: 'e-icons';
1269
+ font-size: 16px;
1270
+ font-weight: 400;
1271
+ }
1272
+
1273
+ .e-de-align-right::before {
1274
+ content: '\e34d';
1275
+ font-family: 'e-icons';
1276
+ font-size: 16px;
1277
+ font-weight: 400;
1278
+ }
1279
+
1280
+ .e-de-justify::before {
1281
+ content: '\e334';
1282
+ font-family: 'e-icons';
1283
+ font-size: 16px;
1284
+ font-weight: 400;
1285
+ }
1286
+
1287
+ .e-de-single-spacing::before {
1288
+ content: '\e520';
1289
+ font-family: 'e-icons';
1290
+ font-size: 16px;
1291
+ }
1292
+
1293
+ .e-de-double-spacing::before {
1294
+ content: '\e521';
1295
+ font-family: 'e-icons';
1296
+ font-size: 16px;
1297
+ }
1298
+
1299
+ .e-de-one-point-five-spacing::before {
1300
+ content: '\e522';
1301
+ font-family: 'e-icons';
1302
+ font-size: 16px;
1303
+ }
1304
+
1305
+ .e-de-before-spacing::before {
1306
+ content: '\e523';
1307
+ font-family: 'e-icons';
1308
+ font-size: 16px;
1309
+ }
1310
+
1311
+ .e-de-after-spacing::before {
1312
+ content: '\e274';
1313
+ font-family: 'e-icons';
1314
+ font-size: 16px;
1315
+ }
1316
+
1317
+ .e-de-icon-bullet-list-dot::before {
1318
+ content: '\e270';
1319
+ font-family: 'e-icons';
1320
+ font-size: 42px;
1321
+ }
1322
+
1323
+ .e-de-icon-bullet-list-circle::before {
1324
+ content: '\e254';
1325
+ font-family: 'e-icons';
1326
+ font-size: 42px;
1327
+ }
1328
+
1329
+ .e-de-icon-bullet-list-square::before {
1330
+ content: '\e271';
1331
+ font-family: 'e-icons';
1332
+ font-size: 42px;
1333
+ }
1334
+
1335
+ .e-de-icon-bullet-list-tick::before {
1336
+ content: '\e259';
1337
+ font-family: 'e-icons';
1338
+ font-size: 42px;
1339
+ }
1340
+
1341
+ .e-de-icon-bullet-list-flower::before {
1342
+ content: '\e267';
1343
+ font-family: 'e-icons';
1344
+ font-size: 42px;
1345
+ }
1346
+
1347
+ .e-de-icon-bullet-list-arrow::before {
1348
+ content: '\e253';
1349
+ font-family: 'e-icons';
1350
+ font-size: 42px;
1351
+ }
1352
+
1353
+ .e-de-icon-bullet-list-none::before {
1354
+ content: '\e256';
1355
+ font-family: 'e-icons';
1356
+ font-size: 42px;
1357
+ }
1358
+
1359
+ }
1360
+ @include export-module('documenteditor-layout') {
1361
+ .e-de-blink-cursor {
1362
+ border-left: 1px solid;
1363
+ pointer-events: none;
1364
+ position: absolute;
1365
+ z-index: 3;
1366
+ }
1367
+
1368
+ .e-de-cursor-animation {
1369
+ animation-duration: 1s;
1370
+ animation-iteration-count: infinite;
1371
+ animation-name: FadeInFadeOut;
1372
+ }
1373
+
1374
+ @keyframes FadeInFadeOut {
1375
+ from {
1376
+ opacity: 1;
1377
+ }
1378
+
1379
+ 13% {
1380
+ opacity: 0;
1381
+ }
1382
+
1383
+ 50% {
1384
+ opacity: 0;
1385
+ }
1386
+
1387
+ 63% {
1388
+ opacity: 1;
1389
+ }
1390
+
1391
+ to {
1392
+ opacity: 1;
1393
+ }
1394
+ }
1395
+
1396
+ .e-documenteditor {
1397
+ .e-checkbox-wrapper .e-frame {
1398
+ height: 14px;
1399
+ line-height: 6px;
1400
+ width: 14px;
1401
+ }
1402
+
1403
+ .e-checkbox-wrapper .e-label {
1404
+ font-size: 12px;
1405
+ }
1406
+
1407
+ .e-de-op-close-button {
1408
+ left: 267px;
1409
+ position: absolute;
1410
+ top: $de-op-close-button-top;
1411
+ }
1412
+ }
1413
+ }
1414
+ @include export-module('documenteditor-theme') {
1415
+ .e-de-background {
1416
+ background-color: $de-background;
1417
+ }
1418
+
1419
+ .e-de-result-list-block .e-de-search-result-hglt {
1420
+ background: $search-result-highlight-bg-color;
1421
+ border-bottom: 2px solid $search-result-hightlight-bdr-clr-hvr;
1422
+ cursor: default;
1423
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
1424
+ }
1425
+
1426
+ .e-de-result-list-block .e-de-op-search-txt .e-de-op-search-word-text {
1427
+ color: $search-result-hightlight-bdr-clr;
1428
+ }
1429
+
1430
+ .e-de-search-result-item {
1431
+ cursor: default;
1432
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
1433
+ }
1434
+
1435
+ .e-de-search-result-item:hover {
1436
+ border-bottom: 1px solid $search-result-hightlight-bdr-clr-hvr;
1437
+ cursor: default;
1438
+ }
1439
+
1440
+ .e-de-search-result-item:focus {
1441
+ border-bottom: 2px solid $search-result-hightlight-bdr-clr-hvr;
1442
+ cursor: default;
1443
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
1444
+ }
1445
+
1446
+
1447
+ .e-de-search-tab-content .e-input-group .e-de-op-search-icon:focus {
1448
+ border: 1px solid $search-icon-bdr-clr;
1449
+ }
1450
+
1451
+ .e-de-op-search-icon:hover {
1452
+ background: $search-icon-hvr;
1453
+ }
1454
+
1455
+
1456
+ .e-de-search-tab-content .e-input-group .e-de-op-search-close-icon:focus {
1457
+ border: 1px solid $search-icon-bdr-clr;
1458
+ border-right-width: 0;
1459
+ }
1460
+
1461
+ .e-de-op-search-close-icon:hover {
1462
+ background: $search-icon-hvr;
1463
+ }
1464
+
1465
+ .e-spin-down:focus {
1466
+ border: 1px solid $spin-down-bdr-clr;
1467
+ border-right-width: 0;
1468
+ }
1469
+
1470
+ .e-spin-down:hover {
1471
+ background: $spin-down-hvr;
1472
+ }
1473
+
1474
+ .e-spin-up:focus {
1475
+ border: 1px solid $spin-up-bdr-clr;
1476
+ border-right-width: 0;
1477
+ }
1478
+
1479
+ .e-spin-up:hover {
1480
+ background: $spin-up-hvr;
1481
+ }
1482
+
1483
+ .e-de-para-dlg-heading {
1484
+ color: $de-dlg-heading-main-header;
1485
+ display: block;
1486
+ font-size: $de-para-dlg-heading-font-size;
1487
+ font-weight: $de-para-dlg-heading-font-weight;
1488
+ margin-bottom: $de-para-title-bottom-margin;
1489
+ }
1490
+
1491
+ .e-de-para-dlg-container {
1492
+ height: $de-para-dlg-height;
1493
+ width: $de-para-dlg-width;
1494
+ }
1495
+
1496
+ .e-de-toc-dlg-heading {
1497
+ color: $de-dlg-heading-main-header;
1498
+ display: block;
1499
+ font-size: $de-toc-dlg-heading-font-size;
1500
+ font-weight: $de-toc-dlg-heading-font-weight;
1501
+ margin-bottom: $de-toc-title-bottom-margin;
1502
+ }
1503
+
1504
+ .e-de-toc-dlg-main-heading {
1505
+ color: $de-dlg-heading-main-header;
1506
+ display: block;
1507
+ font-size: $de-toc-dlg-heading-font-size;
1508
+ font-weight: $de-toc-dlg-main-heading-font-weight;
1509
+ margin-bottom: $de-toc-title-bottom-margin;
1510
+ }
1511
+
1512
+ .e-de-toc-reset-button {
1513
+ margin-top: $de-toc-reset-button-margin-top;
1514
+ }
1515
+
1516
+ .e-de-toc-modify-button {
1517
+ margin-left: $de-toc-modify-button-margin-left;
1518
+ margin-top: $de-toc-modify-button-margin-top;
1519
+ }
1520
+
1521
+ .e-de-toc-dlg-container {
1522
+ height: $de-toc-dlg-height;
1523
+ width: $de-toc-dlg-width;
1524
+ }
1525
+
1526
+ .e-de-toc-dlg-sub-container {
1527
+ margin-bottom: $de-toc-sub-container-bottom;
1528
+ }
1529
+
1530
+ .e-de-toc-list-view {
1531
+ border: 1px solid $de-toc-list-view-border-color;
1532
+ border-radius: $de-toc-styles-table-div-border-radius;
1533
+ font-size: $de-toc-list-view-font-size;
1534
+ height: $de-toc-list-view-height;
1535
+ margin-left: $de-toc-list-view-margin-left;
1536
+ overflow-y: scroll;
1537
+ width: $de-toc-list-view-width;
1538
+ }
1539
+
1540
+ .e-de-toc-dlg-sub-heading {
1541
+ color: $de-dlg-heading-main-header;
1542
+ display: block;
1543
+ font-size: $de-toc-dlg-heading-font-size;
1544
+ font-weight: $de-toc-dlg-heading-font-weight;
1545
+ margin: $de-toc-dlg-sub-margin;
1546
+ }
1547
+
1548
+ .e-de-toc-dlg-style-label {
1549
+ margin-left: $de-toc-dlg-style-label-left;
1550
+ margin-top: $de-toc-dlg-style-label-top;
1551
+ }
1552
+
1553
+ .e-de-toc-dlg-style-label.e-de-rtl {
1554
+ margin-left: 0;
1555
+ margin-right: $de-toc-dlg-style-label-left;
1556
+ }
1557
+
1558
+ .e-de-pagesetup-dlg-container {
1559
+ height: $de-page-setup-dlg-height;
1560
+ width: $de-page-setup-dlg-width;
1561
+ }
1562
+
1563
+ .e-de-page-setup-ppty-tab {
1564
+ border: $de-page-setup-ppty-tab-border;
1565
+ }
1566
+
1567
+ .e-de-page-setup-dlg-sub-container {
1568
+ margin-bottom: $de-page-setup-sub-container-bottom;
1569
+ }
1570
+
1571
+ .e-de-page-setup-dlg-left-sub-container {
1572
+ float: left;
1573
+ position: relative;
1574
+ top: $de-page-setup-dlg-left-container-top;
1575
+ }
1576
+
1577
+ .e-de-page-setup-dlg-right-sub-container {
1578
+ float: right;
1579
+ position: relative;
1580
+ top: $de-page-setup-dlg-right-container-top;
1581
+ }
1582
+
1583
+ .e-de-page-setup-dlg-sub-header {
1584
+ display: block;
1585
+ font-size: $de-page-setup-margin-dia-common-font;
1586
+ font-weight: normal;
1587
+ margin-bottom: $de-page-setup-margin-dia-common-margin-bottom;
1588
+ margin-top: $de-page-setup-margin-dia-common-margin-top;
1589
+ }
1590
+
1591
+ .e-de-page-setup-dlg-sub-title-header {
1592
+ display: block;
1593
+ font-size: $de-page-setup-margin-dia-common-font;
1594
+ font-weight: normal;
1595
+ margin-bottom: $de-page-setup-margin-dia-common-margin-bottom;
1596
+ margin-top: $de-page-setup-common-margin-top;
1597
+ }
1598
+
1599
+ .e-de-page-setup-dlg-sub-container-port {
1600
+ height: $de-page-setup-sub-container-height-style;
1601
+ margin-bottom: $de-page-setup-sub-container-port-bottom;
1602
+ }
1603
+
1604
+ .e-de-page-setup-dlg-sub-label {
1605
+ font-size: $de-page-setup-dlg-sub-label-font-size;
1606
+ font-weight: $de-page-setup-dlg-sub-label-font-weight;
1607
+ }
1608
+
1609
+ .e-de-page-setup-dlg-orientation-prop {
1610
+ margin-top: $de-page-setup-dlg-orientation-prop-margin-top;
1611
+ }
1612
+
1613
+ .e-de-page-setup-dlg-sub-size-container {
1614
+ height: $de-page-setup-sub-size-container-height;
1615
+ margin-bottom: $de-page-setup-sub-size-container-bottom;
1616
+ }
1617
+
1618
+ .e-de-page-setup-dlg-layout-sub-container {
1619
+ height: $de-page-setup-layout-sub-container-height;
1620
+ margin-bottom: $de-page-setup-layout-sub-container-bottom;
1621
+ position: relative;
1622
+ top: $de-page-setup-layout-sub-container-top;
1623
+ }
1624
+
1625
+ .e-de-page-setup-dlg-first-page-prop .e-label,
1626
+ .e-de-page-setup-dlg-odd-or-even-prop .e-label {
1627
+ font-size: $de-page-setup-checkbox-label-font-size;
1628
+ }
1629
+
1630
+ .e-de-page-setup-dlg-first-page-prop .e-frame,
1631
+ .e-de-page-setup-dlg-odd-or-even-prop .e-frame {
1632
+ height: $de-checkbox-height;
1633
+ line-height: $de-checkbox-line-height;
1634
+ width: $de-checkbox-width;
1635
+ }
1636
+
1637
+ .e-de-page-setup-dlg-left-layout-container {
1638
+ float: left;
1639
+ position: relative;
1640
+ top: $de-page-setup-dlg-layout-container-top;
1641
+ }
1642
+
1643
+ .e-de-page-setup-dlg-right-layout-container {
1644
+ float: right;
1645
+ position: relative;
1646
+ top: $de-page-setup-dlg-layout-container-top;
1647
+ }
1648
+
1649
+ .e-de-dlg-sub-header {
1650
+ display: block;
1651
+ font-size: 12px;
1652
+ font-weight: normal;
1653
+ margin-bottom: $de-para-sub-title-bottom-margin;
1654
+ margin-top: $de-para-sub-title-top-margin;
1655
+ }
1656
+
1657
+ .e-de-para-dlg-sub-container {
1658
+ margin-bottom: $de-para-sub-container-bottom;
1659
+ }
1660
+
1661
+ .e-de-para-dlg-right-sub-container {
1662
+ top: $de-para-dlg-right-contaner-top;
1663
+ }
1664
+
1665
+ .e-de-dlg-footer .e-btn {
1666
+ margin-left: 10px;
1667
+ }
1668
+
1669
+ .e-de-hyperlink-dlg-title {
1670
+ font-size: 12px;
1671
+ font-weight: 400;
1672
+ margin-bottom: $de-hyperlink-dlg-margin-bottom;
1673
+ margin-top: $de-hyperlink-dlg-margin-top;
1674
+ }
1675
+
1676
+ .e-de-hyperlink .e-de-hyperlink-dlg-input {
1677
+ height: $de-hyperlink-dlg-input-height;
1678
+ margin-bottom: $de-hyperlink-dlg-input-bottom;
1679
+ width: $de-hyperlink-dlg-input-width;
1680
+ }
1681
+
1682
+ .e-de-font-dlg-header {
1683
+ display: flex;
1684
+ font-size: 12px;
1685
+ font-weight: normal;
1686
+ margin-bottom: $de-font-dlg-header-margin-bottom;
1687
+ }
1688
+
1689
+ .e-de-font-dlg-header-effects,
1690
+ .e-de-font-dlg-header-font-color {
1691
+ display: flex;
1692
+ font-size: 14px;
1693
+ font-weight: normal;
1694
+ margin-bottom: $de-font-dlg-header-margin-bottom;
1695
+ }
1696
+
1697
+ .e-de-font-dlg-main-header {
1698
+ color: $de-dlg-heading-main-header;
1699
+ font-size: 14px;
1700
+ font-weight: normal;
1701
+ margin-right: $de-font-dlg-main-header-margin-right;
1702
+ }
1703
+
1704
+ .e-de-font-dlg-cb-right {
1705
+ margin-left: $e-de-font-dlg-cb-margin-right;
1706
+ }
1707
+
1708
+ .e-de-font-dlg-cb-right-div {
1709
+ margin-left: 20px;
1710
+ }
1711
+
1712
+ .e-de-dropdown {
1713
+ margin-right: $de-dropdown-margin-right;
1714
+ }
1715
+
1716
+ .e-de-op {
1717
+ border-right: 1px solid $de-op-border-clr;
1718
+ padding-left: $de-op-padding-left;
1719
+ padding-right: $de-op-padding-left;
1720
+ padding-top: $de-op-padding-top;
1721
+ position: relative;
1722
+ width: 300px;
1723
+ }
1724
+
1725
+ .e-de-op-header {
1726
+ color: $de-op-title-clr;
1727
+ font-family: $de-op-header-font-family;
1728
+ font-size: 15px;
1729
+ font-weight: $de-op-header-font-weight;
1730
+ margin-bottom: $de-op-header-bottm-margin;
1731
+ }
1732
+
1733
+ .e-de-op-tab {
1734
+ border: 0;
1735
+ height: $de-op-tab-height;
1736
+ }
1737
+
1738
+ .e-de-op-icon {
1739
+ color: $de-op-icon-color;
1740
+ height: 20px;
1741
+ width: 20px;
1742
+ }
1743
+
1744
+ .e-de-op-close-icon {
1745
+ color: $de-op-close-icon-clr;
1746
+ }
1747
+
1748
+ .e-de-op-nav-btn {
1749
+ height: $de-op-close-icon-width;
1750
+ width: $de-op-close-icon-width;
1751
+ }
1752
+
1753
+ .e-de-op-search-txt {
1754
+ border-bottom: 1px solid $search-result-hightlight-bdr-item;
1755
+ color: $de-dlg-heading-main-header;
1756
+ font-size: 14px;
1757
+ }
1758
+
1759
+ .e-de-op-search-txt .e-de-op-search-word {
1760
+ color: $de-op-search-txt;
1761
+ }
1762
+
1763
+ .e-de-op-more-less {
1764
+ display: block;
1765
+ margin-top: 15px;
1766
+ }
1767
+
1768
+ .e-de-op-replacetabcontentdiv {
1769
+ height: 82px;
1770
+ margin-top: 15px;
1771
+ }
1772
+
1773
+ label[for='container_wholeWord'] {
1774
+ left: 35px;
1775
+ }
1776
+
1777
+ .e-de-cell-dia-label-common {
1778
+ display: inline-block;
1779
+ font-size: $de-cell-margin-dia-common-font;
1780
+ font-weight: 400;
1781
+ margin-bottom: $de-cell-margin-dia-common-margin-bottom;
1782
+ margin-top: $de-cell-margin-dia-common-margin-top;
1783
+ width: $de-cell-margin-dia-common-width;
1784
+ }
1785
+
1786
+ .e-de-cell-dia-options-label {
1787
+ font-size: $de-cell-margin-dia-options-font;
1788
+ font-weight: $de-para-dlg-heading-font-weight;
1789
+ }
1790
+
1791
+ .e-de-table-border-heading {
1792
+ font-size: $de-border-dlg-border-label-fontsize;
1793
+ font-weight: $de-border-dlg-border-label-font-weight;
1794
+ padding-bottom: $de-border-dlg-border-label-paddingbottom;
1795
+ }
1796
+
1797
+ .e-de-table-setting-heading {
1798
+ font-size: $de-border-dlg-setting-label-fontsize;
1799
+ font-weight: $de-border-dlg-border-label-fontweight;
1800
+ padding-bottom: $de-border-dlg-setting-label-paddingbottom;
1801
+ }
1802
+
1803
+ .e-de-layout-setting-heading {
1804
+ font-size: $de-border-dlg-setting-label-fontsize;
1805
+ font-weight: $de-border-dlg-border-label-fontweight;
1806
+ padding-bottom: $de-border-dlg-setting-label-paddingbottom;
1807
+ }
1808
+
1809
+ .e-de-table-setting-labels-heading {
1810
+ font-size: $de-border-dlg-settinglabels-fontsize;
1811
+ font-weight: $de-border-dlg-border-label-fontweight;
1812
+ }
1813
+
1814
+ .e-de-table-element-subheading {
1815
+ font-size: $de-border-dlg-settinglabels-fontsize;
1816
+ font-weight: $de-border-dlg-border-label-fontweight;
1817
+ }
1818
+
1819
+ .e-de-border-dlg-preview-div {
1820
+ border: $de-border-dlg-border-preview-div-width solid $de-border-dlg-border-preview-div-opacity;
1821
+ }
1822
+
1823
+ .e-de-border-dlg-preview-inside-divs {
1824
+ opacity: $de-border-dlg-preview-inside-divs-opacity;
1825
+ }
1826
+
1827
+ .e-de-table-dia-align-div {
1828
+ border: $de-table-align-border-width solid $de-table-align-border-color;
1829
+ display: inline-block;
1830
+ height: $de-table-align-height;
1831
+ margin-right: $de-table-align-margin-right;
1832
+ width: $de-table-align-width;
1833
+ }
1834
+
1835
+ .e-de-table-dia-align-label {
1836
+ display: inline-block;
1837
+ font-size: $de-table-alignment-label-font-size;
1838
+ font-weight: normal;
1839
+ margin-left: $de-table-alignment-label-margin-left;
1840
+ margin-top: $de-table-alignment-label-margin-top;
1841
+ }
1842
+
1843
+ .e-de-table-dialog-separator-line {
1844
+ background-color: $de-table-separator-line-color;
1845
+ height: $de-table-separator-line-height;
1846
+ left: $de-table-separator-line-left;
1847
+ opacity: $de-table-separator-line-opacity;
1848
+ position: absolute;
1849
+ top: $de-table-separtor-line-top;
1850
+ width: $de-table-separator-line-width;
1851
+ }
1852
+
1853
+ .e-de-table-dialog-options-label {
1854
+ font-size: $de-table-options-font-size;
1855
+ font-weight: $de-table-options-font-weight;
1856
+ padding-bottom: $de-table-options-padding-bottom;
1857
+ padding-top: $de-table-options-padding-top;
1858
+ }
1859
+
1860
+ .e-de-list-ddl-header {
1861
+ font-size: 14px;
1862
+ font-weight: $de-list-dlg-header-font-weight;
1863
+ margin-bottom: $de-list-dlg-header-margin-bottom;
1864
+ margin-top: $de-list-dlg-header-margin-top;
1865
+ }
1866
+
1867
+ .e-de-list-ddl-header-list-level {
1868
+ font-size: 14px;
1869
+ font-weight: $de-list-dlg-header-font-weight;
1870
+ margin-bottom: $de-list-dlg-header-margin-bottom;
1871
+ }
1872
+
1873
+ .e-de-tbl-dlg-footer {
1874
+ padding-top: $de-tbl-dlg-footer;
1875
+ }
1876
+
1877
+ .e-de-row-ht-top {
1878
+ display: inline-block;
1879
+ margin-left: 20px;
1880
+ }
1881
+
1882
+ .e-de-cell-width-top {
1883
+ margin-left: $de-cell-width-top-margin-left;
1884
+ margin-top: $de-cell-width-top-margin-top;
1885
+ }
1886
+
1887
+ .e-de-tbl-dlg-border-btn {
1888
+ float: right;
1889
+ margin-right: $de-tbl-dlg-border-btn-margin-right;
1890
+ margin-top: $de-tbl-dlg-border-btn-margin-top;
1891
+ }
1892
+
1893
+ .e-de-tbl-dlg-op-btn {
1894
+ left: $de-tbl-opt-btn-left;
1895
+ position: absolute;
1896
+ top: $de-tbl-opt-btn-top;
1897
+ }
1898
+
1899
+ .e-de-insert-table-dlg-sub-header {
1900
+ display: block;
1901
+ font-size: 12px;
1902
+ font-weight: normal;
1903
+ margin-bottom: $de-insert-table-title-bottom-margin;
1904
+ margin-top: $de-insert-table-title-top-margin;
1905
+ }
1906
+
1907
+ .e-de-insert-table-dlg-input {
1908
+ margin-bottom: $de-insert-table-dlg-input-bottom;
1909
+ }
1910
+
1911
+ .e-de-insert-footnote-dlg-sub-header {
1912
+ display: block;
1913
+ font-size: 12px;
1914
+ font-weight: normal;
1915
+ margin-bottom: $de-insert-table-title-bottom-margin;
1916
+ margin-top: $de-insert-table-title-top-margin;
1917
+ }
1918
+
1919
+ .e-de-list-ddl-subheader,
1920
+ .e-de-list-ddl-subheaderbottom {
1921
+ font-size: 12px;
1922
+ font-weight: $de-list-dlg-subheader-font-weight;
1923
+ margin-bottom: $de-list-dlg-subheader-margin-bottom;
1924
+ margin-top: $de-list-dlg-subheader-margin-top;
1925
+ }
1926
+
1927
+ .e-de-list-dlg-subdiv {
1928
+ float: right;
1929
+ margin-top: $e-de-list-subdiv-margin-top;
1930
+ position: relative;
1931
+ }
1932
+
1933
+ .e-de-list-dlg-div {
1934
+ float: right;
1935
+ margin-top: $e-de-list-div-margin-top;
1936
+ position: relative;
1937
+ }
1938
+
1939
+ .e-de-ok-button {
1940
+ margin-right: $de-ok-insert-button-margin-right;
1941
+ }
1942
+
1943
+ .e-de-options-setter {
1944
+ left: $de-options-buttons-left;
1945
+ }
1946
+
1947
+ .e-de-op-close-icon:hover {
1948
+ color: $de-op-btn-icon-hover-clr;
1949
+ }
1950
+
1951
+ .e-de-tooltip {
1952
+ background-color: $de-tooltip-bg-clr;
1953
+ box-shadow: $de-tooltip-shadow;
1954
+ color: $de-tooltip-color;
1955
+ cursor: text;
1956
+ max-width: 200px;
1957
+ padding: 5px;
1958
+ width: fit-content;
1959
+ word-wrap: break-word;
1960
+ }
1961
+
1962
+ .e-btn.e-de-op-icon-btn {
1963
+ background-color: $de-op-btn-icon-bg;
1964
+ border-color: $de-op-btn-icon-border;
1965
+ }
1966
+
1967
+ .e-btn.e-de-op-close-button:hover {
1968
+ background-color: $de-op-btn-icon-bg;
1969
+ border-color: $de-op-btn-icon-border;
1970
+ color: $de-op-btn-icon-hover-clr;
1971
+ }
1972
+
1973
+ .e-btn.e-de-op-close-button:focus {
1974
+ background-color: $de-op-btn-icon-bg;
1975
+ border-color: $de-op-btn-icon-border;
1976
+ color: $de-op-btn-icon-hover-clr;
1977
+ }
1978
+
1979
+ .e-btn.e-de-op-close-button:active {
1980
+ background-color: $de-op-btn-icon-bg;
1981
+ border-color: $de-op-btn-icon-border;
1982
+ color: $de-op-btn-icon-active-clr;
1983
+ }
1984
+
1985
+ .e-documenteditor {
1986
+ .e-input {
1987
+ color: $de-input-color;
1988
+ font-size: 14px;
1989
+ }
1990
+ }
1991
+
1992
+ .e-de-dlg-target .e-footer-content {
1993
+ .e-control.e-btn.e-flat:not(.e-icon-btn) {
1994
+ height: $de-dlg-btn-height;
1995
+ }
1996
+ }
1997
+
1998
+ .e-de-tbl-dlg-border-btn .e-control.e-btn.e-flat:not(.e-icon-btn) {
1999
+ height: $de-dlg-btn-height;
2000
+ }
2001
+
2002
+ .e-de-dlg-target {
2003
+ .e-dlg-header,
2004
+ .e-dlg-header * {
2005
+ font-weight: $de-border-dlg-border-label-fontweight;
2006
+ }
2007
+
2008
+ .e-dlg-header {
2009
+ font-size: $de-dlg-header-font-size;
2010
+ font-weight: $de-dlg-header-font-weight;
2011
+ margin-top: $de-dlg-header-margin-top;
2012
+ }
2013
+
2014
+ .e-de-dlg-footer {
2015
+ margin-top: $de-dlg-footer-margin-top;
2016
+ padding-top: $de-dlg-footer-padding-top;
2017
+ }
2018
+
2019
+ .e-dlg-header-content {
2020
+ padding: $de-dlg-header-content-padding;
2021
+ }
2022
+
2023
+ .e-dlg-content {
2024
+ padding: $de-dlg-content-padding;
2025
+ }
2026
+
2027
+ .e-footer-content {
2028
+ padding-right: $de-dlg-footer-padding-right;
2029
+ padding-top: $de-dlg-footer-content-padding-top;
2030
+ }
2031
+
2032
+ .e-btn .e-btn-icon.e-icon-dlg-close {
2033
+ font-size: $de-dlg-close-font-size;
2034
+ }
2035
+
2036
+ .e-dlg-header-content,
2037
+ .e-footer-content {
2038
+ border: 1px;
2039
+ border-radius: $e-de-dlg-border-radius;
2040
+ }
2041
+
2042
+ .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
2043
+ left: $de-dlg-close-icon-left;
2044
+ }
2045
+
2046
+ .e-dlg-clr-pkr-top {
2047
+ top: $de-dlg-clr-pkr-top;
2048
+ }
2049
+ }
2050
+
2051
+ .e-de-op-result-container {
2052
+ margin-top: $de-op-result-container-margin-top;
2053
+ }
2054
+
2055
+ .e-de-op {
2056
+ background-color: $de-op-bg-color;
2057
+ }
2058
+
2059
+ .e-de-op {
2060
+ .e-tab-header .e-toolbar-items {
2061
+ margin-bottom: $de-op-tab-header-margin-bottom;
2062
+ margin-top: $de-op-tab-header-margin-top;
2063
+ }
2064
+ }
2065
+
2066
+ .e-de-font-dlg-color {
2067
+ border: $de-font-color-border;
2068
+ border-radius: $de-font-color-border-radius;
2069
+ font-size: 12px;
2070
+ height: 16px;
2071
+ margin-left: 15px;
2072
+ width: 25px;
2073
+ }
2074
+
2075
+ .e-de-icon-table-row-above {
2076
+ top: $de-icon-table-row-above-top;
2077
+ }
2078
+
2079
+ .e-de-icon-table-row-below {
2080
+ top: $de-icon-table-row-below-top;
2081
+ }
2082
+
2083
+ .e-de-icon-table-column-left {
2084
+ top: $de-icon-table-column-left-top;
2085
+ }
2086
+
2087
+ .e-de-icon-table-column-right {
2088
+ top: $de-icon-table-column-right-top;
2089
+ }
2090
+
2091
+ .e-de-icon-table-delete {
2092
+ top: $de-icon-table-delete-top;
2093
+ }
2094
+
2095
+ .e-de-icon-table-row-delete {
2096
+ top: $de-icon-table-row-delete-top;
2097
+ }
2098
+
2099
+ .e-de-icon-table-column-delete {
2100
+ top: $de-icon-table-column-delete-top;
2101
+ }
2102
+
2103
+ .e-de-list-bullet-none {
2104
+ height: 40px;
2105
+ width: 40px;
2106
+ }
2107
+
2108
+ .e-de-list-bullet-dot {
2109
+ height: 40px;
2110
+ width: 40px;
2111
+ }
2112
+
2113
+ .e-de-list-bullet-circle {
2114
+ height: 40px;
2115
+ width: 40px;
2116
+ }
2117
+
2118
+ .e-de-list-bullet-square {
2119
+ height: 40px;
2120
+ width: 40px;
2121
+ }
2122
+
2123
+ .e-de-list-bullet-flower {
2124
+ height: 40px;
2125
+ width: 40px;
2126
+ }
2127
+
2128
+ .e-de-list-bullet-arrow {
2129
+ height: 40px;
2130
+ width: 40px;
2131
+ }
2132
+
2133
+ .e-de-list-bullet-tick {
2134
+ height: 40px;
2135
+ width: 40px;
2136
+ }
2137
+
2138
+ .e-de-bullet:hover {
2139
+ background: $de-bullet-list-hover-color;
2140
+ }
2141
+
2142
+ .e-de-list-numbered-none {
2143
+ height: 80px;
2144
+ width: 80px;
2145
+ }
2146
+
2147
+ .e-de-list-numbered-number-dot {
2148
+ height: 80px;
2149
+ width: 80px;
2150
+ }
2151
+
2152
+ .e-de-list-numbered-number-brace {
2153
+ height: 80px;
2154
+ width: 80px;
2155
+ }
2156
+
2157
+ .e-de-list-numbered-up-roman {
2158
+ height: 80px;
2159
+ width: 80px;
2160
+ }
2161
+
2162
+ .e-de-list-numbered-up-letter {
2163
+ height: 80px;
2164
+ width: 80px;
2165
+ }
2166
+
2167
+ .e-de-list-numbered-low-letter-brace {
2168
+ height: 80px;
2169
+ width: 80px;
2170
+ }
2171
+
2172
+ .e-de-numbered-low-letter-dot {
2173
+ height: 80px;
2174
+ width: 80px;
2175
+ }
2176
+
2177
+ .e-de-list-numbered-low-roman {
2178
+ height: 80px;
2179
+ width: 80px;
2180
+ }
2181
+
2182
+ .e-de-numbered:hover {
2183
+ background: $de-number-list-hover-color;
2184
+ }
2185
+
2186
+ .e-de-list-multilevel-none {
2187
+ height: 80px;
2188
+ width: 80px;
2189
+ }
2190
+
2191
+ .e-de-list-multilevel-list-normal {
2192
+ height: 80px;
2193
+ width: 80px;
2194
+ }
2195
+
2196
+ .e-de-list-multilevel-list-multilevel {
2197
+ height: 80px;
2198
+ width: 80px;
2199
+ }
2200
+
2201
+ .e-de-list-multilevel-list-bullets {
2202
+ height: 80px;
2203
+ width: 80px;
2204
+ }
2205
+
2206
+ .e-de-multilevel-list:hover {
2207
+ background: $de-multilevel-list-hover-color;
2208
+ }
2209
+
2210
+ .e-de-list-dialog-open:hover {
2211
+ background: $de-list-dialog-hover-color;
2212
+ }
2213
+
2214
+ .e-de-cell-options {
2215
+ left: $de-cell-options-left;
2216
+ top: $de-cell-options-top;
2217
+ }
2218
+
2219
+ .e-de-font-color-label {
2220
+ margin-bottom: $de-font-color-margin-bottom;
2221
+ margin-top: $de-font-color-margin-top;
2222
+ }
2223
+
2224
+ .e-de-font-content-label {
2225
+ margin-left: $de-font-dlg-effect-margin-left;
2226
+ margin-right: $de-font-dlg-margin-right;
2227
+ }
2228
+
2229
+ .e-de-font-color-margin {
2230
+ margin-right: $de-font-dlg-color-margin-right;
2231
+ margin-top: $de-font-dlg-color-margin-top;
2232
+ }
2233
+
2234
+ .e-de-font-content-checkbox-label {
2235
+ margin-left: $de-font-content-checkbox-left;
2236
+ }
2237
+
2238
+ .e-de-font-checkbox {
2239
+ margin-left: $de-font-checkbox-left;
2240
+ }
2241
+
2242
+ .e-de-font-dlg-padding {
2243
+ margin-top: $de-font-dlg-margin-top;
2244
+ }
2245
+
2246
+ .e-de-table-container-div {
2247
+ margin-top: $de-table-container-margin-top;
2248
+ }
2249
+
2250
+ .e-de-table-header-div {
2251
+ padding-top: $de-table-header-padding-top;
2252
+ }
2253
+
2254
+ .e-de-table-subheader-div {
2255
+ float: right;
2256
+ margin-right: $de-table-subheader-div-margin-right;
2257
+ margin-top: $de-table-subheader-div-margin-top;
2258
+ }
2259
+
2260
+ .e-de-table-cell-header-div {
2261
+ padding-top: $de-table-header-padding-top;
2262
+ }
2263
+
2264
+ .e-de-table-cell-subheader-div {
2265
+ top: $de-cell-subheader-top;
2266
+ }
2267
+
2268
+ .e-de-cell-margin-header {
2269
+ left: $de-cell-margin-header-left;
2270
+ top: $de-cell-margin-header-top;
2271
+ }
2272
+
2273
+ .e-de-font-dlg-display {
2274
+ display: inline-flex;
2275
+ }
2276
+
2277
+ .e-de-tbl-margin-sub-header {
2278
+ margin-top: $de-tbl-margin-sub-header;
2279
+ }
2280
+
2281
+ .e-de-tbl-btn-separator {
2282
+ width: $de-tbl-btn-separator;
2283
+ }
2284
+
2285
+
2286
+ .e-de-op-msg {
2287
+ color: $de-op-container-messagediv-color;
2288
+ top: 79px;
2289
+ }
2290
+
2291
+ .e-de-save-dlg-file-name {
2292
+ height: 25px;
2293
+ margin-bottom: 8px;
2294
+ }
2295
+
2296
+ .e-de-save-dlg-format-type {
2297
+ height: 25px;
2298
+ margin-bottom: 8px;
2299
+ padding-top: $de-save-dlg-format-type-padding;
2300
+ }
2301
+
2302
+ .e-de-search-tab-content {
2303
+ margin-top: $de-op-search-tab-content-margin-top;
2304
+ width: $de-op-search-text-box-container-width;
2305
+ }
2306
+
2307
+ .e-de-font-dlg {
2308
+ height: $de-font-dlg-height;
2309
+ width: $de-font-dlg-width;
2310
+ }
2311
+
2312
+ .e-de-hyperlink {
2313
+ height: $de-hyper-link-height;
2314
+ width: $de-hyper-link-width;
2315
+ }
2316
+
2317
+ .e-de-insert-table {
2318
+ height: $de-insert-table-height;
2319
+ width: $de-insert-table-width;
2320
+ }
2321
+
2322
+ .e-de-insert-table {
2323
+ height: $de-insert-footnote-height;
2324
+ width: $de-insert-footnote-width;
2325
+ }
2326
+
2327
+ .e-de-list-dlg {
2328
+ height: $de-list-dlg-height;
2329
+ width: $de-list-dlg-width;
2330
+ }
2331
+
2332
+ .e-de-save-dlg {
2333
+ height: $de-save-dlg-height;
2334
+ width: $de-save-dlg-width;
2335
+ }
2336
+
2337
+ .e-de-table-properties-dlg {
2338
+ height: $de-table-ppty-dlg-height;
2339
+ width: $de-table-ppty-dlg-width;
2340
+ }
2341
+
2342
+ .e-de-table-border-shading-dlg {
2343
+ height: $de-table-border-shading-dlg-height;
2344
+ width: $de-table-border-shading-dlg-width;
2345
+ }
2346
+
2347
+ .e-de-table-cell-margin-dlg {
2348
+ height: $de-table-cell-margin-dlg-height;
2349
+ width: $de-table-cell-margin-dlg-width;
2350
+ }
2351
+
2352
+ .e-de-table-options-dlg {
2353
+ height: $de-table-options-dlg-height;
2354
+ width: $de-table-options-dlg-width;
2355
+ }
2356
+
2357
+ .e-de-table-border-none {
2358
+ position: absolute;
2359
+ top: $de-table-border-none-top;
2360
+ }
2361
+
2362
+ .e-de-table-border-box {
2363
+ position: absolute;
2364
+ top: $de-table-border-box-top;
2365
+ }
2366
+
2367
+ .e-de-table-border-all {
2368
+ position: absolute;
2369
+ top: $de-table-border-all-top;
2370
+ }
2371
+
2372
+ .e-de-table-border-custom {
2373
+ position: absolute;
2374
+ top: $de-table-border-custom-top;
2375
+ }
2376
+
2377
+ .e-de-table-shading-preview {
2378
+ top: $de-table-shading-preview-top;
2379
+ }
2380
+
2381
+ .e-de-font-content-label span.e-label {
2382
+ color: $de-checkbox-wrapper-color;
2383
+ }
2384
+
2385
+ .e-de-font-label span.e-label {
2386
+ color: $de-checkbox-wrapper-color;
2387
+ }
2388
+
2389
+ .e-de-font-content-label:hover .e-label,
2390
+ .e-css.e-de-font-content-label:hover .e-label {
2391
+ color: $de-checkbox-wrapper-color;
2392
+ }
2393
+
2394
+ .e-de-font-label:hover .e-label,
2395
+ .e-css.e-de-font-label:hover .e-label {
2396
+ color: $de-checkbox-wrapper-color;
2397
+ }
2398
+
2399
+ .e-documenteditor {
2400
+ .e-checkbox-wrapper .e-label {
2401
+ color: $de-checkbox-wrapper-color;
2402
+ font-size: 14px;
2403
+ }
2404
+
2405
+ .e-checkbox-wrapper .e-frame {
2406
+ height: $de-checkbox-height;
2407
+ line-height: $de-checkbox-line-height;
2408
+ width: $de-checkbox-width;
2409
+ }
2410
+
2411
+ .e-checkbox-wrapper .e-frame + .e-label {
2412
+ margin-right: $de-checkbox-margin-right;
2413
+ }
2414
+ }
2415
+
2416
+ .e-de-op-dlg-footer {
2417
+ margin-top: $de-op-dlg-footer-margin-top;
2418
+ }
2419
+
2420
+ .e-de-op-dlg-footer .e-btn {
2421
+ height: $de-dlg-btn-height;
2422
+ padding-left: 6px;
2423
+ padding-right: 6px;
2424
+ }
2425
+
2426
+ .e-de-search-tab-content .e-input-group .e-de-search-input {
2427
+ width: $de-op-search-input-width;
2428
+ }
2429
+
2430
+ .e-de-op-replacewith {
2431
+ width: $de-op-replacewith-width;
2432
+ }
2433
+
2434
+ .e-de-table-ppty-tab {
2435
+ border: $de-table-ppty-tab-border;
2436
+ }
2437
+
2438
+ .e-de-table-container-div .e-checkbox-wrapper .e-label {
2439
+ color: $de-checkbox-wrapper-color;
2440
+ }
2441
+
2442
+ .e-de-table-header-div .e-checkbox-wrapper .e-label {
2443
+ color: $de-checkbox-wrapper-color;
2444
+ }
2445
+
2446
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label {
2447
+ color: $de-checkbox-wrapper-color;
2448
+ }
2449
+
2450
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label {
2451
+ color: $de-checkbox-wrapper-color;
2452
+ }
2453
+
2454
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label {
2455
+ color: $de-checkbox-wrapper-color;
2456
+ }
2457
+
2458
+ .e-de-tbl-margin-sub-header .e-label {
2459
+ color: $de-checkbox-wrapper-color;
2460
+ }
2461
+
2462
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label {
2463
+ color: $de-checkbox-wrapper-color;
2464
+ }
2465
+
2466
+ .e-de-list-format-info {
2467
+ border-radius: 50%;
2468
+ cursor: default;
2469
+ font-size: 12px;
2470
+ height: 15px;
2471
+ line-height: 1px;
2472
+ padding: $de-list-info-btn-padding;
2473
+ text-transform: lowercase;
2474
+ width: 16px;
2475
+ }
2476
+
2477
+ .e-button-custom {
2478
+ height: $de-bookmark-custom-btn-height;
2479
+ padding: 0;
2480
+ width: $de-bookmark-custom-btn-width;
2481
+ }
2482
+
2483
+ .e-styles-listview,
2484
+ .e-bookmark-listview {
2485
+ border: 1px solid $bookmark-listview-border-color;
2486
+ border-radius: $de-bookmark-list-view-border-radius;
2487
+ height: 150px;
2488
+ overflow-y: scroll;
2489
+ }
2490
+
2491
+ .e-bookmark-gotobutton,
2492
+ .e-bookmark-addbutton,
2493
+ .e-styles-addbutton,
2494
+ .e-bookmark-deletebutton {
2495
+ margin-bottom: 8px;
2496
+ }
2497
+
2498
+ .e-bookmark-list {
2499
+ float: left;
2500
+ margin-right: 20px;
2501
+ width: 250px;
2502
+ }
2503
+
2504
+ .e-bookmark-textboxdiv {
2505
+ margin-bottom: $de-bookmark-textbox-margin-bottom;
2506
+ }
2507
+
2508
+ .e-bookmark-listview .e-list-item {
2509
+ font-size: 13px;
2510
+ height: 30px;
2511
+ line-height: 27px;
2512
+ }
2513
+
2514
+
2515
+ .e-bookmark-common {
2516
+ display: flex;
2517
+ }
2518
+
2519
+ .e-bookmark-button {
2520
+ position: relative;
2521
+ top: $de-bookmark-button-div-top-position;
2522
+ }
2523
+
2524
+ .e-font {
2525
+ float: left;
2526
+ }
2527
+
2528
+ .e-de-table-border-toptop-alignment,
2529
+ .e-de-table-border-topcenter-alignment,
2530
+ .e-de-table-border-topbottom-alignment,
2531
+ .e-de-table-border-diagionalup-alignment,
2532
+ .e-de-table-border-diagionaldown-alignment,
2533
+ .e-de-table-border-bottomleft-alignment,
2534
+ .e-de-table-border-bottomcenter-alignment,
2535
+ .e-de-table-border-bottomright-alignment {
2536
+ left: $de-table-border-dlg-alignments-left;
2537
+ position: absolute;
2538
+ top: $de-table-border-preview-top;
2539
+ transform: $de-table-border-dlg-alignments-transform;
2540
+ }
2541
+
2542
+ .e-de-style-properties,
2543
+ .e-de-style-formatting {
2544
+ font-size: $de-style-heading-font-size;
2545
+ font-weight: $de-style-heading-font-weight;
2546
+ }
2547
+
2548
+ .e-de-style-formatting {
2549
+ margin-bottom: $de-style-dialog-style-formatting-bottom-margin;
2550
+ }
2551
+
2552
+ .e-de-style-paragraph-indent-group-button .e-btn,
2553
+ .e-de-style-paragraph-group-button .e-btn,
2554
+ .e-de-style-font-group-button .e-btn {
2555
+ box-shadow: none;
2556
+ }
2557
+
2558
+ .e-de-style-paragraph-indent-group-button .e-btn.e-active,
2559
+ .e-de-style-paragraph-group-button .e-btn.e-active,
2560
+ .e-de-style-font-group-button .e-btn.e-active {
2561
+ background-color: $de-style-btn-active-bg-border-color;
2562
+ border-color: $de-style-btn-active-bg-border-color;
2563
+ box-shadow: none;
2564
+ color: $de-style-btn-active-text-color;
2565
+ }
2566
+
2567
+ .e-de-style-properties {
2568
+ margin-bottom: $de-style-dialog-style-ppties-bottom-margin;
2569
+ }
2570
+
2571
+ .e-de-style-nametype-div {
2572
+ margin-bottom: $de-style-dialog-style-name-type-div-bottom-margin;
2573
+ }
2574
+
2575
+ .e-de-style-based-para-div {
2576
+ margin-bottom: $de-style-dialog-style-based-para-div-bottom-margin;
2577
+ }
2578
+
2579
+ .e-de-style-name,
2580
+ .e-de-style-styletype,
2581
+ .e-de-style-style-based-on,
2582
+ .e-de-style-style-paragraph {
2583
+ font-size: 13px;
2584
+ font-weight: 400;
2585
+ margin-bottom: $de-style-dialog-label-bottom-margin;
2586
+ width: 180px;
2587
+ }
2588
+
2589
+ .e-de-style-left-div {
2590
+ margin-right: $de-style-dialog-style-left-div-right-margin;
2591
+ }
2592
+
2593
+ .e-de-style-font-color-picker,
2594
+ .e-de-style-icon-button-size,
2595
+ .e-de-style-icon-button-first-size,
2596
+ .e-de-style-icon-button-last-size {
2597
+ height: 30px;
2598
+ }
2599
+
2600
+ .e-de-style-bold-button-size {
2601
+ height: 30px;
2602
+ margin-left: 6px;
2603
+ margin-right: 8px;
2604
+ }
2605
+
2606
+ .e-de-style-font-color-picker,
2607
+ .e-de-style-icon-button-size {
2608
+ margin-right: $de-style-dialog-label-bottom-margin;
2609
+ }
2610
+
2611
+ .e-de-style-icon-button-first-size {
2612
+ margin-left: 6px;
2613
+ margin-right: 3px;
2614
+ }
2615
+
2616
+ .e-de-style-icon-button-last-size {
2617
+ margin-right: 6px;
2618
+ }
2619
+
2620
+ .e-de-style-font-color-picker {
2621
+ margin-left: 8px;
2622
+ }
2623
+
2624
+ .e-style-font-fmaily-right {
2625
+ margin-right: $de-style-dialog-label-bottom-margin;
2626
+ }
2627
+
2628
+ .e-style-font {
2629
+ margin-left: $de-style-font-margin-left;
2630
+ margin-right: $de-style-font-margin-right;
2631
+ }
2632
+
2633
+ .e-de-style-left-div .e-de-style-dlg-name-input {
2634
+ height: $e-de-style-input-text-height;
2635
+ }
2636
+
2637
+ .e-style-list {
2638
+ margin-left: $de-style-list-margin-left;
2639
+ }
2640
+
2641
+ .e-de-style-dialog .e-de-style-only-this-document {
2642
+ margin-top: 25px;
2643
+ }
2644
+
2645
+ .e-de-style-format-dropdwn {
2646
+ width: 135px;
2647
+ }
2648
+
2649
+ .e-de-style-options-div {
2650
+ margin-bottom: $de-style-dialog-option-div-bottom-margin;
2651
+ padding: 5px;
2652
+ }
2653
+
2654
+ .e-de-style-paragraph-group-button {
2655
+ border-right: 2px solid $de-style-toggle-btn-color;
2656
+ }
2657
+
2658
+ .e-de-style-font-group-button {
2659
+ border-left: 2px solid $de-style-toggle-btn-color;
2660
+ border-right: 2px solid $de-style-toggle-btn-color;
2661
+ }
2662
+
2663
+ .e-de-op-replace-messagediv {
2664
+ color: $de-op-container-messagediv-color;
2665
+ position: absolute;
2666
+ top: 144px;
2667
+ }
2668
+
2669
+ .e-de-font-content-label .e-label,
2670
+ .e-de-font-dlg-cb-right .e-label,
2671
+ .e-de-font-checkbox .e-label {
2672
+ font-size: $de-font-checkbox-label-font-size;
2673
+ }
2674
+
2675
+ .e-de-font-content-label .e-frame,
2676
+ .e-de-font-dlg-cb-right .e-frame,
2677
+ .e-de-font-checkbox .e-frame {
2678
+ height: $de-checkbox-height;
2679
+ line-height: $de-checkbox-line-height;
2680
+ width: $de-checkbox-width;
2681
+ }
2682
+
2683
+ .e-de-op-input-group,
2684
+ .e-de-op-replacewith {
2685
+ height: $de-op-input-group-height;
2686
+ }
2687
+
2688
+ .e-de-hyperlink-bookmark-check {
2689
+ margin-top: $de-hyperlink-bookmark-check-margin-top;
2690
+ }
2691
+
2692
+ .e-de-table-container-div .e-checkbox-wrapper .e-frame,
2693
+ .e-de-table-header-div .e-checkbox-wrapper .e-frame,
2694
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-frame,
2695
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-frame,
2696
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-frame,
2697
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-frame,
2698
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-frame,
2699
+ .e-de-tbl-margin-sub-header .e-frame {
2700
+ height: $de-checkbox-height;
2701
+ line-height: $de-checkbox-line-height;
2702
+ width: $de-checkbox-width;
2703
+ }
2704
+
2705
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2706
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2707
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2708
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label ,
2709
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2710
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2711
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2712
+ .e-de-tbl-margin-sub-header .e-label {
2713
+ font-size: 14px;
2714
+ }
2715
+
2716
+ .e-de-table-ppty-dlg-measure-div {
2717
+ float: right;
2718
+ margin-left: $de-table-ppty-dlg-measure-div-margin-left;
2719
+ margin-top: -12px;
2720
+ }
2721
+
2722
+ .e-de-table-ppty-dlg-measure-drop-down-div {
2723
+ float: right;
2724
+ margin-left: $de-table-ppty-dlg-measure-div-margin-left;
2725
+ margin-top: $de-table-ppty-dlg-measure-div-margin-top;
2726
+ }
2727
+
2728
+ .e-de-table-ppty-dlg-left-indent-container {
2729
+ float: right;
2730
+ margin-right: $de-table-ppty-dlg-left-indent-container-margin-right;
2731
+ }
2732
+
2733
+ .e-de-table-ppty-dlg-row-height-label {
2734
+ float: right;
2735
+ margin-right: $de-table-ppty-dlg-row-height-label-margin-right;
2736
+ margin-top: $de-table-ppty-dlg-row-height-label-margin-top;
2737
+ }
2738
+
2739
+ .e-de-table-ppty-dlg-preferred-width-div {
2740
+ float: right;
2741
+ margin-left: $de-table-ppty-dlg-preferred-width-margin-left;
2742
+ margin-top: $de-table-ppty-dlg-preferred-width-margin-top;
2743
+ }
2744
+
2745
+ .e-de-table-ppty-options-break {
2746
+ margin-bottom: $de-table-ppty-options-break-margin-bottom;
2747
+ }
2748
+
2749
+ .e-de-table-cell-subheader-div {
2750
+ margin-right: $de-table-cell-subheader-div-margin-right;
2751
+ margin-top: $de-table-cell-subheader-div-margin-top;
2752
+ }
2753
+
2754
+ .e-de-table-ppty-dlg-cell-tab-measure-label {
2755
+ float: right;
2756
+ margin-right: $de-table-ppty-dlg-cell-tab-measure-label-margin-right;
2757
+ margin-top: $de-table-ppty-dlg-cell-tab-measure-label-margin-top;
2758
+ }
2759
+
2760
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-row-header {
2761
+ padding-left: $de-table-ppty-dlg-table-header-padding;
2762
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2763
+ }
2764
+
2765
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-cell-header {
2766
+ padding-left: $de-table-ppty-dlg-table-header-padding;
2767
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2768
+ }
2769
+
2770
+ .e-tab .e-tab-header .e-toolbar-item .e-de-page-setup-dlg-margin-tab-header {
2771
+ padding-left: $de-table-ppty-dlg-table-header-padding-left;
2772
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2773
+ }
2774
+
2775
+ .e-styles-list {
2776
+ float: left;
2777
+ margin-right: $de-bookmark-listview-margin-right;
2778
+ width: 250px;
2779
+ }
2780
+
2781
+ .e-styles-textboxdiv {
2782
+ padding-bottom: 15px;
2783
+ }
2784
+
2785
+ .e-styles-listview .e-list-item {
2786
+ font-size: 13px;
2787
+ height: 30px;
2788
+ line-height: 27px;
2789
+ }
2790
+
2791
+ .e-styles-common {
2792
+ padding-top: 5px;
2793
+ }
2794
+
2795
+ .e-styles-button {
2796
+ float: right;
2797
+ }
2798
+
2799
+ .e-de-toc-dlg-styles {
2800
+ margin-bottom: $de-toc-dlg-styles-margin-bottom;
2801
+ margin-left: $de-toc-dlg-styles-margin-left;
2802
+ margin-top: $de-toc-dlg-styles-margin-top;
2803
+ }
2804
+
2805
+ .e-de-toc-dlg-build-table {
2806
+ margin-top: $de-toc-dlg-build-table-margin-top;
2807
+ }
2808
+
2809
+ .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2810
+ height: 24px;
2811
+ margin-left: $de-toc-dlg-toc-level-margin-left;
2812
+ width: 44px;
2813
+ }
2814
+
2815
+ .e-de-toc-styles-table-div {
2816
+ border: 1px solid $de-toc-list-view-border-color;
2817
+ border-radius: $de-toc-styles-table-div-border-radius;
2818
+ margin-top: $de-toc-styles-table-div-margin-top;
2819
+ width: 213px;
2820
+ }
2821
+
2822
+ .e-de-toc-dlg-sub-level-heading {
2823
+ font-size: 12px;
2824
+ }
2825
+
2826
+ .e-de-toc-table-div {
2827
+ height: $e-de-toc-table-div-height;
2828
+ overflow-y: scroll;
2829
+ width: $de-toc-table-div-width;
2830
+ }
2831
+
2832
+ .e-de-toc-dlg-style-input {
2833
+ margin-bottom: $de-toc-dlg-style-input-margin-bottom;
2834
+ margin-left: $de-toc-dlg-style-input-margin-left;
2835
+ width: $de-toc-dlg-style-input-width;
2836
+ }
2837
+
2838
+ .e-de-toc-dlg-outline-levels {
2839
+ margin-top: 15px;
2840
+ width: $de-toc-dlg-outline-levels-width;
2841
+ }
2842
+
2843
+ .e-de-styles,
2844
+ .e-de-bookmark {
2845
+ margin-top: $de-bookmark-content-margin-top;
2846
+ }
2847
+
2848
+ .e-bookmark-textboxdiv .e-bookmark-textbox-input {
2849
+ height: $de-bookmark-textbox-height;
2850
+ }
2851
+
2852
+ .e-styles-dlgfields {
2853
+ font-weight: 400;
2854
+ margin-bottom: 6px;
2855
+ }
2856
+
2857
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-find-tab-header {
2858
+ padding-left: $de-op-tab-header-padding-left;
2859
+ padding-right: $de-op-tab-header-padding;
2860
+ }
2861
+
2862
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-replace-tab-header {
2863
+ padding-left: $de-op-tab-header-padding;
2864
+ padding-right: $de-op-tab-header-padding;
2865
+ }
2866
+
2867
+ .e-de-dlg-target .e-footer-content .e-list-dlg-font {
2868
+ margin-left: $de-list-dlg-font-margin-left;
2869
+ }
2870
+
2871
+ .e-bookmark-dlgfields {
2872
+ font-weight: 400;
2873
+ margin-bottom: $de-bookmark-dlgfields-margin-bottom;
2874
+ }
2875
+
2876
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-menuitem-md {
2877
+ height: 65px;
2878
+ padding: 10px;
2879
+ width: 70px;
2880
+ }
2881
+
2882
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-bullet-menuitem-md {
2883
+ height: 45px;
2884
+ width: 45px;
2885
+ }
2886
+
2887
+ .e-de-bullet-icon-size {
2888
+ height: 45px;
2889
+ width: 45px;
2890
+ }
2891
+
2892
+ .e-de-ui-list-header-presetmenu {
2893
+ cursor: pointer;
2894
+ font-size: 11px;
2895
+ line-height: 14px;
2896
+ min-width: 50px;
2897
+ overflow: hidden;
2898
+ text-align: left;
2899
+ white-space: nowrap;
2900
+ width: 100%;
2901
+ }
2902
+
2903
+ .e-de-ui-bullet {
2904
+ font-size: 42px;
2905
+ }
2906
+
2907
+ .e-de-ui-list-header-presetmenu .e-de-ui-list-line {
2908
+ border-bottom: 1px solid $de-numbering-list-line-color;
2909
+ margin-left: 5px;
2910
+ width: 100%;
2911
+ }
2912
+
2913
+ .e-de-ui-list-header-presetmenu div span {
2914
+ color: $de-numbering-list-span-color;
2915
+ display: inline-block;
2916
+ vertical-align: middle;
2917
+ }
2918
+
2919
+ .e-de-ui-wfloating-menu .e-de-ui-wfloating-menuitem,
2920
+ .e-de-ui-wfloating-menu .e-de-ui-menuitem-none {
2921
+ border: 0;
2922
+ box-shadow: inset 0 0 0 1px $de-numbering-list-border-color;
2923
+ cursor: pointer;
2924
+ height: 70px;
2925
+ margin: 0 5px 5px 0;
2926
+ padding: 0;
2927
+ width: 70px;
2928
+ }
2929
+
2930
+ .e-de-ui-wfloating-menu {
2931
+ padding: 10px 4px 5px 10px;
2932
+ }
2933
+
2934
+ .e-de-list-thumbnail .e-de-list-items {
2935
+ float: left;
2936
+ }
2937
+
2938
+ .e-de-list-thumbnail .e-de-list-items {
2939
+ background: $de-numbering-list-background-color;
2940
+ border: 1px solid transparent;
2941
+ clear: initial;
2942
+ display: inline-block;
2943
+ height: auto;
2944
+ margin: 5px;
2945
+ text-align: center;
2946
+ width: auto;
2947
+ }
2948
+
2949
+ .e-de-list-items {
2950
+ background: $de-numbering-list-background-color;
2951
+ box-sizing: border-box;
2952
+ cursor: pointer;
2953
+ list-style: none;
2954
+ padding: 7px 10px;
2955
+ position: relative;
2956
+ }
2957
+
2958
+ .e-de-list-item-size {
2959
+ font-size: 14px;
2960
+ }
2961
+
2962
+ .e-de-ui-wfloating-menu {
2963
+ padding: 10px 4px 5px 10px;
2964
+ }
2965
+
2966
+ .e-de-table-border-fill {
2967
+ margin-right: 25px;
2968
+ margin-top: 7px;
2969
+ }
2970
+
2971
+ .e-de-table-ppty-dlg-tabs {
2972
+ height: $de-table-ppty-dlg-tabs-height;
2973
+ position: relative;
2974
+ width: 530px;
2975
+ }
2976
+
2977
+ .e-de-ui-bullet-list-header-presetmenu .e-de-list-thumbnail .e-de-list-active,
2978
+ .e-de-style-numbered-list .e-de-list-thumbnail .e-de-list-active {
2979
+ border-color: $de-table-align-active-color;
2980
+ }
2981
+
2982
+ .e-de-bullet-icons {
2983
+ left: 50%;
2984
+ position: absolute;
2985
+ top: 50%;
2986
+ transform: translate(-43%, -43%);
2987
+ }
2988
+ }