@syncfusion/ej2-angular-documenteditor 20.2.38-ngcc → 20.2.39

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 +27 -13
  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 +9 -1
  23. package/styles/bootstrap.css +9 -1
  24. package/styles/bootstrap4.css +9 -1
  25. package/styles/bootstrap5-dark.css +10 -3
  26. package/styles/bootstrap5.css +10 -3
  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 +557 -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 +566 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +557 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2985 -0
  40. package/styles/document-editor/_layout.scss +216 -0
  41. package/styles/document-editor/_material-dark-definition.scss +562 -0
  42. package/styles/document-editor/_material-definition.scss +562 -0
  43. package/styles/document-editor/_material3-definition.scss +557 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +554 -0
  46. package/styles/document-editor/_theme.scss +3391 -0
  47. package/styles/document-editor/bootstrap-dark.css +5 -0
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +5 -0
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +5 -0
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +5 -0
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +5 -0
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +5 -0
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +5 -0
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +5 -0
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +5 -0
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +18 -14
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +5 -0
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +607 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +607 -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 +607 -0
  75. package/styles/document-editor/icons/_fabric.scss +607 -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 +5 -0
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +5 -0
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +5 -0
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +5 -0
  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 +127 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +127 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +143 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +153 -0
  101. package/styles/document-editor-container/_definition.scss +11 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +132 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +129 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +154 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +153 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +130 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +133 -0
  109. package/styles/document-editor-container/_layout.scss +87 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +131 -0
  111. package/styles/document-editor-container/_material-definition.scss +130 -0
  112. package/styles/document-editor-container/_material3-definition.scss +153 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +147 -0
  115. package/styles/document-editor-container/_theme.scss +2001 -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 +4 -1
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -3
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -3
  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 -3
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -3
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +18 -15
  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 +399 -0
  151. package/styles/document-editor-container/icons/_material.scss +399 -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 +9 -1
  164. package/styles/fabric.css +9 -1
  165. package/styles/fluent-dark.css +10 -3
  166. package/styles/fluent.css +10 -3
  167. package/styles/highcontrast-light.css +22 -15
  168. package/styles/highcontrast.css +9 -1
  169. package/styles/material-dark.css +9 -1
  170. package/styles/material.css +9 -1
  171. package/styles/tailwind-dark.css +10 -3
  172. package/styles/tailwind.css +10 -3
  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 -2992
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -841
  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,2001 @@
1
+ @include export-module('document-editor-container-theme') {
2
+ /* stylelint-disable */
3
+ .e-de-toolbar {
4
+ height: 100%;
5
+ }
6
+ .e-de-statusbar-pageweb {
7
+ background-color: $de-ctnr-bg-clr;
8
+ border: 0;
9
+ box-shadow: none;
10
+ float: right;
11
+ @if $skin-name!='bootstrap5' and $skin-name!='tailwind' and $skin-name!='FluentUI' {
12
+ height: 33px;
13
+ width: 33px;
14
+ }
15
+ @if $skin-name=='bootstrap4' {
16
+ color: $e-de-statusbar-separator-color;
17
+ }
18
+ @if $skin-name=='bootstrap5' {
19
+ color: $icon-color;
20
+ }
21
+ #{if(&, '&', '*')}:hover {
22
+ @if $skin-name=='bootstrap5' {
23
+ color: $e-de-bzr-button-hover-font-color;
24
+ }
25
+ box-shadow: none;
26
+ }
27
+ }
28
+ .e-de-statusbar-pageweb .e-de-printlayout,
29
+ .e-de-statusbar-pageweb .e-de-weblayout {
30
+ font-size: $e-de-bzr-btn-font-size;
31
+ }
32
+ .e-de-statusbar-pageweb .e-de-printlayout:hover,
33
+ .e-de-statusbar-pageweb .e-de-weblayout:hover {
34
+ font-size: $e-de-bzr-btn-font-size;
35
+ @if $skin-name=='bootstrap5' {
36
+ color: $e-de-bzr-button-hover-font-color;
37
+ }
38
+ }
39
+ .e-bigger {
40
+ @if $skin-name !='bootstrap5' and $skin-name !='tailwind' and $skin-name!='FluentUI' {
41
+ .e-btn.e-de-statusbar-pageweb {
42
+ padding: 0;
43
+ }
44
+ }
45
+ .e-de-statusbar-pageweb .e-de-printlayout,
46
+ .e-de-statusbar-pageweb .e-de-weblayout {
47
+ font-size: $e-de-bzr-btn-font-size-big;
48
+ @if $skin-name=='bootstrap' {
49
+ margin-top: -6px;
50
+ }
51
+ }
52
+ }
53
+ .e-de-linespacing {
54
+ margin-top: $e-de-ctnr-linespacing-tick-icon;
55
+ }
56
+ .e-de-statusbar-zoom {
57
+ background-color: $de-ctnr-bg-clr;
58
+ border: 0;
59
+ color: $de-font-color;
60
+ float: right;
61
+ font-weight: 400;
62
+ height: 33px;
63
+ @if $skin-name =='bootstrap5' {
64
+ box-shadow: none;
65
+ }
66
+ }
67
+
68
+ .e-de-pagenumber-text {
69
+ border: none !important;
70
+ // height: 22px !important;
71
+ // margin-top: $de-pagenumber-text-margin-top !important;
72
+ }
73
+
74
+ .e-de-pagenumber-input {
75
+ background: $e-de-pagenumber-bg;
76
+ border: 1px solid $de-panel-border;
77
+ border-radius: $de-pagenumber-text-border-radius;
78
+ color: $de-font-color;
79
+ @if $skin-name=='bootstrap5' or $skin-name=='tailwind' or $skin-name =='FluentUI' {
80
+ font-family: inherit;
81
+ font-size: $e-de-btn-font-size;
82
+ }
83
+ padding: 0px;
84
+ text-align: center;
85
+ width: 22px;
86
+ }
87
+ @if $skin-name=='bootstrap5' or $skin-name=='tailwind' or $skin-name =='FluentUI' {
88
+ .e-bigger {
89
+ .e-de-pagenumber-input {
90
+ font-size: $e-de-btn-font-size-big;
91
+ //margin-top: $de-page-number-margin-top-big;
92
+ }
93
+ }
94
+ }
95
+ .e-btn-pageweb-toggle {
96
+ background-color: $de-pageweb-toggle-color;
97
+ box-shadow: none;
98
+ outline: $de-pageweb-toggle-outline;
99
+ outline-offset: 0;
100
+ @if $skin-name=='bootstrap4' {
101
+ color: $de-prop-btn-bg-color;
102
+ }
103
+ }
104
+ .e-btn-pageweb-spellcheck {
105
+ border: 0;
106
+ box-shadow: none;
107
+ float: right;
108
+ margin-left: $de-zoom-tlbr-margin-left;
109
+ }
110
+ @if $skin-name=='tailwind' $skin-name=='material' or $skin-name=='bootstrap-dark' or $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='fabric-dark' or $skin-name=='fabric' or $skin-name=='highcontrast' or $skin-name=='material-dark' {
111
+ .e-bigger .e-btn-pageweb-spellcheck {
112
+ margin-left: $de-zoom-tlbr-margin-left-big;
113
+ }
114
+ }
115
+ .e-de-ctn-title {
116
+ background-color: $de-title-bar-bg-clr;
117
+ border-bottom: none !important;
118
+ color: $de-title-bar-font-clr;
119
+ @if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
120
+ font-size: $e-de-btn-font-size !important;
121
+ button {
122
+ font-size: $e-de-btn-font-size !important;
123
+ height: 36px !important;
124
+ @if $skin-name !='tailwind' {
125
+ margin: 0 !important;
126
+ }
127
+ .e-btn-icon {
128
+ font-size: $e-de-btn-font-icon-size !important;
129
+ }
130
+ }
131
+ }
132
+ }
133
+ @if $skin-name=='tailwind' or $skin-name == 'bootstrap5' or $skin-name =='FluentUI' {
134
+ .e-bigger {
135
+ .e-de-ctn-title {
136
+ font-size: $e-de-btn-font-size-big !important;
137
+ height: 40px !important;
138
+ button {
139
+ font-size: $e-de-btn-font-size-big !important;
140
+ height: auto !important;
141
+ @if $skin-name !='tailwind' {
142
+ margin: 0 !important;
143
+ }
144
+ .e-btn-icon {
145
+ font-size: $e-de-btn-font-icon-size-big !important;
146
+ }
147
+ }
148
+ }
149
+ }
150
+ }
151
+ .e-de-tool-ctnr-properties-pane {
152
+ display: flex;
153
+ height: $de-tool-ctnr-editor-height;
154
+ width: 100%;
155
+ }
156
+ .e-de-ctnr-properties-pane {
157
+ display: flex;
158
+ height: $de-ctnr-editor-height;
159
+ width: 100%;
160
+ }
161
+ .e-de-statusbar-separator {
162
+ border-left: 1px solid $e-de-statusbar-separator-color;
163
+ height: 16px;
164
+ margin-left: $de-status-br-left;
165
+ margin-top: $de-status-br-top;
166
+ }
167
+ .e-de-statusbar-spellcheck {
168
+ border-radius: 2px;
169
+ font-weight: 400;
170
+ margin-left: $de-spellcheck-tlbr-margin-left;
171
+ }
172
+ .e-de-ctn {
173
+ background-color: $de-ctnr-bg-clr;
174
+ border: 1px solid $de-panel-border;
175
+ height: $de-ctnr-height;
176
+ position: relative;
177
+ width: 100%;
178
+ }
179
+ .e-bigger .e-de-statusbar-spellcheck {
180
+ border-radius: 2px;
181
+ margin-left: $de-spellcheck-tlbr-margin-left;
182
+ }
183
+ .e-de-ctnr-toolbar {
184
+ display: flex;
185
+ height: $de-ctnr-tlbr-height;
186
+ width: 100%;
187
+ }
188
+ .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
189
+ .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
190
+ border: 0;
191
+ }
192
+ .e-de-pane {
193
+ border-left: 1px solid $de-panel-border;
194
+ }
195
+ .e-de-pane-rtl {
196
+ border-right: 1px solid $de-panel-border;
197
+ }
198
+ @if $skin-name=='material' {
199
+ .e-de-pane>div button:not(.e-primary),
200
+ .e-de-pane-rtl>div button:not(.e-primary) {
201
+ background-color: $de-panel-btn-bg-clr;
202
+ }
203
+ }
204
+ .e-de-tool-ctnr-properties-pane,
205
+ .e-de-ctnr-properties-pane {
206
+ background-color: $de-ctnr-prop-bg-clr;
207
+ border-bottom: 1px solid $de-panel-border;
208
+ border-top: 1px solid $de-panel-border;
209
+ }
210
+ .e-de-ctnr-segment {
211
+ margin-bottom: $de-ctnr-margin-bottom;
212
+ }
213
+ @if $skin-name=='tailwind' or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
214
+ .e-de-insert-del-cell>div:last-child {
215
+ margin-left: $de-pane-margin-right !important;
216
+ }
217
+ .e-bigger {
218
+ .e-de-ctnr-prop-label,
219
+ .e-de-ctnr-segment {
220
+ margin-bottom: 16px;
221
+ }
222
+ .e-de-property-div-padding {
223
+ //padding-bottom: 16px;
224
+ padding: 16px;
225
+ }
226
+ .e-de-insert-del-cell>div:last-child {
227
+ margin-left: $de-pane-margin-right-big !important;
228
+ }
229
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon {
230
+ margin-left: $de-btn-icon-margin;
231
+ }
232
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon:not(.e-caret) {
233
+ font-size: $de-btn-font-size-bigger;
234
+ }
235
+ .e-de-pane-rtl {
236
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon {
237
+ margin-left: 0px;
238
+ @if $skin-name=='tailwind' {
239
+ margin-right: -5px;
240
+ }
241
+ @else {
242
+ margin-right: $de-btn-icon-margin;
243
+ }
244
+ }
245
+ }
246
+ }
247
+ .e-de-ctnr-group-btn .e-btn .e-btn-icon:not(.e-caret) {
248
+ font-size: $de-btn-font-size;
249
+ }
250
+ .e-de-property-div-padding .e-de-cellmargin-text {
251
+ padding-bottom: 3px;
252
+ }
253
+ .e-de-cntr-pane-padding.e-de-prop-separator-line>div>div:first-child>div:first-child {
254
+ margin-bottom: 0 !important;
255
+ }
256
+ }
257
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
258
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
259
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
260
+ margin-right: $de-pane-margin-right;
261
+ }
262
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
263
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
264
+ margin-left: $de-pane-margin-right;
265
+ margin-right: 0;
266
+ }
267
+ }
268
+ @if $skin-name=='bootstrap-dark' {
269
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
270
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
271
+ margin-right: $de-pane-margin-right;
272
+ }
273
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
274
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
275
+ margin-left: $de-pane-margin-right;
276
+ margin-right: 0;
277
+ }
278
+ }
279
+ .e-de-ctnr-segment>div:first-child:not(.e-rtl),
280
+ .e-de-ctnr-segment>button:first-child:not(.e-rtl) {
281
+ margin-right: $de-pane-margin-right;
282
+ }
283
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>div:first-child,
284
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>button:first-child {
285
+ margin-left: $de-pane-margin-right;
286
+ margin-right: 0;
287
+ }
288
+ .e-de-tlbr-wrapper {
289
+ background-color: $de-prpty-btn-bg-clr;
290
+ height: $de-ctnr-tlbr-height;
291
+ width: $de-ctnr-tlbr-width;
292
+ }
293
+ .e-de-ctnr-prop-label {
294
+ color: $de-panel-header-color;
295
+ display: inline-block;
296
+ font-size: $de-panel-header-size;
297
+ font-weight: 500;
298
+ letter-spacing: 0.05px;
299
+ @if $skin-name=='tailwind' {
300
+ line-height: 1.5;
301
+ }
302
+ margin-bottom: $de-ctnr-margin-bottom;
303
+ opacity: 0.87;
304
+ }
305
+ .e-de-table-prop-label {
306
+ margin-left: 12px;
307
+ }
308
+ .e-de-table-prop-label.e-de-rtl {
309
+ margin-left: 0;
310
+ margin-right: 12px;
311
+ }
312
+ .e-de-toolbar.e-toolbar {
313
+ border-radius: 0;
314
+ @if $skin-name =='FluentUI' {
315
+ box-shadow: none;
316
+ }
317
+ }
318
+ .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-first {
319
+ margin-left: 0;
320
+ margin-right: $de-tlbr-margin-right;
321
+ }
322
+ .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-first {
323
+ margin-left: $de-tlbr-margin-right;
324
+ margin-right: 0;
325
+ }
326
+ .e-bigger .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-first {
327
+ margin-left: 0;
328
+ margin-right: $de-tlbr-margin-right-big;
329
+ }
330
+ .e-bigger .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-first {
331
+ margin-left: $de-tlbr-margin-right-big;
332
+ margin-right: 0;
333
+ }
334
+ .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-last {
335
+ margin-left: $de-tlbr-margin-right;
336
+ margin-right: 0;
337
+ }
338
+ .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-last {
339
+ margin-left: 0;
340
+ margin-right: $de-tlbr-margin-right;
341
+ }
342
+ .e-bigger .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-last {
343
+ margin-left: $de-tlbr-margin-right-big;
344
+ margin-right: 0;
345
+ }
346
+ .e-bigger .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-last {
347
+ margin-left: 0;
348
+ margin-right: $de-tlbr-margin-right-big;
349
+ }
350
+ .e-de-toolbar.e-toolbar .e-toolbar-items {
351
+ height: $de-ctnr-tlbr-height;
352
+ .e-toolbar-item.e-de-separator {
353
+ @if $skin-name=='fabric' {
354
+ border: 1px solid $de-ctnr-separator-clr;
355
+ border-width: 0 1px 0 0;
356
+ }
357
+ height: 59px;
358
+ margin: $de-ctrnr-tblr-separator-margin;
359
+ }
360
+ .e-toolbar-item.e-de-toolbar-btn-start {
361
+ margin-left: $de-tlbr-margin-first;
362
+ margin-right: $de-tlbr-margin-right;
363
+ }
364
+ .e-toolbar-item.e-de-toolbar-btn-middle {
365
+ margin-left: $de-tlbr-margin-right;
366
+ margin-right: $de-tlbr-margin-right;
367
+ }
368
+ .e-toolbar-item.e-de-toolbar-btn-end {
369
+ margin-left: $de-tlbr-margin-right;
370
+ margin-right: $de-tlbr-margin-first;
371
+ }
372
+ .e-toolbar-item.e-de-image-focus :focus {
373
+ background-color: $de-toggle-bg-color;
374
+ }
375
+ }
376
+ @if $skin-name=='bootstrap' {
377
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
378
+ padding: 0 1px;
379
+ padding-bottom: 6px;
380
+ #{if(&, '&', '*')}:focus {
381
+ padding: 0;
382
+ padding-bottom: 6px;
383
+ }
384
+ #{if(&, '&', '*')}:active {
385
+ padding: 0;
386
+ padding-bottom: 6px;
387
+ }
388
+ #{if(&, '&', '*')}:hover {
389
+ padding: 0;
390
+ padding-bottom: 6px;
391
+ }
392
+ }
393
+ }
394
+ @if $skin-name !='bootstrap' {
395
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
396
+ padding: 0;
397
+ padding-bottom: $de-toolbar-padding-bottom;
398
+ #{if(&, '&', '*')}:focus {
399
+ padding: 0;
400
+ padding-bottom: $de-toolbar-padding-bottom;
401
+ }
402
+ #{if(&, '&', '*')}:active {
403
+ padding: 0;
404
+ padding-bottom: $de-toolbar-padding-bottom;
405
+ }
406
+ #{if(&, '&', '*')}:hover {
407
+ padding: 0;
408
+ padding-bottom: $de-toolbar-padding-bottom;
409
+ }
410
+ }
411
+ }
412
+ @if $skin-name=='bootstrap4' {
413
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
414
+ padding: 0 1px;
415
+ padding-bottom: 6px;
416
+ #{if(&, '&', '*')}:focus {
417
+ padding: 0;
418
+ padding-bottom: 6px;
419
+ }
420
+ #{if(&, '&', '*')}:active {
421
+ padding: 0;
422
+ padding-bottom: 6px;
423
+ }
424
+ #{if(&, '&', '*')}:hover {
425
+ padding: 0;
426
+ padding-bottom: 6px;
427
+ }
428
+ }
429
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-btn-icon {
430
+ color: $de-toolbar-icon-clr;
431
+ font-size: 16px;
432
+ }
433
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
434
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
435
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
436
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:disabled {
437
+ .e-btn-icon {
438
+ color: $de-toggle-btn-color;
439
+ }
440
+ }
441
+ .e-bigger {
442
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-btn-icon {
443
+ color: $de-toolbar-icon-clr;
444
+ font-size: 18px;
445
+ }
446
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
447
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
448
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
449
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:disabled {
450
+ .e-btn-icon {
451
+ color: $de-toggle-btn-color;
452
+ }
453
+ }
454
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
455
+ font-size: 13px;
456
+ }
457
+ }
458
+ }
459
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
460
+ padding: 0;
461
+ }
462
+ .e-de-overlay {
463
+ height: 100%;
464
+ opacity: 0.5;
465
+ pointer-events: none;
466
+ touch-action: none;
467
+ width: 100%;
468
+ }
469
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
470
+ .e-de-font-clr-picker .e-colorpicker-container .e-split-btn-wrapper .e-btn.e-icon-btn,
471
+ .e-de-font-clr-picker .e-colorpicker-container .e-split-btn-wrapper .e-btn.e-icon-btn,
472
+ .e-de-font-clr-picker .e-colorpicker-wrapper .e-btn.e-icon-btn,
473
+ .e-de-font-clr-picker .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
474
+ .e-de-font-clr-picker .e-colorpicker-wrapper .e-btn.e-icon-btn.e-rtl {
475
+ padding: 0;
476
+ }
477
+
478
+ .e-de-prop-font-colorpicker .e-btn.e-icon-btn,
479
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-split-colorpicker.e-split-btn {
480
+ padding: 4px 8px !important;
481
+ }
482
+
483
+ .e-de-ctnr-style-div {
484
+ width: $de-text-pane-style-width;
485
+ }
486
+
487
+ .e-btn-toggle {
488
+ .e-tbar-btn-text {
489
+ color: $de-toggle-btn-color !important;
490
+ }
491
+ .e-btn-icon {
492
+ color: $de-toggle-btn-color !important;
493
+ }
494
+ }
495
+
496
+ .e-de-ctnr-list,
497
+ .e-de-list-header-presetmenu {
498
+ color: $de-prop-btn-icon-clr;
499
+ }
500
+ .e-de-ctnr-group-btn {
501
+ .e-btn {
502
+ background-color: $de-prop-btn-bg-color;
503
+ border-color: $de-prop-btn-border-color;
504
+ #{if(&, '&', '*')}:focus {
505
+ background-color: $de-toggle-border-hover-color;
506
+ @if $skin-name !='bootstrap4' and $skin-name!='bootstrap5' {
507
+ border: 1px;
508
+ }
509
+ border-color: $de-toggle-border-color;
510
+ box-shadow: 0 0 0 0 $de-toggle-bg-color;
511
+ outline-color: $de-toggle-bg-color;
512
+ }
513
+ #{if(&, '&', '*')}:active,
514
+ .e-btn-toggle {
515
+ background-color: $de-toggle-border-hover-color;
516
+ @if $skin-name !='bootstrap4' and $skin-name!='bootstrap5' {
517
+ border: 1px;
518
+ }
519
+ border-color: $de-toggle-border-color;
520
+ }
521
+ #{if(&, '&', '*')}:hover {
522
+ @if $skin-name !='tailwind' {
523
+ background-color: $de-toggle-hover-color;
524
+ @if $skin-name !='bootstrap4' and $skin-name!='bootstrap5' {
525
+ border: 1px;
526
+ }
527
+ @if $skin-name!='bootstrap5' {
528
+ border-color: $de-toggle-border-hover-color;
529
+ }
530
+ }
531
+ }
532
+ }
533
+ @if $skin-name=='bootstrap4' {
534
+ .e-split-btn-wrapper.e-rtl .e-split-btn {
535
+ border-color: $de-prop-btn-border-color;
536
+ }
537
+ }
538
+ }
539
+ .e-de-ctnr-group-btn .e-btn:disabled {
540
+ background-color: $de-toggle-bg-color;
541
+ border-color: $de-toggle-bg-color;
542
+ opacity: 65%;
543
+ }
544
+ .e-de-ctnr-group-btn .e-btn:hover,
545
+ .e-de-ctnr-group-btn .e-btn:focus,
546
+ .e-de-ctnr-group-btn .e-btn:active,
547
+ .e-de-ctnr-group-btn .e-btn:disabled {
548
+ .e-btn-icon {
549
+ @if $skin-name=='bootstrap5' {
550
+ color: $de-white-color;
551
+ }
552
+ @else {
553
+ color: $de-toggle-btn-color;
554
+ }
555
+ }
556
+ }
557
+ .e-de-ctnr-group-btn .e-btn-icon {
558
+ color: $de-prop-btn-icon-clr;
559
+ font-size: $de-btn-font-size;
560
+ }
561
+ .e-bigger {
562
+ .e-de-ctnr-group-btn .e-btn-icon {
563
+ color: $de-prop-btn-icon-clr;
564
+ }
565
+ }
566
+ .e-btn-toggle .e-btn-icon {
567
+ color: $de-toggle-btn-color;
568
+ }
569
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn,
570
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn-icon,
571
+ .e-de-border-size-button,
572
+ .e-de-border-size-button .e-btn-icon {
573
+ background-color: $de-prop-btn-bg-color;
574
+ border-color: $de-prop-btn-border-color;
575
+ color: $de-prop-btn-icon-clr;
576
+ }
577
+ .e-de-border-size-button:focus,
578
+ .e-de-border-size-button:hover,
579
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn:hover,
580
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn:focus {
581
+ background-color: $de-toggle-bg-color;
582
+ box-shadow: $de-toggle-btn-border;
583
+ .e-btn-icon {
584
+ background-color: $de-toggle-bg-color;
585
+ box-shadow: $de-toggle-btn-border;
586
+ color: $de-toggle-btn-color;
587
+ }
588
+ }
589
+ .e-de-border-size-button .e-btn-icon:focus,
590
+ .e-de-border-size-button .e-btn-icon:hover {
591
+ background-color: $de-toggle-bg-color;
592
+ box-shadow: $de-toggle-btn-border;
593
+ color: $de-toggle-btn-color;
594
+ }
595
+
596
+ .e-de-pagenumber-text {
597
+ border: none !important;
598
+ // height: 22px !important;
599
+ // margin-top: $de-pagenumber-text-margin-top !important;
600
+ }
601
+
602
+ }
603
+ // .de-split-button>div:first-child {
604
+ // margin-right: $de-list-button-margin-right;
605
+ // }
606
+ .e-de-ctnr-properties-pane-btn {
607
+ width: 75px;
608
+ }
609
+ .e-de-pane-enable-clr.e-de-ctnr-properties-pane-btn {
610
+ .e-btn {
611
+ color: $de-pane-color-border;
612
+ }
613
+ }
614
+ .e-de-pane-disable-clr.e-de-ctnr-properties-pane-btn {
615
+ .e-btn {
616
+ color: $de-font-color;
617
+ }
618
+ }
619
+ .e-de-ctnr-properties-pane-btn {
620
+ .e-btn {
621
+ background-color: $de-prpty-btn-bg-clr;
622
+ border-radius: 0;
623
+ box-shadow: none;
624
+ color: $de-pane-color-border;
625
+ min-height: 100%;
626
+ min-width: 100%;
627
+ #{if(&, '&', '*')}:focus {
628
+ box-shadow: none;
629
+ }
630
+ #{if(&, '&', '*')}:active {
631
+ box-shadow: none;
632
+ }
633
+ #{if(&, '&', '*')}:hover {
634
+ box-shadow: none;
635
+ }
636
+ }
637
+ }
638
+ .e-de-showhide-btn {
639
+ border: 0;
640
+ height: $de-ctnr-tlbr-height;
641
+ }
642
+ .e-de-showhide-btn-rtl {
643
+ border: 0;
644
+ height: $de-ctnr-tlbr-height;
645
+ }
646
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
647
+ padding: $de-ctrnr-tblr-item-padding;
648
+ }
649
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
650
+ display: table;
651
+ font-size: $de-toolbar-font-size;
652
+ margin: $de-ctrnr-tblr-item-margin;
653
+ padding: 0;
654
+ white-space: normal;
655
+ }
656
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
657
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
658
+ padding: 0 !important;
659
+ }
660
+ .e-de-hdr-ftr-frst-div {
661
+ margin-bottom: $de-hdr-ftr-frst-div-mrgn-btm;
662
+ }
663
+ .e-de-hdr-ftr-top-div {
664
+ margin-bottom: $de-hdr-ftr-top-div-mrgn-btm;
665
+ }
666
+ .e-de-cntr-pane-padding {
667
+ padding: $de-ctnr-padding;
668
+ }
669
+ .e-de-prop-pane {
670
+ height: 100%;
671
+ min-height: 200px;
672
+ overflow: auto;
673
+ width: $de-text-pane-width;
674
+ }
675
+ .e-de-review-pane {
676
+ border-left: 1px solid $de-op-border-clr;
677
+ height: 100%;
678
+ min-height: 200px;
679
+ overflow: auto;
680
+ width: $e-de-review-pane-width;
681
+ @if $skin-name == 'FluentUI' {
682
+ .e-toolbar {
683
+ box-shadow: none;
684
+ }
685
+ }
686
+ }
687
+ .e-bigger {
688
+ .e-de-cntr-pane-padding {
689
+ @if $skin-name=='FluentUI' {
690
+ padding: 24px;
691
+ }
692
+ @else {
693
+ padding: 16px;
694
+ }
695
+ }
696
+ .e-de-prop-pane {
697
+ height: 100%;
698
+ min-height: 200px;
699
+ overflow: auto;
700
+ width: $de-text-pane-width-big;
701
+ }
702
+ @if $skin-name=='bootstrap4' {
703
+ .e-btn-toggle .e-tbar-btn-text {
704
+ color: $de-toggle-btn-color !important;
705
+ }
706
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn {
707
+ border-color: $de-clr-picker-border-clr;
708
+ }
709
+ }
710
+ @if $skin-name=='tailwind' {
711
+ .e-de-prop-sub-label {
712
+ font-size: 14px;
713
+ }
714
+ .e-de-hdr-ftr-top-div,
715
+ .e-de-hdr-ftr-frst-div {
716
+ margin-bottom: 16px;
717
+ }
718
+ }
719
+ }
720
+ .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
721
+ box-shadow: none;
722
+ height: $de-group-btn-hgt;
723
+ #{if(&, '&', '*')}:focus {
724
+ box-shadow: none;
725
+ }
726
+ #{if(&, '&', '*')}:active {
727
+ box-shadow: none;
728
+ }
729
+ #{if(&, '&', '*')}:hover {
730
+ box-shadow: none;
731
+ }
732
+ }
733
+ .e-de-ctnr-group-btn button {
734
+ box-shadow: none;
735
+ height: $de-group-btn-hgt;
736
+ #{if(&, '&', '*')}:focus {
737
+ box-shadow: none;
738
+ }
739
+ #{if(&, '&', '*')}:active {
740
+ box-shadow: none;
741
+ }
742
+ #{if(&, '&', '*')}:hover {
743
+ box-shadow: none;
744
+ }
745
+ }
746
+ .e-de-property-div-padding {
747
+ border-bottom: 0.5px solid $de-pane-separator;
748
+ //padding-bottom: $de-prop-div-padding-bottom;
749
+ padding: $de-prop-div-padding-top;
750
+ }
751
+ .e-de-ctnr-dropdown-ftr {
752
+ border-top: 1px solid $de-pane-separator;
753
+ color: $de-panel-header-color;
754
+ cursor: pointer;
755
+ display: block;
756
+ font-size: 12px;
757
+ line-height: 40px;
758
+ text-indent: 1.2em;
759
+ }
760
+ .e-de-char-fmt-btn-left>button,
761
+ .e-de-insert-del-cell button {
762
+ width: $de-left-btn-width;
763
+ }
764
+ .e-de-char-fmt-btn-right>button {
765
+ width: $de-right-btn-width;
766
+ }
767
+ .e-de-panel-left-width {
768
+ width: $de-left-panel-width;
769
+ }
770
+ .e-bigger {
771
+ .e-de-panel-left-width {
772
+ width: $de-left-panel-width-big;
773
+ }
774
+ .e-de-char-fmt-btn-left>button,
775
+ .e-de-insert-del-cell button {
776
+ width: $de-left-btn-width-big;
777
+ }
778
+ }
779
+ .e-de-panel-right-width {
780
+ width: $de-right-panel-width;
781
+ }
782
+ @if $skin-name=='bootstrap5' or $skin-name=='FluentUI' or $skin-name=='tailwind' {
783
+ .e-bigger {
784
+ .e-de-panel-right-width {
785
+ width: $de-right-font-size-width-big;
786
+ }
787
+ .e-de-char-fmt-btn-left > button,
788
+ .e-de-char-fmt-btn-right>button {
789
+ width: $de-right-btn-width-big;
790
+ }
791
+ }
792
+ }
793
+ .e-de-cntr-highlight-pane {
794
+ border: 1px solid $de-panel-border;
795
+ }
796
+
797
+ .e-de-btn-hghlclr>button:first-child {
798
+ padding: 1px !important;
799
+ }
800
+ .e-de-ctnr-hglt-color {
801
+ font-size: 12px;
802
+ font-weight: 400;
803
+ height: $de-hlt-clr-height !important;
804
+ width: $de-hlt-clr-height !important;
805
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='tailwind' {
806
+ border-radius: 4px;
807
+ }
808
+ }
809
+
810
+ .e-de-font-clr-picker>div div button,
811
+ .e-de-font-clr-picker>div button,
812
+ .e-de-font-clr-picker>button {
813
+ width: $de-clr-pckr-width;
814
+ }
815
+
816
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md {
817
+ height: 55px;
818
+ padding: 4px !important;
819
+ width: 60px;
820
+ }
821
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md:hover {
822
+ border: 3px solid $de-list-hover-bg;
823
+ padding: 2px !important;
824
+ }
825
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md {
826
+ height: 38px;
827
+ padding: 4px !important;
828
+ width: 38px;
829
+ }
830
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md:hover {
831
+ border: 3px solid $de-list-hover-bg;
832
+ padding: 2px !important;
833
+ }
834
+ .e-de-list-header-presetmenu {
835
+ cursor: pointer;
836
+ font-size: 11px;
837
+ line-height: 14px;
838
+ overflow: hidden;
839
+ text-align: left;
840
+ min-width: 50px;
841
+ white-space: nowrap;
842
+ width: 100%;
843
+ @if $skin-name=='tailwind' {
844
+ color: $icon-color;
845
+ }
846
+ }
847
+ .e-de-bullet-list-header-presetmenu {
848
+ cursor: pointer;
849
+ font-size: 14px;
850
+ left: -11px;
851
+ line-height: $de-bullet-icon-line-height;
852
+ min-width: 50px;
853
+ overflow: hidden;
854
+ position: relative;
855
+ white-space: nowrap;
856
+ width: 100%;
857
+ }
858
+ .e-rtl {
859
+ .e-de-bullet-list-header-presetmenu {
860
+ cursor: pointer;
861
+ font-size: 14px;
862
+ left: 10px;
863
+ line-height: $de-bullet-icon-line-height;
864
+ min-width: 50px;
865
+ overflow: hidden;
866
+ position: relative;
867
+ white-space: nowrap;
868
+ width: 100%;
869
+ }
870
+ }
871
+ .e-de-bullet {
872
+ font-size: 42px;
873
+ }
874
+ .e-de-list-header-presetmenu .e-de-list-line {
875
+ border-bottom: 1px solid $de-prop-btn-icon-clr;
876
+ margin-left: 5px;
877
+ width: 100%;
878
+ }
879
+ .e-de-toc-optionsdiv {
880
+ margin-bottom: 11.5px;
881
+ margin-left: 5.5px;
882
+ margin-top: 15.5px;
883
+ }
884
+ .e-de-toc-optionsdiv.e-de-rtl {
885
+ margin-right: 5.5px;
886
+ margin-left: 0;
887
+ }
888
+ .e-de-list-header-presetmenu div span {
889
+ //color: #aaa;
890
+ display: inline-block;
891
+ vertical-align: middle;
892
+ }
893
+ .e-de-floating-menu .e-de-floating-menuitem,
894
+ .e-de-floating-menu .e-de-menuitem-none {
895
+ cursor: pointer;
896
+ height: 70px;
897
+ padding: 0 !important;
898
+ margin: 0 5px 5px 0 !important;
899
+ width: 70px;
900
+ }
901
+ .e-de-list-thumbnail .e-de-list-items {
902
+ float: left;
903
+ }
904
+ .e-de-list-thumbnail .e-de-list-items {
905
+ border: 1px solid $de-list-thmbnail-border-clr;
906
+ clear: initial;
907
+ display: inline-block;
908
+ height: auto;
909
+ margin: 5px;
910
+ padding: 2px;
911
+ text-align: center;
912
+ width: auto;
913
+ }
914
+ .e-de-list-items {
915
+ cursor: pointer;
916
+ background: $de-ctnr-bg-clr;
917
+ box-sizing: border-box;
918
+ list-style: none;
919
+ padding: 7px 10px 7px 10px;
920
+ position: relative;
921
+ }
922
+ .e-de-list-item-size {
923
+ font-size: 14px;
924
+ }
925
+ .e-de-floating-menuitem.e-de-floating-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected,
926
+ .e-de-floating-menuitem.e-de-floating-bullet-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected {
927
+ border: 3px solid $de-title-bar-bg-clr;
928
+ padding: 2px !important;
929
+ }
930
+ .e-de-floating-menu {
931
+ padding: 10px 4px 5px 10px !important;
932
+ }
933
+ @if $skin-name !='tailwind' {
934
+ .e-de-list-container {
935
+ background: $de-ctnr-bg-clr;
936
+ border: 1px solid #ccc;
937
+ border-radius: 2px;
938
+ box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
939
+ box-sizing: border-box;
940
+ display: inline-block;
941
+ line-height: normal;
942
+ margin: 0;
943
+ outline: 0;
944
+ padding: 5px 0;
945
+ position: absolute;
946
+ width: auto;
947
+ z-index: 10020;
948
+ }
949
+ }
950
+ .e-de-ctnr-list {
951
+ font-size: $de-bullet-icon-font-size;
952
+ @if ( $skin-name !='bootstrap4' and $skin-name !='tailwind') {
953
+ vertical-align: top;
954
+ }
955
+ }
956
+ .e-de-image-property {
957
+ padding-left: 32px;
958
+ }
959
+ .e-de-img-prty-span {
960
+ color: $de-font-color;
961
+ left: $de-img-span-left;
962
+ position: absolute;
963
+ top: $de-img-span-top;
964
+ }
965
+ .e-btn-toggle {
966
+ background-color: $de-toggle-bg-color !important;
967
+ @if $skin-name=='highcontrast' {
968
+ color: $de-title-bar-font-clr !important;
969
+ }
970
+ @if $skin-name=='fabric' {
971
+ border-color: $de-toggle-bg-color !important;
972
+ }
973
+ outline: $de-toggle-btn-outline;
974
+ outline-offset: 0;
975
+ box-shadow: $de-toggle-btn-border !important;
976
+ #{if(&, '&', '*')}:hover {
977
+ background-color: $de-toggle-bg-color !important;
978
+ @if $skin-name=='fabric' {
979
+ border-color: $de-toggle-bg-color !important;
980
+ }
981
+ outline: $de-toggle-btn-outline;
982
+ outline-offset: 0;
983
+ box-shadow: $de-toggle-btn-border !important;
984
+ }
985
+ }
986
+ @if $skin-name=='highcontrast' {
987
+ .e-btn-toggle .e-tbar-btn-text {
988
+ color: $de-title-bar-font-clr !important;
989
+ }
990
+ .e-btn-toggle>span {
991
+ color: $de-title-bar-font-clr !important;
992
+ }
993
+ }
994
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
995
+ .e-de-ctnr-group-btn-top>button:first-child {
996
+ border-radius: 0;
997
+ border-top-left-radius: 4px;
998
+ }
999
+ .e-de-ctnr-group-btn-top.e-de-rtl>button:first-child {
1000
+ border-top-left-radius: 0;
1001
+ border-top-right-radius: 4px;
1002
+ }
1003
+ .e-de-ctnr-group-btn-top>button:last-child {
1004
+ border-radius: 0;
1005
+ border-top-right-radius: 4px;
1006
+ }
1007
+ .e-de-ctnr-group-btn-top.e-de-rtl>button:last-child {
1008
+ border-top-left-radius: 4px;
1009
+ border-top-right-radius: 0;
1010
+ }
1011
+ .e-de-ctnr-group-btn-middle>button {
1012
+ border-radius: 0;
1013
+ border-top: 0;
1014
+ border-bottom: 0;
1015
+ }
1016
+ .e-de-ctnr-group-btn-bottom>button:first-child {
1017
+ border-radius: 0;
1018
+ border-bottom-left-radius: 4px;
1019
+ }
1020
+ .e-de-ctnr-group-btn-bottom.e-de-rtl>button:first-child {
1021
+ border-bottom-left-radius: 0;
1022
+ border-bottom-right-radius: 4px;
1023
+ }
1024
+ .e-de-ctnr-group-btn-bottom>button:last-child {
1025
+ border-radius: 0;
1026
+ border-bottom-right-radius: 4px;
1027
+ }
1028
+ .e-de-ctnr-group-btn-bottom.e-de-rtl>button:last-child {
1029
+ border-bottom-right-radius: 0;
1030
+ border-bottom-left-radius: 4px;
1031
+ }
1032
+ }
1033
+ .e-de-toc-template1 {
1034
+ @if $skin-name != 'tailwind' {
1035
+ background: $de-ctnr-bg-clr;
1036
+ }
1037
+ border: 1px solid $de-panel-border;
1038
+ color: $de-panel-header-color;
1039
+ height: 129px;
1040
+ margin-left: 78px;
1041
+ width: 94px;
1042
+ }
1043
+ .e-de-toc-template1.e-de-rtl {
1044
+ margin-left: 0;
1045
+ margin-right: 78px;
1046
+ }
1047
+
1048
+ .e-de-toc-template1-content1 {
1049
+ font-size: 10px;
1050
+ height: 11px;
1051
+ margin-left: 5.4px;
1052
+ margin-top: 6.7px;
1053
+ width: $de-toc-template-content1;
1054
+ }
1055
+ .e-de-toc-template1-content2 {
1056
+ font-size: 8px;
1057
+ height: 9px;
1058
+ margin-left: 20.4px;
1059
+ margin-top: 5.7px;
1060
+ width: $de-toc-template-content2;
1061
+ }
1062
+ .e-de-toc-template1-content3 {
1063
+ font-size: 7px;
1064
+ height: 8px;
1065
+ margin-left: 28.4px;
1066
+ margin-top: 6.7px;
1067
+ width: $de-toc-template-content3;
1068
+ }
1069
+ .e-de-prop-sub-label {
1070
+ color: $de-panel-sub-label-color;
1071
+ @if $skin-name=='tailwind' {
1072
+ font-size: 12px;
1073
+ line-height: 18px;
1074
+ }
1075
+ @else {
1076
+ font-size: 13px;
1077
+ }
1078
+ margin-bottom: $de-prop-sub-label-mrgn-btm;
1079
+ font-weight: $de-header-font-weight;
1080
+ }
1081
+ .e-de-toc-checkbox1 {
1082
+ height: $de-prop-pane-margin;
1083
+ margin-top: $de-prop-pane-margin;
1084
+ }
1085
+ .e-de-toc-checkbox2 {
1086
+ height: $de-prop-pane-margin;
1087
+ margin-top: $de-prop-pane-margin;
1088
+ }
1089
+ .e-de-toc-checkbox3 {
1090
+ height: $de-prop-pane-margin;
1091
+ margin-top: $de-prop-pane-margin;
1092
+ }
1093
+ .e-de-status-bar {
1094
+ background-color: $de-ctnr-bg-clr;
1095
+ //border-bottom: 1px solid $de-panel-border;
1096
+ display: flex;
1097
+ padding-top: $e-de-status-bar-padding-top;
1098
+ width: 100%;
1099
+ }
1100
+ .e-de-ctnr-pg-no {
1101
+ color: $de-font-color;
1102
+ display: inline-flex;
1103
+ font-size: $de-ctnr-pg-no-spellout-fnt-size;
1104
+ height: 100%;
1105
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top;
1106
+
1107
+ span {
1108
+ border: 1px solid transparent;
1109
+ }
1110
+ }
1111
+ .e-de-ctnr-pg-no-spellout {
1112
+ color: $de-font-color;
1113
+ display: inline-flex;
1114
+ font-size: $de-ctnr-pg-no-spellout-fnt-size;
1115
+ height: 100%;
1116
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top;
1117
+ width: $de-page-no-width-spellout;
1118
+
1119
+ span {
1120
+ border: 1px solid transparent;
1121
+ }
1122
+ }
1123
+ .e-bigger .e-de-ctnr-pg-no-spellout {
1124
+ color: $de-font-color;
1125
+ display: inline-flex;
1126
+ font-size: $de-ctnr-pg-no-spellout-fnt-size-bg;
1127
+ height: 100%;
1128
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top-big;
1129
+ width: $de-page-no-width-spellout-big;
1130
+ }
1131
+ .e-de-statusbar-zoom-spell {
1132
+ background-color: $de-ctnr-bg-clr;
1133
+ border: 0;
1134
+ color: $de-font-color;
1135
+ float: right;
1136
+ height: 34px;
1137
+ margin-left: $de-zoom-tlbr-margin-left;
1138
+ }
1139
+ .e-bigger .e-de-statusbar-zoom-spell {
1140
+ background-color: $de-ctnr-bg-clr;
1141
+ border: 0;
1142
+ color: $de-font-color;
1143
+ float: right;
1144
+ height: 34px;
1145
+ margin-left: $de-zoom-tlbr-margin-left-big;
1146
+ }
1147
+ .e-de-btn-cancel {
1148
+ margin-left: 10px;
1149
+ }
1150
+ .e-de-btn-cancel-rtl {
1151
+ margin-left: 0;
1152
+ margin-right: 10px;
1153
+ }
1154
+ .e-de-prop-header-label {
1155
+ color: $de-panel-header-color;
1156
+ display: inline-block;
1157
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1158
+ font-size: $de-panel-header-size;
1159
+ }
1160
+ @else {
1161
+ font-size: 13px;
1162
+ }
1163
+ font-weight: bold;
1164
+ letter-spacing: 0.05px;
1165
+ opacity: 0.87;
1166
+ }
1167
+ .e-de-prop-separator-line {
1168
+ border-bottom: $de-header-line-color;
1169
+ }
1170
+ .e-de-status-bar>div label {
1171
+ font-weight: $de-status-br-lbl-fnt-weight;
1172
+ }
1173
+ .e-de-stylediv {
1174
+ padding-left: $de-prop-style-padding;
1175
+ }
1176
+ .e-de-stylediv-rtl {
1177
+ padding-left: 0;
1178
+ padding-right: $de-prop-style-padding;
1179
+ }
1180
+ // .e-de-border-style-div {
1181
+ // margin-left: 12px;
1182
+ // }
1183
+ // .e-de-border-style-div.e-de-rtl {
1184
+ // margin-left: 0;
1185
+ // margin-right: 12px;
1186
+ // }
1187
+ // .e-de-insert-del-cell {
1188
+ // margin-left: 12px;
1189
+ // }
1190
+ // .e-de-insert-del-cell.e-de-rtl {
1191
+ // margin-left: 0;
1192
+ // margin-right: 12px;
1193
+ // }
1194
+ // .e-de-cell-margin {
1195
+ // margin-left: 12px;
1196
+ // }
1197
+ // .e-de-align-text {
1198
+ // margin-left: 12px;
1199
+ // }
1200
+ // .e-de-align-text.e-de-rtl {
1201
+ // margin-left: 0;
1202
+ // margin-right: 12px;
1203
+ // }
1204
+ .e-de-border-size-button {
1205
+ height: $de-border-size-button-height;
1206
+ margin-top: $de-table-prop-border-margin;
1207
+ width: $de-border-size-button-width;
1208
+ }
1209
+ .e-de-color-picker {
1210
+ height: $de-border-size-button-height;
1211
+ width: $de-border-size-button-width;
1212
+ }
1213
+ // .e-de-cell-div {
1214
+ // margin-left: $de-prop-style-padding;
1215
+ // }
1216
+ // .e-de-cell-div.e-de-rtl {
1217
+ // margin-left: 0;
1218
+ // margin-right: $de-prop-style-padding;
1219
+ // }
1220
+ .e-de-cell-text-box {
1221
+ margin-right: $de-prop-style-padding;
1222
+ }
1223
+ .e-de-pane-rtl {
1224
+ .e-de-cell-text-box {
1225
+ margin-left: $de-prop-style-padding;
1226
+ margin-right: 0;
1227
+ }
1228
+ }
1229
+ .e-de-prop-fill-label {
1230
+ //margin-left: 10.3px;
1231
+ margin-right: 8px;
1232
+ }
1233
+ .e-de-prop-fill-label.e-de-rtl {
1234
+ margin-left: 8px;
1235
+ margin-right: 0;
1236
+ }
1237
+
1238
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1239
+ height: 38px !important;
1240
+ }
1241
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1242
+ height: 42px !important;
1243
+ }
1244
+
1245
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn>button {
1246
+ height: 38px;
1247
+ @if $skin-name =='bootstrap5' {
1248
+ width: 39px;
1249
+ }
1250
+ @else {
1251
+ width: 38px;
1252
+ }
1253
+ }
1254
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn>button {
1255
+ height: 42px;
1256
+ width: $de-border-btn-width-big;
1257
+ }
1258
+ .e-de-border-clr-picker .e-split-btn-wrapper>button:first-child {
1259
+ width: 70px;
1260
+ }
1261
+ @if $skin-name=='tailwind' {
1262
+ .e-de-prop-fill-label {
1263
+ font-size: 16px;
1264
+ line-height: 24px;
1265
+ color: $de-panel-header-color;
1266
+ }
1267
+ .e-documenteditorcontainer {
1268
+ .e-tab .e-content .e-item {
1269
+ padding: 0;
1270
+ }
1271
+ }
1272
+ }
1273
+ .e-bigger {
1274
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1275
+ .de-split-button>div:first-child {
1276
+ margin-right: 0;
1277
+ }
1278
+ }
1279
+ @else {
1280
+ .de-split-button>div:first-child {
1281
+ margin-right: $de-list-button-margin-right-bigger;
1282
+ }
1283
+ }
1284
+ .e-de-border-clr-picker .e-split-btn-wrapper>button:first-child {
1285
+ width: 66px;
1286
+ }
1287
+ .e-de-prop-fill-label {
1288
+ margin-left: 0;
1289
+ margin-right: 9.8px;
1290
+ }
1291
+ .e-de-prop-fill-label.e-de-rtl {
1292
+ margin-left: 9.8px;
1293
+ margin-right: 0px;
1294
+ }
1295
+ // .e-de-cell-text-box {
1296
+ // margin-right: 16px;
1297
+ // }
1298
+ .e-rtl {
1299
+ .e-de-cell-text-box {
1300
+ margin-left: 16px;
1301
+ margin-right: 0;
1302
+ }
1303
+ }
1304
+ .e-de-cell-div {
1305
+ //margin-left: 16px;
1306
+ @if $skin-name =='bootstrap5' {
1307
+ button {
1308
+ width: 45px !important;
1309
+ }
1310
+ }
1311
+ }
1312
+
1313
+ .e-de-color-picker {
1314
+ height: $de-border-size-button-height-bg;
1315
+ width: $de-border-size-button-width-bg;
1316
+ }
1317
+ .e-de-border-size-button {
1318
+ height: $de-border-size-button-height-bg;
1319
+ margin-top: $de-table-prop-border-margin;
1320
+ width: $de-border-size-button-width-bg;
1321
+ }
1322
+
1323
+ .e-de-stylediv {
1324
+ padding-left: 16px;
1325
+ }
1326
+ .e-de-stylediv-rtl {
1327
+ padding-right: 16px;
1328
+ }
1329
+ .e-de-tool-ctnr-properties-pane {
1330
+ display: flex;
1331
+ height: $de-tool-ctnr-editor-height-big;
1332
+ min-height: 200px;
1333
+ width: 100%;
1334
+ }
1335
+ .e-de-ctnr-properties-pane {
1336
+ display: flex;
1337
+ height: $de-ctnr-editor-height-big;
1338
+ width: 100%;
1339
+ }
1340
+ .e-de-ctn {
1341
+ background-color: $de-ctnr-bg-clr;
1342
+ border: 1px solid $de-panel-border;
1343
+ height: $de-ctnr-height;
1344
+ position: relative;
1345
+ width: 100%;
1346
+ }
1347
+ .e-de-ctnr-toolbar {
1348
+ display: flex;
1349
+ height: $de-ctnr-tlbt-height-big;
1350
+ width: 100%;
1351
+ }
1352
+ .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
1353
+ .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
1354
+ border: 0;
1355
+ }
1356
+ .e-de-pane {
1357
+ border-left: 1px solid $de-panel-border;
1358
+ }
1359
+ .e-de-pane-rtl {
1360
+ border-right: 1px solid $de-panel-border;
1361
+ }
1362
+ @if $skin-name=='material' {
1363
+ .e-de-pane>div button:not(.e-primary),
1364
+ .e-de-pane-rtl>div button:not(.e-primary) {
1365
+ background-color: $de-panel-btn-bg-clr;
1366
+ }
1367
+ }
1368
+ .e-de-ctnr-segment {
1369
+ margin-bottom: $de-ctnr-margin-bottom-big;
1370
+ }
1371
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or $skin-name=='bootstrap5' {
1372
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
1373
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
1374
+ margin-right: $de-pane-margin-right-big;
1375
+ }
1376
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
1377
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
1378
+ margin-left: $de-pane-margin-right-big;
1379
+ margin-right: 0;
1380
+ }
1381
+ }
1382
+ @if $skin-name=='bootstrap-dark' {
1383
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
1384
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
1385
+ margin-right: $de-pane-margin-right-big;
1386
+ }
1387
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
1388
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
1389
+ margin-left: $de-pane-margin-right-big;
1390
+ margin-right: 0;
1391
+ }
1392
+ }
1393
+
1394
+ .e-de-ctnr-segment>div:first-child:not(.e-rtl),
1395
+ .e-de-ctnr-segment>button:first-child:not(.e-rtl) {
1396
+ margin-right: $de-pane-margin-right-big;
1397
+ }
1398
+
1399
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>div:first-child,
1400
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>button:first-child {
1401
+ margin-left: $de-pane-margin-right-big;
1402
+ margin-right: 0;
1403
+ }
1404
+ .e-de-tlbr-wrapper {
1405
+ background-color: $de-prpty-btn-bg-clr;
1406
+ height: $de-ctnr-tlbt-height-big;
1407
+ width: $de-ctnr-tlbr-width;
1408
+ }
1409
+ .e-de-ctnr-prop-label {
1410
+ color: $de-panel-header-color;
1411
+ display: inline-block;
1412
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1413
+ font-size: 16px;
1414
+ }
1415
+ @else {
1416
+ font-size: $de-panel-header-size;
1417
+ }
1418
+ font-weight: 500;
1419
+ letter-spacing: 0.05px;
1420
+ margin-bottom: $de-ctnr-margin-bottom-big;
1421
+ opacity: 0.87;
1422
+ @if $skin-name=='tailwind' {
1423
+ line-height: 1.5;
1424
+ }
1425
+ }
1426
+ .e-de-table-prop-label {
1427
+ margin-left: 14.5px;
1428
+ }
1429
+ .e-de-table-prop-label.e-de-rtl {
1430
+ margin-left: 0;
1431
+ margin-right: 14.5px;
1432
+ }
1433
+ .e-de-toolbar.e-toolbar .e-toolbar-items {
1434
+ height: $de-ctnr-tlbt-height-big;
1435
+ .e-toolbar-item.e-de-separator {
1436
+ height: 25px;
1437
+ margin: $de-ctrnr-tblr-separator-margin-big;
1438
+ }
1439
+ .e-toolbar-item.e-de-toolbar-btn-start {
1440
+ margin-left: $de-tlbr-margin-first-big;
1441
+ margin-right: $de-tlbr-margin-right-big;
1442
+ }
1443
+ .e-toolbar-item.e-de-toolbar-btn-middle {
1444
+ margin-left: $de-tlbr-margin-right-big;
1445
+ margin-right: $de-tlbr-margin-right-big;
1446
+ }
1447
+ .e-toolbar-item.e-de-toolbar-btn-end {
1448
+ margin-left: $de-tlbr-margin-right-big;
1449
+ margin-right: $de-tlbr-margin-first-big;
1450
+ }
1451
+ .e-toolbar-item.e-de-image-focus :focus {
1452
+ background-color: $de-toggle-bg-color;
1453
+ }
1454
+ }
1455
+ @if $skin-name=='bootstrap' {
1456
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1457
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1458
+ padding: 0 1px;
1459
+ padding-bottom: 6px;
1460
+ #{if(&, '&', '*')}:focus {
1461
+ padding: 0;
1462
+ padding-bottom: 6px;
1463
+ }
1464
+ #{if(&, '&', '*')}:active {
1465
+ padding: 0;
1466
+ padding-bottom: 6px;
1467
+ }
1468
+ #{if(&, '&', '*')}:hover {
1469
+ padding: 0;
1470
+ padding-bottom: 6px;
1471
+ }
1472
+ }
1473
+ }
1474
+ @if $skin-name !='bootstrap' {
1475
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1476
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1477
+ padding: 0;
1478
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1479
+ #{if(&, '&', '*')}:focus {
1480
+ padding: 0;
1481
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1482
+ }
1483
+ #{if(&, '&', '*')}:active {
1484
+ padding: 0;
1485
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1486
+ }
1487
+ #{if(&, '&', '*')}:hover {
1488
+ padding: 0;
1489
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1490
+ }
1491
+ }
1492
+ }
1493
+ @if $skin-name=='bootstrap4' {
1494
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1495
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1496
+ padding: 0 1px;
1497
+ padding-bottom: 6px;
1498
+ #{if(&, '&', '*')}:focus {
1499
+ padding: 0;
1500
+ padding-bottom: 6px;
1501
+ }
1502
+ #{if(&, '&', '*')}:active {
1503
+ padding: 0;
1504
+ padding-bottom: 6px;
1505
+ }
1506
+ #{if(&, '&', '*')}:hover {
1507
+ padding: 0;
1508
+ padding-bottom: 6px;
1509
+ }
1510
+ }
1511
+ }
1512
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
1513
+ padding: 0 !important;
1514
+ }
1515
+ .e-de-overlay {
1516
+ height: 100%;
1517
+ opacity: 0.5;
1518
+ pointer-events: none;
1519
+ touch-action: none;
1520
+ }
1521
+ .e-de-ctnr-properties-pane-btn {
1522
+ width: 75px;
1523
+ }
1524
+ .e-de-ctnr-properties-pane-btn {
1525
+ .e-btn {
1526
+ background-color: $de-prpty-btn-bg-clr;
1527
+ border-radius: 0;
1528
+ box-shadow: none;
1529
+ min-height: 100%;
1530
+ min-width: 100%;
1531
+ #{if(&, '&', '*')}:focus {
1532
+ box-shadow: none;
1533
+ }
1534
+ #{if(&, '&', '*')}:active {
1535
+ box-shadow: none;
1536
+ }
1537
+ #{if(&, '&', '*')}:hover {
1538
+ box-shadow: none;
1539
+ }
1540
+ }
1541
+ }
1542
+ .e-de-showhide-btn {
1543
+ border: 0;
1544
+ height: $de-ctnr-tlbt-height-big;
1545
+ }
1546
+ .e-de-showhide-btn-rtl {
1547
+ border: 0;
1548
+ height: $de-ctnr-tlbt-height-big;
1549
+ }
1550
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1551
+ padding: $de-ctrnr-tblr-item-padding;
1552
+ }
1553
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1554
+ display: table;
1555
+ @if $skin-name=='material' {
1556
+ font-size: 13px;
1557
+ }
1558
+ @else if $skin-name=='tailwind' {
1559
+ font-size: 14px;
1560
+ line-height: 1.5;
1561
+ }
1562
+ @else if $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
1563
+ font-size: 16px;
1564
+ }
1565
+ @else {
1566
+ font-size: 12px;
1567
+ }
1568
+ margin: $de-ctrnr-tblr-item-margin-big;
1569
+ padding: 0;
1570
+ white-space: normal;
1571
+ }
1572
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
1573
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
1574
+ @if $skin-name=='material' {
1575
+ font-size: 16px;
1576
+ }
1577
+ padding: 0;
1578
+ }
1579
+ .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1580
+ box-shadow: none;
1581
+ height: $de-group-btn-hgt-big;
1582
+ @if $skin-name=='bootstrap5' {
1583
+ padding-left: 1px;
1584
+ }
1585
+ #{if(&, '&', '*')}:focus {
1586
+ box-shadow: none;
1587
+ }
1588
+ #{if(&, '&', '*')}:active {
1589
+ box-shadow: none;
1590
+ }
1591
+ #{if(&, '&', '*')}:hover {
1592
+ box-shadow: none;
1593
+ }
1594
+ }
1595
+ .e-de-ctnr-group-btn button {
1596
+ box-shadow: none;
1597
+ height: $de-group-btn-hgt-big;
1598
+ #{if(&, '&', '*')}:focus {
1599
+ box-shadow: none;
1600
+ }
1601
+ #{if(&, '&', '*')}:active {
1602
+ box-shadow: none;
1603
+ }
1604
+ #{if(&, '&', '*')}:hover {
1605
+ box-shadow: none;
1606
+ }
1607
+ }
1608
+ @if $skin-name !='tailwind' {
1609
+ .e-de-property-div-padding {
1610
+ border-bottom: 0.5px solid $de-pane-separator;
1611
+ @if $skin-name =='FluentUI' {
1612
+ padding: 24px;
1613
+ }
1614
+ @else {
1615
+ padding: 16px;
1616
+ }
1617
+ }
1618
+ .e-de-font-clr-picker>div button,
1619
+ .e-de-font-clr-picker>button {
1620
+ @if $skin-name=='bootstrap5' {
1621
+ width:43px;
1622
+ }
1623
+ @else {
1624
+ width: auto;
1625
+ }
1626
+ }
1627
+ }
1628
+ .e-de-ctnr-dropdown-ftr {
1629
+ border-top: 1px solid $de-pane-separator;
1630
+ color: $de-panel-header-color;
1631
+ cursor: pointer;
1632
+ display: block;
1633
+ font-size: 12px;
1634
+ line-height: 40px;
1635
+ text-indent: 1.2em;
1636
+ }
1637
+ .e-de-char-fmt-btn>button {
1638
+ width: 38.5px;
1639
+ }
1640
+ .e-de-btn-hghlclr>button:first-child {
1641
+ padding: 0 6px !important;
1642
+ }
1643
+ .e-de-ctnr-hglt-color {
1644
+ font-size: 12px;
1645
+ font-weight: 400;
1646
+ height: $de-hlt-clr-height-bigger !important;
1647
+ width: $de-hlt-clr-height-bigger !important;
1648
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='tailwind' {
1649
+ border-radius: 4px;
1650
+ }
1651
+ }
1652
+
1653
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' {
1654
+ .e-de-font-clr-picker>div div button {
1655
+ width: 38px;
1656
+ }
1657
+ }
1658
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' {
1659
+ .e-de-font-clr-picker>div div button {
1660
+ width: 38px;
1661
+ }
1662
+ }
1663
+ .e-de-ctnr-list {
1664
+ font-size: $de-bullet-icon-font-size;
1665
+ vertical-align: top;
1666
+ }
1667
+ .e-de-image-property {
1668
+ padding-left: 32px;
1669
+ }
1670
+ .e-de-img-prty-span {
1671
+ color: $de-font-color;
1672
+ left: 10px;
1673
+ position: absolute;
1674
+ top: $de-img-span-top-big;
1675
+ }
1676
+ .e-btn-toggle {
1677
+ background-color: $de-toggle-bg-color !important;
1678
+ box-shadow: $de-toggle-btn-border !important;
1679
+ @if $skin-name=='fabric' {
1680
+ border-color: $de-toggle-bg-color !important;
1681
+ }
1682
+ outline: $de-toggle-btn-outline;
1683
+ outline-offset: 0;
1684
+ #{if(&, '&', '*')}:hover {
1685
+ background-color: $de-toggle-bg-color !important;
1686
+ @if $skin-name=='fabric' {
1687
+ border-color: $de-toggle-bg-color !important;
1688
+ }
1689
+ outline: $de-toggle-btn-outline;
1690
+ outline-offset: 0;
1691
+ box-shadow: $de-toggle-btn-border !important;
1692
+ }
1693
+ }
1694
+ .e-de-toc-template1 {
1695
+ background: $de-ctnr-bg-clr;
1696
+ border: 1px solid $de-panel-border;
1697
+ color: $de-panel-header-color;
1698
+ height: 129px;
1699
+ margin-left: 78px;
1700
+ width: 94px;
1701
+ }
1702
+ .e-de-toc-template1-content1 {
1703
+ font-size: 10px;
1704
+ height: 11px;
1705
+ margin-left: 5.4px;
1706
+ margin-top: 6.7px;
1707
+ width: $de-toc-template-content1;
1708
+ }
1709
+ .e-de-toc-template1-content2 {
1710
+ font-size: 8px;
1711
+ height: 9px;
1712
+ margin-left: 20.4px;
1713
+ margin-top: 5.7px;
1714
+ width: $de-toc-template-content2;
1715
+ }
1716
+ .e-de-toc-template1-content3 {
1717
+ font-size: 7px;
1718
+ height: 8px;
1719
+ margin-left: 28.4px;
1720
+ margin-top: 6.7px;
1721
+ width: $de-toc-template-content3;
1722
+ }
1723
+ .e-de-toc-optionsdiv {
1724
+ margin-bottom: 11.5px;
1725
+ margin-left: 5.5px;
1726
+ margin-top: 15.5px;
1727
+ }
1728
+ .e-de-toc-optionsdiv.e-de-rtl {
1729
+ margin-right: 5.5px;
1730
+ margin-left: 0;
1731
+ }
1732
+ @if $skin-name !='tailwind' {
1733
+ .e-de-prop-sub-label {
1734
+ font-size: 13px;
1735
+ margin-bottom: 8.5px;
1736
+ }
1737
+ }
1738
+ .e-de-btn-cancel {
1739
+ margin-left: 10px;
1740
+ }
1741
+ .e-de-status-bar {
1742
+ background-color: $de-ctnr-bg-clr;
1743
+ //border-bottom: 1px solid $de-panel-border;
1744
+ display: flex;
1745
+ padding-top: $e-de-status-bar-big-padding-top;
1746
+ width: 100%;
1747
+ }
1748
+ .e-de-statusbar-zoom {
1749
+ background-color: $de-ctnr-bg-clr;
1750
+ border: 0;
1751
+ color: $de-font-color;
1752
+ float: right;
1753
+ height: 34px;
1754
+ }
1755
+ @if $skin-name !='tailwind' {
1756
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1757
+ line-height: 25px;
1758
+ @if $skin-name !='material' {
1759
+ padding: 0 5px !important;
1760
+ }
1761
+ }
1762
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
1763
+ @if $skin-name !='material' {
1764
+ height: 0;
1765
+ }
1766
+ @if $skin-name == 'material' {
1767
+ height: 6px;
1768
+ }
1769
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
1770
+ line-height: .5;
1771
+ }
1772
+ @else {
1773
+ line-height: 0;
1774
+ }
1775
+ }
1776
+ }
1777
+
1778
+ }
1779
+ }
1780
+
1781
+ .e-de-ctn .e-de-bzr-button {
1782
+ @if $skin-name!='tailwind' and $skin-name!='tailwind-dark' and $skin-name !='bootstrap5' {
1783
+ font-size: 12px;
1784
+ }
1785
+ @if $skin-name !='bootstrap4' and $skin-name !='bootstrap5' {
1786
+ font-weight: 400;
1787
+ }
1788
+
1789
+ background: $e-de-bzr-button-bg-color;
1790
+ @if $skin-name!='tailwind' and $skin-name!='tailwind-dark' and $skin-name !='material' and $skin-name !='material-dark' {
1791
+ height: 100%;
1792
+ }
1793
+ @if $skin-name !='fabric'and $skin-name !='material' and $skin-name !='material-dark' {
1794
+ color: $e-de-bzr-button-font-color;
1795
+ }
1796
+
1797
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' {
1798
+ border: 1px solid $e-de-bzr-button-border-color;
1799
+ }
1800
+ @if $skin-name=='highcontrast' or $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' or $skin-name=='fabric' or $skin-name=='fabric-dark' {
1801
+ box-shadow: none;
1802
+ border: none;
1803
+ }
1804
+ @if $skin-name=='highcontrast' {
1805
+ border: 2px solid $e-de-bzr-button-border-color;
1806
+ }
1807
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' {
1808
+ padding-bottom: 6px;
1809
+ }
1810
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
1811
+ border: none;
1812
+ height: calc(100% - 10px);
1813
+ line-height: 1.3 !important;
1814
+ padding: 10px 6px 10px 6px !important;
1815
+ font-size: 14px !important;
1816
+ }
1817
+ }
1818
+ @if $skin-name =='fabric' {
1819
+ .e-de-ctn .e-de-bzr-button:focus {
1820
+ outline: none;
1821
+ }
1822
+ }
1823
+ @if $skin-name !='material' and $skin-name !='material-dark' {
1824
+ .e-de-ctn .e-de-bzr-button:hover {
1825
+ background: $e-de-bzr-button-hover-bg-color;
1826
+ border: $e-de-bzr-button-hover-border;
1827
+ border-radius: $e-de-bzr-button-hover-border-radius;
1828
+ @if $skin-name !='tailwind' and $skin-name !='tailwind-dark' {
1829
+ color: $e-de-bzr-button-hover-font-color;
1830
+ }
1831
+ }
1832
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
1833
+ .e-de-ctn .e-de-bzr-button:hover .e-btn-icon {
1834
+ color: $e-de-bzr-button-hover-font-color;
1835
+ }
1836
+ }
1837
+ }
1838
+ @if $skin-name !='bootstrap' and $skin-name!='bootstrap-dark' and $skin-name!='tailwind' and $skin-name!='tailwind-dark' {
1839
+ .e-de-ctn .e-de-bzr-button:active {
1840
+ @if $skin-name !='bootstrap4' {
1841
+ box-shadow: none;
1842
+ }
1843
+ @if $skin-name=='fabric' or $skin-name=='highcontrast' {
1844
+ border-radius: 0;
1845
+ }
1846
+ @if $skin-name !='material' and $skin-name !='material-dark' {
1847
+ background-color: $e-de-bzr-button-active-bg-color;
1848
+ border-color: $e-de-bzr-button-active-border-color;
1849
+ color: $e-de-bzr-button-active-font-color;
1850
+ }
1851
+ }
1852
+ @if $skin-name=='highcontrast' {
1853
+ .e-de-ctn .e-de-bzr-button:active .e-btn-icon {
1854
+ color: $e-de-bzr-button-active-font-color;
1855
+ }
1856
+ }
1857
+ }
1858
+
1859
+
1860
+ @if $skin-name=='material' or $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='fabric' or $skin-name=='highcontrast' or $skin-name=='bootstrap5' or $skin-name=='FluentUI' {
1861
+ .e-de-ctn .e-de-bzr-button {
1862
+ @if $skin-name!='bootstrap5' and $skin-name!='FluentUI' {
1863
+ font-size: 12px;
1864
+ }
1865
+ @if $skin-name !='bootstrap4' {
1866
+ font-weight: 400;
1867
+ }@if $skin-name=='FluentUI' {
1868
+ font-size: 14px;
1869
+ border: none;
1870
+ }
1871
+ @if $skin-name !='material' {
1872
+ background: $e-de-bzr-button-bg-color;
1873
+ height: 100%;
1874
+ @if $skin-name !='fabric' {
1875
+ color: $e-de-bzr-button-font-color;
1876
+ }
1877
+ }
1878
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap' {
1879
+ border: 1px solid $e-de-bzr-button-border-color;
1880
+ }
1881
+ @if $skin-name=='bootstrap5' {
1882
+ border: none;
1883
+ line-height: 16px !important;
1884
+ }
1885
+ @if $skin-name=='highcontrast' or $skin-name=='bootstrap' or $skin-name=='bootstrap5' {
1886
+ box-shadow: none;
1887
+ }
1888
+ @if $skin-name=='highcontrast' {
1889
+ border: 2px solid $e-de-bzr-button-border-color;
1890
+ }
1891
+ @if $skin-name=='bootstrap' {
1892
+ padding-bottom: 6px;
1893
+ }
1894
+ }
1895
+ @if $skin-name=='fabric' {
1896
+ .e-de-ctn .e-de-bzr-button:focus {
1897
+ outline: none;
1898
+ }
1899
+ }
1900
+ @if $skin-name !='material' {
1901
+ .e-de-ctn .e-de-bzr-button:hover {
1902
+ background: $e-de-bzr-button-hover-bg-color;
1903
+ border: $e-de-bzr-button-hover-border;
1904
+ border-radius: $e-de-bzr-button-hover-border-radius;
1905
+ color: $e-de-bzr-button-hover-font-color;
1906
+ }
1907
+ @if $skin-name=='bootstrap4' {
1908
+ .e-de-ctn .e-de-bzr-button:hover .e-btn-icon {
1909
+ color: $e-de-bzr-button-hover-font-color;
1910
+ }
1911
+ }
1912
+ }
1913
+ @if $skin-name !='bootstrap' {
1914
+ .e-de-ctn .e-de-bzr-button:active {
1915
+ @if $skin-name !='bootstrap4' {
1916
+ box-shadow: none;
1917
+ }
1918
+ @if $skin-name=='fabric' or $skin-name=='highcontrast' {
1919
+ border-radius: 0;
1920
+ }
1921
+ @if $skin-name !='material' {
1922
+ background-color: $e-de-bzr-button-active-bg-color;
1923
+ border-color: $e-de-bzr-button-active-border-color;
1924
+ color: $e-de-bzr-button-active-font-color;
1925
+ }
1926
+ }
1927
+ @if $skin-name=='highcontrast' {
1928
+ .e-de-ctn .e-de-bzr-button:active .e-btn-icon {
1929
+ color: $e-de-bzr-button-active-font-color;
1930
+ }
1931
+ }
1932
+ }
1933
+ }
1934
+
1935
+ .e-de-ctn {
1936
+ .e-de-ctnr-toolbar {
1937
+ .e-de-bzr-button {
1938
+ @if $skin-name == 'FluentUI' {
1939
+ font-size: 14px;
1940
+ }
1941
+ .e-btn-icon {
1942
+ font-size: $e-de-bzr-btn-font-size;
1943
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
1944
+ padding-bottom: 4px !important;
1945
+ }
1946
+ @if $skin-name == 'FluentUI' {
1947
+ padding-bottom: 2px;
1948
+ }
1949
+ }
1950
+ }
1951
+
1952
+ .e-de-bzr-break.e-de-bzr-button {
1953
+ @if $skin-name=='bootstrap4' {
1954
+ line-height: 23px !important;
1955
+ }
1956
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
1957
+ padding-top: 9px !important;
1958
+ padding-bottom: 23px !important;
1959
+ }
1960
+ @if $skin-name=='material' or $skin-name=='material-dark' {
1961
+ height: calc(100% - 10px);
1962
+ line-height: 23px;
1963
+ }
1964
+ @if $skin-name =='bootstrap5' {
1965
+ .e-btn-icon {
1966
+ margin-top: -11px;
1967
+ }
1968
+ }
1969
+ @if $skin-name == 'FluentUI' {
1970
+ padding-top: 0 !important;
1971
+ }
1972
+ }
1973
+ }
1974
+ }
1975
+
1976
+ .e-bigger {
1977
+ .e-de-ctn {
1978
+ .e-de-ctnr-toolbar {
1979
+ .e-de-bzr-button {
1980
+ @if $skin-name == 'FluentUI' {
1981
+ font-size: 16px;
1982
+ }
1983
+ .e-btn-icon {
1984
+ font-size: $e-de-bzr-btn-font-size-big;
1985
+ @if $skin-name =='bootstrap5' or $skin-name == 'FluentUI'{
1986
+ padding-bottom: 4px;
1987
+ }
1988
+ }
1989
+ }
1990
+
1991
+ .e-de-bzr-break.e-de-bzr-button {
1992
+ @if $skin-name == 'material' or $skin-name == 'material-dark' {
1993
+ padding-top: 11px !important;
1994
+ }
1995
+ @if $skin-name == 'FluentUI' {
1996
+ padding-top: 4px !important;
1997
+ }
1998
+ }
1999
+ }
2000
+ }
2001
+ }