@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,2004 @@
1
+ @include export-module('document-editor-container-theme') {
2
+ // sass-lint:disable-all
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
+ // sass-lint:disable-all
704
+ .e-btn-toggle .e-tbar-btn-text {
705
+ color: $de-toggle-btn-color !important;
706
+ }
707
+ .e-de-prop-font-colorpicker .e-split-btn-wrapper .e-btn {
708
+ border-color: $de-clr-picker-border-clr;
709
+ }
710
+ }
711
+ @if $skin-name=='tailwind' {
712
+ .e-de-prop-sub-label {
713
+ font-size: 14px;
714
+ }
715
+ .e-de-hdr-ftr-top-div,
716
+ .e-de-hdr-ftr-frst-div {
717
+ margin-bottom: 16px;
718
+ }
719
+ }
720
+ }
721
+ .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
722
+ box-shadow: none;
723
+ height: $de-group-btn-hgt;
724
+ #{if(&, '&', '*')}:focus {
725
+ box-shadow: none;
726
+ }
727
+ #{if(&, '&', '*')}:active {
728
+ box-shadow: none;
729
+ }
730
+ #{if(&, '&', '*')}:hover {
731
+ box-shadow: none;
732
+ }
733
+ }
734
+ .e-de-ctnr-group-btn button {
735
+ box-shadow: none;
736
+ height: $de-group-btn-hgt;
737
+ #{if(&, '&', '*')}:focus {
738
+ box-shadow: none;
739
+ }
740
+ #{if(&, '&', '*')}:active {
741
+ box-shadow: none;
742
+ }
743
+ #{if(&, '&', '*')}:hover {
744
+ box-shadow: none;
745
+ }
746
+ }
747
+ .e-de-property-div-padding {
748
+ border-bottom: 0.5px solid $de-pane-separator;
749
+ //padding-bottom: $de-prop-div-padding-bottom;
750
+ padding: $de-prop-div-padding-top;
751
+ }
752
+ .e-de-ctnr-dropdown-ftr {
753
+ border-top: 1px solid $de-pane-separator;
754
+ color: $de-panel-header-color;
755
+ cursor: pointer;
756
+ display: block;
757
+ font-size: 12px;
758
+ line-height: 40px;
759
+ text-indent: 1.2em;
760
+ }
761
+ .e-de-char-fmt-btn-left>button,
762
+ .e-de-insert-del-cell button {
763
+ width: $de-left-btn-width;
764
+ }
765
+ .e-de-char-fmt-btn-right>button {
766
+ width: $de-right-btn-width;
767
+ }
768
+ .e-de-panel-left-width {
769
+ width: $de-left-panel-width;
770
+ }
771
+ .e-bigger {
772
+ .e-de-panel-left-width {
773
+ width: $de-left-panel-width-big;
774
+ }
775
+ .e-de-char-fmt-btn-left>button,
776
+ .e-de-insert-del-cell button {
777
+ width: $de-left-btn-width-big;
778
+ }
779
+ }
780
+ .e-de-panel-right-width {
781
+ width: $de-right-panel-width;
782
+ }
783
+ @if $skin-name=='bootstrap5' or $skin-name=='FluentUI' or $skin-name=='tailwind' {
784
+ .e-bigger {
785
+ .e-de-panel-right-width {
786
+ width: $de-right-font-size-width-big;
787
+ }
788
+ .e-de-char-fmt-btn-left > button,
789
+ .e-de-char-fmt-btn-right>button {
790
+ width: $de-right-btn-width-big;
791
+ }
792
+ }
793
+ }
794
+ .e-de-cntr-highlight-pane {
795
+ border: 1px solid $de-panel-border;
796
+ }
797
+
798
+ .e-de-btn-hghlclr>button:first-child {
799
+ padding: 1px !important;
800
+ }
801
+ .e-de-ctnr-hglt-color {
802
+ font-size: 12px;
803
+ font-weight: 400;
804
+ height: $de-hlt-clr-height !important;
805
+ width: $de-hlt-clr-height !important;
806
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='tailwind' {
807
+ border-radius: 4px;
808
+ }
809
+ }
810
+
811
+ .e-de-font-clr-picker>div div button,
812
+ .e-de-font-clr-picker>div button,
813
+ .e-de-font-clr-picker>button {
814
+ width: $de-clr-pckr-width;
815
+ }
816
+
817
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md {
818
+ height: 55px;
819
+ padding: 4px !important;
820
+ width: 60px;
821
+ }
822
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md:hover {
823
+ border: 3px solid $de-list-hover-bg;
824
+ padding: 2px !important;
825
+ }
826
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md {
827
+ height: 38px;
828
+ padding: 4px !important;
829
+ width: 38px;
830
+ }
831
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md:hover {
832
+ border: 3px solid $de-list-hover-bg;
833
+ padding: 2px !important;
834
+ }
835
+ .e-de-list-header-presetmenu {
836
+ cursor: pointer;
837
+ font-size: 11px;
838
+ line-height: 14px;
839
+ overflow: hidden;
840
+ text-align: left;
841
+ min-width: 50px;
842
+ white-space: nowrap;
843
+ width: 100%;
844
+ @if $skin-name=='tailwind' {
845
+ color: $icon-color;
846
+ }
847
+ }
848
+ .e-de-bullet-list-header-presetmenu {
849
+ cursor: pointer;
850
+ font-size: 14px;
851
+ left: -11px;
852
+ line-height: $de-bullet-icon-line-height;
853
+ min-width: 50px;
854
+ overflow: hidden;
855
+ position: relative;
856
+ white-space: nowrap;
857
+ width: 100%;
858
+ }
859
+ .e-rtl {
860
+ .e-de-bullet-list-header-presetmenu {
861
+ cursor: pointer;
862
+ font-size: 14px;
863
+ left: 10px;
864
+ line-height: $de-bullet-icon-line-height;
865
+ min-width: 50px;
866
+ overflow: hidden;
867
+ position: relative;
868
+ white-space: nowrap;
869
+ width: 100%;
870
+ }
871
+ }
872
+ .e-de-bullet {
873
+ font-size: 42px;
874
+ }
875
+ .e-de-list-header-presetmenu .e-de-list-line {
876
+ border-bottom: 1px solid $de-prop-btn-icon-clr;
877
+ margin-left: 5px;
878
+ width: 100%;
879
+ }
880
+ .e-de-toc-optionsdiv {
881
+ margin-bottom: 11.5px;
882
+ margin-left: 5.5px;
883
+ margin-top: 15.5px;
884
+ }
885
+ .e-de-toc-optionsdiv.e-de-rtl {
886
+ margin-right: 5.5px;
887
+ margin-left: 0;
888
+ }
889
+ .e-de-list-header-presetmenu div span {
890
+ //color: #aaa;
891
+ display: inline-block;
892
+ vertical-align: middle;
893
+ }
894
+ .e-de-floating-menu .e-de-floating-menuitem,
895
+ .e-de-floating-menu .e-de-menuitem-none {
896
+ cursor: pointer;
897
+ height: 70px;
898
+ padding: 0 !important;
899
+ margin: 0 5px 5px 0 !important;
900
+ width: 70px;
901
+ }
902
+ .e-de-list-thumbnail .e-de-list-items {
903
+ float: left;
904
+ }
905
+ .e-de-list-thumbnail .e-de-list-items {
906
+ border: 1px solid $de-list-thmbnail-border-clr;
907
+ clear: initial;
908
+ display: inline-block;
909
+ height: auto;
910
+ margin: 5px;
911
+ padding: 2px;
912
+ text-align: center;
913
+ width: auto;
914
+ }
915
+ .e-de-list-items {
916
+ cursor: pointer;
917
+ background: $de-ctnr-bg-clr;
918
+ box-sizing: border-box;
919
+ list-style: none;
920
+ padding: 7px 10px 7px 10px;
921
+ position: relative;
922
+ }
923
+ .e-de-list-item-size {
924
+ font-size: 14px;
925
+ }
926
+ .e-de-floating-menuitem.e-de-floating-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected,
927
+ .e-de-floating-menuitem.e-de-floating-bullet-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected {
928
+ border: 3px solid $de-title-bar-bg-clr;
929
+ padding: 2px !important;
930
+ }
931
+ .e-de-floating-menu {
932
+ padding: 10px 4px 5px 10px !important;
933
+ }
934
+ @if $skin-name !='tailwind' {
935
+ .e-de-list-container {
936
+ background: $de-ctnr-bg-clr;
937
+ border: 1px solid #ccc;
938
+ border-radius: 2px;
939
+ box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
940
+ box-sizing: border-box;
941
+ display: inline-block;
942
+ line-height: normal;
943
+ margin: 0;
944
+ outline: 0;
945
+ padding: 5px 0;
946
+ position: absolute;
947
+ width: auto;
948
+ z-index: 10020;
949
+ }
950
+ }
951
+ .e-de-ctnr-list {
952
+ font-size: $de-bullet-icon-font-size;
953
+ @if ( $skin-name !='bootstrap4' and $skin-name !='tailwind') {
954
+ vertical-align: top;
955
+ }
956
+ }
957
+ .e-de-image-property {
958
+ padding-left: 32px;
959
+ }
960
+ .e-de-img-prty-span {
961
+ color: $de-font-color;
962
+ left: $de-img-span-left;
963
+ position: absolute;
964
+ top: $de-img-span-top;
965
+ }
966
+ .e-btn-toggle {
967
+ background-color: $de-toggle-bg-color !important;
968
+ @if $skin-name=='highcontrast' {
969
+ color: $de-title-bar-font-clr !important;
970
+ }
971
+ @if $skin-name=='fabric' {
972
+ border-color: $de-toggle-bg-color !important;
973
+ }
974
+ outline: $de-toggle-btn-outline;
975
+ outline-offset: 0;
976
+ box-shadow: $de-toggle-btn-border !important;
977
+ #{if(&, '&', '*')}:hover {
978
+ background-color: $de-toggle-bg-color !important;
979
+ @if $skin-name=='fabric' {
980
+ border-color: $de-toggle-bg-color !important;
981
+ }
982
+ outline: $de-toggle-btn-outline;
983
+ outline-offset: 0;
984
+ box-shadow: $de-toggle-btn-border !important;
985
+ }
986
+ }
987
+ @if $skin-name=='highcontrast' {
988
+ .e-btn-toggle .e-tbar-btn-text {
989
+ color: $de-title-bar-font-clr !important;
990
+ }
991
+ .e-btn-toggle>span {
992
+ color: $de-title-bar-font-clr !important;
993
+ }
994
+ }
995
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or or $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
996
+ .e-de-ctnr-group-btn-top>button:first-child {
997
+ border-radius: 0;
998
+ border-top-left-radius: 4px;
999
+ }
1000
+ .e-de-ctnr-group-btn-top.e-de-rtl>button:first-child {
1001
+ border-top-left-radius: 0;
1002
+ border-top-right-radius: 4px;
1003
+ }
1004
+ .e-de-ctnr-group-btn-top>button:last-child {
1005
+ border-radius: 0;
1006
+ border-top-right-radius: 4px;
1007
+ }
1008
+ .e-de-ctnr-group-btn-top.e-de-rtl>button:last-child {
1009
+ border-top-left-radius: 4px;
1010
+ border-top-right-radius: 0;
1011
+ }
1012
+ .e-de-ctnr-group-btn-middle>button {
1013
+ border-radius: 0;
1014
+ border-top: 0;
1015
+ border-bottom: 0;
1016
+ }
1017
+ .e-de-ctnr-group-btn-bottom>button:first-child {
1018
+ border-radius: 0;
1019
+ border-bottom-left-radius: 4px;
1020
+ }
1021
+ .e-de-ctnr-group-btn-bottom.e-de-rtl>button:first-child {
1022
+ border-bottom-left-radius: 0;
1023
+ border-bottom-right-radius: 4px;
1024
+ }
1025
+ .e-de-ctnr-group-btn-bottom>button:last-child {
1026
+ border-radius: 0;
1027
+ border-bottom-right-radius: 4px;
1028
+ }
1029
+ .e-de-ctnr-group-btn-bottom.e-de-rtl>button:last-child {
1030
+ border-bottom-right-radius: 0;
1031
+ border-bottom-left-radius: 4px;
1032
+ }
1033
+ }
1034
+ .e-de-toc-template1 {
1035
+ @if $skin-name != 'tailwind' {
1036
+ background: $de-ctnr-bg-clr;
1037
+ }
1038
+ border: 1px solid $de-panel-border;
1039
+ color: $de-panel-header-color;
1040
+ height: 129px;
1041
+ margin-left: 78px;
1042
+ width: 94px;
1043
+ }
1044
+ .e-de-toc-template1.e-de-rtl {
1045
+ margin-left: 0;
1046
+ margin-right: 78px;
1047
+ }
1048
+
1049
+ .e-de-toc-template1-content1 {
1050
+ font-size: 10px;
1051
+ height: 11px;
1052
+ margin-left: 5.4px;
1053
+ margin-top: 6.7px;
1054
+ width: $de-toc-template-content1;
1055
+ }
1056
+ .e-de-toc-template1-content2 {
1057
+ font-size: 8px;
1058
+ height: 9px;
1059
+ margin-left: 20.4px;
1060
+ margin-top: 5.7px;
1061
+ width: $de-toc-template-content2;
1062
+ }
1063
+ .e-de-toc-template1-content3 {
1064
+ font-size: 7px;
1065
+ height: 8px;
1066
+ margin-left: 28.4px;
1067
+ margin-top: 6.7px;
1068
+ width: $de-toc-template-content3;
1069
+ }
1070
+ .e-de-prop-sub-label {
1071
+ color: $de-panel-sub-label-color;
1072
+ @if $skin-name=='tailwind' {
1073
+ font-size: 12px;
1074
+ line-height: 18px;
1075
+ }
1076
+ @else {
1077
+ font-size: 13px;
1078
+ }
1079
+ margin-bottom: $de-prop-sub-label-mrgn-btm;
1080
+ font-weight: $de-header-font-weight;
1081
+ }
1082
+ .e-de-toc-checkbox1 {
1083
+ height: $de-prop-pane-margin;
1084
+ margin-top: $de-prop-pane-margin;
1085
+ }
1086
+ .e-de-toc-checkbox2 {
1087
+ height: $de-prop-pane-margin;
1088
+ margin-top: $de-prop-pane-margin;
1089
+ }
1090
+ .e-de-toc-checkbox3 {
1091
+ height: $de-prop-pane-margin;
1092
+ margin-top: $de-prop-pane-margin;
1093
+ }
1094
+ .e-de-status-bar {
1095
+ background-color: $de-ctnr-bg-clr;
1096
+ //border-bottom: 1px solid $de-panel-border;
1097
+ display: flex;
1098
+ padding-top: $e-de-status-bar-padding-top;
1099
+ width: 100%;
1100
+ }
1101
+ .e-de-ctnr-pg-no {
1102
+ color: $de-font-color;
1103
+ display: inline-flex;
1104
+ font-size: $de-ctnr-pg-no-spellout-fnt-size;
1105
+ height: 100%;
1106
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top;
1107
+
1108
+ span {
1109
+ border: 1px solid transparent;
1110
+ }
1111
+ }
1112
+ .e-de-ctnr-pg-no-spellout {
1113
+ color: $de-font-color;
1114
+ display: inline-flex;
1115
+ font-size: $de-ctnr-pg-no-spellout-fnt-size;
1116
+ height: 100%;
1117
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top;
1118
+ width: $de-page-no-width-spellout;
1119
+
1120
+ span {
1121
+ border: 1px solid transparent;
1122
+ }
1123
+ }
1124
+ .e-bigger .e-de-ctnr-pg-no-spellout {
1125
+ color: $de-font-color;
1126
+ display: inline-flex;
1127
+ font-size: $de-ctnr-pg-no-spellout-fnt-size-bg;
1128
+ height: 100%;
1129
+ padding-top: $e-de-ctnr-pg-no-spellout-padd-top-big;
1130
+ width: $de-page-no-width-spellout-big;
1131
+ }
1132
+ .e-de-statusbar-zoom-spell {
1133
+ background-color: $de-ctnr-bg-clr;
1134
+ border: 0;
1135
+ color: $de-font-color;
1136
+ float: right;
1137
+ height: 34px;
1138
+ margin-left: $de-zoom-tlbr-margin-left;
1139
+ }
1140
+ .e-bigger .e-de-statusbar-zoom-spell {
1141
+ background-color: $de-ctnr-bg-clr;
1142
+ border: 0;
1143
+ color: $de-font-color;
1144
+ float: right;
1145
+ height: 34px;
1146
+ margin-left: $de-zoom-tlbr-margin-left-big;
1147
+ }
1148
+ .e-de-btn-cancel {
1149
+ margin-left: 10px;
1150
+ }
1151
+ .e-de-btn-cancel-rtl {
1152
+ margin-left: 0;
1153
+ margin-right: 10px;
1154
+ }
1155
+ .e-de-prop-header-label {
1156
+ color: $de-panel-header-color;
1157
+ display: inline-block;
1158
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1159
+ font-size: $de-panel-header-size;
1160
+ }
1161
+ @else {
1162
+ font-size: 13px;
1163
+ }
1164
+ font-weight: bold;
1165
+ letter-spacing: 0.05px;
1166
+ opacity: 0.87;
1167
+ }
1168
+ .e-de-prop-separator-line {
1169
+ border-bottom: $de-header-line-color;
1170
+ }
1171
+ .e-de-status-bar>div label {
1172
+ font-weight: $de-status-br-lbl-fnt-weight;
1173
+ }
1174
+ .e-de-stylediv {
1175
+ padding-left: $de-prop-style-padding;
1176
+ }
1177
+ .e-de-stylediv-rtl {
1178
+ padding-left: 0;
1179
+ padding-right: $de-prop-style-padding;
1180
+ }
1181
+ // .e-de-border-style-div {
1182
+ // margin-left: 12px;
1183
+ // }
1184
+ // .e-de-border-style-div.e-de-rtl {
1185
+ // margin-left: 0;
1186
+ // margin-right: 12px;
1187
+ // }
1188
+ // .e-de-insert-del-cell {
1189
+ // margin-left: 12px;
1190
+ // }
1191
+ // .e-de-insert-del-cell.e-de-rtl {
1192
+ // margin-left: 0;
1193
+ // margin-right: 12px;
1194
+ // }
1195
+ // .e-de-cell-margin {
1196
+ // margin-left: 12px;
1197
+ // }
1198
+ // .e-de-align-text {
1199
+ // margin-left: 12px;
1200
+ // }
1201
+ // .e-de-align-text.e-de-rtl {
1202
+ // margin-left: 0;
1203
+ // margin-right: 12px;
1204
+ // }
1205
+ .e-de-border-size-button {
1206
+ height: $de-border-size-button-height;
1207
+ margin-top: $de-table-prop-border-margin;
1208
+ width: $de-border-size-button-width;
1209
+ }
1210
+ .e-de-color-picker {
1211
+ height: $de-border-size-button-height;
1212
+ width: $de-border-size-button-width;
1213
+ }
1214
+ // .e-de-cell-div {
1215
+ // margin-left: $de-prop-style-padding;
1216
+ // }
1217
+ // .e-de-cell-div.e-de-rtl {
1218
+ // margin-left: 0;
1219
+ // margin-right: $de-prop-style-padding;
1220
+ // }
1221
+ .e-de-cell-text-box {
1222
+ margin-right: $de-prop-style-padding;
1223
+ }
1224
+ .e-de-pane-rtl {
1225
+ .e-de-cell-text-box {
1226
+ margin-left: $de-prop-style-padding;
1227
+ margin-right: 0;
1228
+ }
1229
+ }
1230
+ .e-de-prop-fill-label {
1231
+ //margin-left: 10.3px;
1232
+ margin-right: 8px;
1233
+ }
1234
+ .e-de-prop-fill-label.e-de-rtl {
1235
+ margin-left: 8px;
1236
+ margin-right: 0;
1237
+ }
1238
+
1239
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1240
+ height: 38px !important;
1241
+ }
1242
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1243
+ height: 42px !important;
1244
+ }
1245
+
1246
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn>button {
1247
+ height: 38px;
1248
+ @if $skin-name =='bootstrap5' {
1249
+ width: 39px;
1250
+ }
1251
+ @else {
1252
+ width: 38px;
1253
+ }
1254
+ }
1255
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn>button {
1256
+ height: 42px;
1257
+ width: $de-border-btn-width-big;
1258
+ }
1259
+ .e-de-border-clr-picker .e-split-btn-wrapper>button:first-child {
1260
+ width: 70px;
1261
+ }
1262
+ @if $skin-name=='tailwind' {
1263
+ .e-de-prop-fill-label {
1264
+ font-size: 16px;
1265
+ line-height: 24px;
1266
+ color: $de-panel-header-color;
1267
+ }
1268
+ .e-documenteditorcontainer {
1269
+ .e-tab .e-content .e-item {
1270
+ padding: 0;
1271
+ }
1272
+ }
1273
+ }
1274
+ .e-bigger {
1275
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1276
+ .de-split-button>div:first-child {
1277
+ margin-right: 0;
1278
+ }
1279
+ }
1280
+ @else {
1281
+ .de-split-button>div:first-child {
1282
+ margin-right: $de-list-button-margin-right-bigger;
1283
+ }
1284
+ }
1285
+ .e-de-border-clr-picker .e-split-btn-wrapper>button:first-child {
1286
+ width: 66px;
1287
+ }
1288
+ .e-de-prop-fill-label {
1289
+ margin-left: 0;
1290
+ margin-right: 9.8px;
1291
+ }
1292
+ .e-de-prop-fill-label.e-de-rtl {
1293
+ margin-left: 9.8px;
1294
+ margin-right: 0px;
1295
+ }
1296
+ // .e-de-cell-text-box {
1297
+ // margin-right: 16px;
1298
+ // }
1299
+ .e-rtl {
1300
+ .e-de-cell-text-box {
1301
+ margin-left: 16px;
1302
+ margin-right: 0;
1303
+ }
1304
+ }
1305
+ .e-de-cell-div {
1306
+ //margin-left: 16px;
1307
+ @if $skin-name =='bootstrap5' {
1308
+ button {
1309
+ width: 45px !important;
1310
+ }
1311
+ }
1312
+ }
1313
+
1314
+ .e-de-color-picker {
1315
+ height: $de-border-size-button-height-bg;
1316
+ width: $de-border-size-button-width-bg;
1317
+ }
1318
+ .e-de-border-size-button {
1319
+ height: $de-border-size-button-height-bg;
1320
+ margin-top: $de-table-prop-border-margin;
1321
+ width: $de-border-size-button-width-bg;
1322
+ }
1323
+
1324
+ .e-de-stylediv {
1325
+ padding-left: 16px;
1326
+ }
1327
+ .e-de-stylediv-rtl {
1328
+ padding-right: 16px;
1329
+ }
1330
+ .e-de-tool-ctnr-properties-pane {
1331
+ display: flex;
1332
+ height: $de-tool-ctnr-editor-height-big;
1333
+ min-height: 200px;
1334
+ width: 100%;
1335
+ }
1336
+ .e-de-ctnr-properties-pane {
1337
+ display: flex;
1338
+ height: $de-ctnr-editor-height-big;
1339
+ width: 100%;
1340
+ }
1341
+ .e-de-ctn {
1342
+ background-color: $de-ctnr-bg-clr;
1343
+ border: 1px solid $de-panel-border;
1344
+ height: $de-ctnr-height;
1345
+ position: relative;
1346
+ width: 100%;
1347
+ }
1348
+ .e-de-ctnr-toolbar {
1349
+ display: flex;
1350
+ height: $de-ctnr-tlbt-height-big;
1351
+ width: 100%;
1352
+ }
1353
+ .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
1354
+ .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
1355
+ border: 0;
1356
+ }
1357
+ .e-de-pane {
1358
+ border-left: 1px solid $de-panel-border;
1359
+ }
1360
+ .e-de-pane-rtl {
1361
+ border-right: 1px solid $de-panel-border;
1362
+ }
1363
+ @if $skin-name=='material' {
1364
+ .e-de-pane>div button:not(.e-primary),
1365
+ .e-de-pane-rtl>div button:not(.e-primary) {
1366
+ background-color: $de-panel-btn-bg-clr;
1367
+ }
1368
+ }
1369
+ .e-de-ctnr-segment {
1370
+ margin-bottom: $de-ctnr-margin-bottom-big;
1371
+ }
1372
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' or $skin-name=='bootstrap5' {
1373
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
1374
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
1375
+ margin-right: $de-pane-margin-right-big;
1376
+ }
1377
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
1378
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
1379
+ margin-left: $de-pane-margin-right-big;
1380
+ margin-right: 0;
1381
+ }
1382
+ }
1383
+ @if $skin-name=='bootstrap-dark' {
1384
+ .e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
1385
+ .e-de-font-clr-picker>.e-split-btn-wrapper {
1386
+ margin-right: $de-pane-margin-right-big;
1387
+ }
1388
+ .e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
1389
+ .e-de-font-clr-picker.e-rtl>.e-split-btn-wrapper {
1390
+ margin-left: $de-pane-margin-right-big;
1391
+ margin-right: 0;
1392
+ }
1393
+ }
1394
+
1395
+ .e-de-ctnr-segment>div:first-child:not(.e-rtl),
1396
+ .e-de-ctnr-segment>button:first-child:not(.e-rtl) {
1397
+ margin-right: $de-pane-margin-right-big;
1398
+ }
1399
+
1400
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>div:first-child,
1401
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl>button:first-child {
1402
+ margin-left: $de-pane-margin-right-big;
1403
+ margin-right: 0;
1404
+ }
1405
+ .e-de-tlbr-wrapper {
1406
+ background-color: $de-prpty-btn-bg-clr;
1407
+ height: $de-ctnr-tlbt-height-big;
1408
+ width: $de-ctnr-tlbr-width;
1409
+ }
1410
+ .e-de-ctnr-prop-label {
1411
+ color: $de-panel-header-color;
1412
+ display: inline-block;
1413
+ @if $skin-name =='tailwind' or $skin-name =='bootstrap5' or $skin-name =='FluentUI' {
1414
+ font-size: 16px;
1415
+ }
1416
+ @else {
1417
+ font-size: $de-panel-header-size;
1418
+ }
1419
+ font-weight: 500;
1420
+ letter-spacing: 0.05px;
1421
+ margin-bottom: $de-ctnr-margin-bottom-big;
1422
+ opacity: 0.87;
1423
+ @if $skin-name=='tailwind' {
1424
+ line-height: 1.5;
1425
+ }
1426
+ }
1427
+ .e-de-table-prop-label {
1428
+ margin-left: 14.5px;
1429
+ }
1430
+ .e-de-table-prop-label.e-de-rtl {
1431
+ margin-left: 0;
1432
+ margin-right: 14.5px;
1433
+ }
1434
+ .e-de-toolbar.e-toolbar .e-toolbar-items {
1435
+ height: $de-ctnr-tlbt-height-big;
1436
+ .e-toolbar-item.e-de-separator {
1437
+ height: 25px;
1438
+ margin: $de-ctrnr-tblr-separator-margin-big;
1439
+ }
1440
+ .e-toolbar-item.e-de-toolbar-btn-start {
1441
+ margin-left: $de-tlbr-margin-first-big;
1442
+ margin-right: $de-tlbr-margin-right-big;
1443
+ }
1444
+ .e-toolbar-item.e-de-toolbar-btn-middle {
1445
+ margin-left: $de-tlbr-margin-right-big;
1446
+ margin-right: $de-tlbr-margin-right-big;
1447
+ }
1448
+ .e-toolbar-item.e-de-toolbar-btn-end {
1449
+ margin-left: $de-tlbr-margin-right-big;
1450
+ margin-right: $de-tlbr-margin-first-big;
1451
+ }
1452
+ .e-toolbar-item.e-de-image-focus :focus {
1453
+ background-color: $de-toggle-bg-color;
1454
+ }
1455
+ }
1456
+ @if $skin-name=='bootstrap' {
1457
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1458
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1459
+ padding: 0 1px;
1460
+ padding-bottom: 6px;
1461
+ #{if(&, '&', '*')}:focus {
1462
+ padding: 0;
1463
+ padding-bottom: 6px;
1464
+ }
1465
+ #{if(&, '&', '*')}:active {
1466
+ padding: 0;
1467
+ padding-bottom: 6px;
1468
+ }
1469
+ #{if(&, '&', '*')}:hover {
1470
+ padding: 0;
1471
+ padding-bottom: 6px;
1472
+ }
1473
+ }
1474
+ }
1475
+ @if $skin-name !='bootstrap' {
1476
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1477
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1478
+ padding: 0;
1479
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1480
+ #{if(&, '&', '*')}:focus {
1481
+ padding: 0;
1482
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1483
+ }
1484
+ #{if(&, '&', '*')}:active {
1485
+ padding: 0;
1486
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1487
+ }
1488
+ #{if(&, '&', '*')}:hover {
1489
+ padding: 0;
1490
+ padding-bottom: $de-toolbar-padding-bottom-bg;
1491
+ }
1492
+ }
1493
+ }
1494
+ @if $skin-name=='bootstrap4' {
1495
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1496
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1497
+ padding: 0 1px;
1498
+ padding-bottom: 6px;
1499
+ #{if(&, '&', '*')}:focus {
1500
+ padding: 0;
1501
+ padding-bottom: 6px;
1502
+ }
1503
+ #{if(&, '&', '*')}:active {
1504
+ padding: 0;
1505
+ padding-bottom: 6px;
1506
+ }
1507
+ #{if(&, '&', '*')}:hover {
1508
+ padding: 0;
1509
+ padding-bottom: 6px;
1510
+ }
1511
+ }
1512
+ }
1513
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
1514
+ padding: 0 !important;
1515
+ }
1516
+ .e-de-overlay {
1517
+ height: 100%;
1518
+ opacity: 0.5;
1519
+ pointer-events: none;
1520
+ touch-action: none;
1521
+ }
1522
+ .e-de-ctnr-properties-pane-btn {
1523
+ width: 75px;
1524
+ }
1525
+ .e-de-ctnr-properties-pane-btn {
1526
+ .e-btn {
1527
+ background-color: $de-prpty-btn-bg-clr;
1528
+ border-radius: 0;
1529
+ box-shadow: none;
1530
+ min-height: 100%;
1531
+ min-width: 100%;
1532
+ #{if(&, '&', '*')}:focus {
1533
+ box-shadow: none;
1534
+ }
1535
+ #{if(&, '&', '*')}:active {
1536
+ box-shadow: none;
1537
+ }
1538
+ #{if(&, '&', '*')}:hover {
1539
+ box-shadow: none;
1540
+ }
1541
+ }
1542
+ }
1543
+ .e-de-showhide-btn {
1544
+ border: 0;
1545
+ height: $de-ctnr-tlbt-height-big;
1546
+ }
1547
+ .e-de-showhide-btn-rtl {
1548
+ border: 0;
1549
+ height: $de-ctnr-tlbt-height-big;
1550
+ }
1551
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1552
+ padding: $de-ctrnr-tblr-item-padding;
1553
+ }
1554
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1555
+ display: table;
1556
+ @if $skin-name=='material' {
1557
+ font-size: 13px;
1558
+ }
1559
+ @else if $skin-name=='tailwind' {
1560
+ font-size: 14px;
1561
+ line-height: 1.5;
1562
+ }
1563
+ @else if $skin-name=='bootstrap5' or $skin-name =='FluentUI' {
1564
+ font-size: 16px;
1565
+ }
1566
+ @else {
1567
+ font-size: 12px;
1568
+ }
1569
+ margin: $de-ctrnr-tblr-item-margin-big;
1570
+ padding: 0;
1571
+ white-space: normal;
1572
+ }
1573
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
1574
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
1575
+ @if $skin-name=='material' {
1576
+ font-size: 16px;
1577
+ }
1578
+ padding: 0;
1579
+ }
1580
+ .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1581
+ box-shadow: none;
1582
+ height: $de-group-btn-hgt-big;
1583
+ @if $skin-name=='bootstrap5' {
1584
+ padding-left: 1px;
1585
+ }
1586
+ #{if(&, '&', '*')}:focus {
1587
+ box-shadow: none;
1588
+ }
1589
+ #{if(&, '&', '*')}:active {
1590
+ box-shadow: none;
1591
+ }
1592
+ #{if(&, '&', '*')}:hover {
1593
+ box-shadow: none;
1594
+ }
1595
+ }
1596
+ .e-de-ctnr-group-btn button {
1597
+ box-shadow: none;
1598
+ height: $de-group-btn-hgt-big;
1599
+ #{if(&, '&', '*')}:focus {
1600
+ box-shadow: none;
1601
+ }
1602
+ #{if(&, '&', '*')}:active {
1603
+ box-shadow: none;
1604
+ }
1605
+ #{if(&, '&', '*')}:hover {
1606
+ box-shadow: none;
1607
+ }
1608
+ }
1609
+ @if $skin-name !='tailwind' {
1610
+ .e-de-property-div-padding {
1611
+ border-bottom: 0.5px solid $de-pane-separator;
1612
+ @if $skin-name =='FluentUI' {
1613
+ padding: 24px;
1614
+ }
1615
+ @else {
1616
+ padding: 16px;
1617
+ }
1618
+ }
1619
+ .e-de-font-clr-picker>div button,
1620
+ .e-de-font-clr-picker>button {
1621
+ @if $skin-name=='bootstrap5' {
1622
+ width:43px;
1623
+ }
1624
+ @else {
1625
+ width: auto;
1626
+ }
1627
+ }
1628
+ }
1629
+ .e-de-ctnr-dropdown-ftr {
1630
+ border-top: 1px solid $de-pane-separator;
1631
+ color: $de-panel-header-color;
1632
+ cursor: pointer;
1633
+ display: block;
1634
+ font-size: 12px;
1635
+ line-height: 40px;
1636
+ text-indent: 1.2em;
1637
+ }
1638
+ .e-de-char-fmt-btn>button {
1639
+ width: 38.5px;
1640
+ }
1641
+ // sass-lint:disable-all
1642
+ .e-de-btn-hghlclr>button:first-child {
1643
+ padding: 0 6px !important;
1644
+ }
1645
+ .e-de-ctnr-hglt-color {
1646
+ font-size: 12px;
1647
+ font-weight: 400;
1648
+ height: $de-hlt-clr-height-bigger !important;
1649
+ width: $de-hlt-clr-height-bigger !important;
1650
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='bootstrap5' or $skin-name=='tailwind' {
1651
+ border-radius: 4px;
1652
+ }
1653
+ }
1654
+
1655
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' or $skin-name=='tailwind' {
1656
+ .e-de-font-clr-picker>div div button {
1657
+ width: 38px;
1658
+ }
1659
+ }
1660
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap4' {
1661
+ .e-de-font-clr-picker>div div button {
1662
+ width: 38px;
1663
+ }
1664
+ }
1665
+ .e-de-ctnr-list {
1666
+ font-size: $de-bullet-icon-font-size;
1667
+ vertical-align: top;
1668
+ }
1669
+ .e-de-image-property {
1670
+ padding-left: 32px;
1671
+ }
1672
+ .e-de-img-prty-span {
1673
+ color: $de-font-color;
1674
+ left: 10px;
1675
+ position: absolute;
1676
+ top: $de-img-span-top-big;
1677
+ }
1678
+ // sass-lint:disable-all
1679
+ .e-btn-toggle {
1680
+ background-color: $de-toggle-bg-color !important;
1681
+ box-shadow: $de-toggle-btn-border !important;
1682
+ @if $skin-name=='fabric' {
1683
+ border-color: $de-toggle-bg-color !important;
1684
+ }
1685
+ outline: $de-toggle-btn-outline;
1686
+ outline-offset: 0;
1687
+ #{if(&, '&', '*')}:hover {
1688
+ background-color: $de-toggle-bg-color !important;
1689
+ @if $skin-name=='fabric' {
1690
+ border-color: $de-toggle-bg-color !important;
1691
+ }
1692
+ outline: $de-toggle-btn-outline;
1693
+ outline-offset: 0;
1694
+ box-shadow: $de-toggle-btn-border !important;
1695
+ }
1696
+ }
1697
+ .e-de-toc-template1 {
1698
+ background: $de-ctnr-bg-clr;
1699
+ border: 1px solid $de-panel-border;
1700
+ color: $de-panel-header-color;
1701
+ height: 129px;
1702
+ margin-left: 78px;
1703
+ width: 94px;
1704
+ }
1705
+ .e-de-toc-template1-content1 {
1706
+ font-size: 10px;
1707
+ height: 11px;
1708
+ margin-left: 5.4px;
1709
+ margin-top: 6.7px;
1710
+ width: $de-toc-template-content1;
1711
+ }
1712
+ .e-de-toc-template1-content2 {
1713
+ font-size: 8px;
1714
+ height: 9px;
1715
+ margin-left: 20.4px;
1716
+ margin-top: 5.7px;
1717
+ width: $de-toc-template-content2;
1718
+ }
1719
+ .e-de-toc-template1-content3 {
1720
+ font-size: 7px;
1721
+ height: 8px;
1722
+ margin-left: 28.4px;
1723
+ margin-top: 6.7px;
1724
+ width: $de-toc-template-content3;
1725
+ }
1726
+ .e-de-toc-optionsdiv {
1727
+ margin-bottom: 11.5px;
1728
+ margin-left: 5.5px;
1729
+ margin-top: 15.5px;
1730
+ }
1731
+ .e-de-toc-optionsdiv.e-de-rtl {
1732
+ margin-right: 5.5px;
1733
+ margin-left: 0;
1734
+ }
1735
+ @if $skin-name !='tailwind' {
1736
+ .e-de-prop-sub-label {
1737
+ font-size: 13px;
1738
+ margin-bottom: 8.5px;
1739
+ }
1740
+ }
1741
+ .e-de-btn-cancel {
1742
+ margin-left: 10px;
1743
+ }
1744
+ .e-de-status-bar {
1745
+ background-color: $de-ctnr-bg-clr;
1746
+ //border-bottom: 1px solid $de-panel-border;
1747
+ display: flex;
1748
+ padding-top: $e-de-status-bar-big-padding-top;
1749
+ width: 100%;
1750
+ }
1751
+ .e-de-statusbar-zoom {
1752
+ background-color: $de-ctnr-bg-clr;
1753
+ border: 0;
1754
+ color: $de-font-color;
1755
+ float: right;
1756
+ height: 34px;
1757
+ }
1758
+ @if $skin-name !='tailwind' {
1759
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1760
+ line-height: 25px;
1761
+ @if $skin-name !='material' {
1762
+ padding: 0 5px !important;
1763
+ }
1764
+ }
1765
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
1766
+ @if $skin-name !='material' {
1767
+ height: 0;
1768
+ }
1769
+ @if $skin-name == 'material' {
1770
+ height: 6px;
1771
+ }
1772
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
1773
+ line-height: .5;
1774
+ }
1775
+ @else {
1776
+ line-height: 0;
1777
+ }
1778
+ }
1779
+ }
1780
+
1781
+ }
1782
+ }
1783
+
1784
+ .e-de-ctn .e-de-bzr-button {
1785
+ @if $skin-name!='tailwind' and $skin-name!='tailwind-dark' and $skin-name !='bootstrap5' {
1786
+ font-size: 12px;
1787
+ }
1788
+ @if $skin-name !='bootstrap4' and $skin-name !='bootstrap5' {
1789
+ font-weight: 400;
1790
+ }
1791
+
1792
+ background: $e-de-bzr-button-bg-color;
1793
+ @if $skin-name!='tailwind' and $skin-name!='tailwind-dark' and $skin-name !='material' and $skin-name !='material-dark' {
1794
+ height: 100%;
1795
+ }
1796
+ @if $skin-name !='fabric'and $skin-name !='material' and $skin-name !='material-dark' {
1797
+ color: $e-de-bzr-button-font-color;
1798
+ }
1799
+
1800
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' {
1801
+ border: 1px solid $e-de-bzr-button-border-color;
1802
+ }
1803
+ @if $skin-name=='highcontrast' or $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' or $skin-name=='fabric' or $skin-name=='fabric-dark' {
1804
+ box-shadow: none;
1805
+ border: none;
1806
+ }
1807
+ @if $skin-name=='highcontrast' {
1808
+ border: 2px solid $e-de-bzr-button-border-color;
1809
+ }
1810
+ @if $skin-name=='bootstrap' or $skin-name=='bootstrap-dark' {
1811
+ padding-bottom: 6px;
1812
+ }
1813
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
1814
+ border: none;
1815
+ height: calc(100% - 10px);
1816
+ line-height: 1.3 !important;
1817
+ padding: 10px 6px 10px 6px !important;
1818
+ font-size: 14px !important;
1819
+ }
1820
+ }
1821
+ @if $skin-name =='fabric' {
1822
+ .e-de-ctn .e-de-bzr-button:focus {
1823
+ outline: none;
1824
+ }
1825
+ }
1826
+ @if $skin-name !='material' and $skin-name !='material-dark' {
1827
+ .e-de-ctn .e-de-bzr-button:hover {
1828
+ background: $e-de-bzr-button-hover-bg-color;
1829
+ border: $e-de-bzr-button-hover-border;
1830
+ border-radius: $e-de-bzr-button-hover-border-radius;
1831
+ @if $skin-name !='tailwind' and $skin-name !='tailwind-dark' {
1832
+ color: $e-de-bzr-button-hover-font-color;
1833
+ }
1834
+ }
1835
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
1836
+ .e-de-ctn .e-de-bzr-button:hover .e-btn-icon {
1837
+ color: $e-de-bzr-button-hover-font-color;
1838
+ }
1839
+ }
1840
+ }
1841
+ @if $skin-name !='bootstrap' and $skin-name!='bootstrap-dark' and $skin-name!='tailwind' and $skin-name!='tailwind-dark' {
1842
+ .e-de-ctn .e-de-bzr-button:active {
1843
+ @if $skin-name !='bootstrap4' {
1844
+ box-shadow: none;
1845
+ }
1846
+ @if $skin-name=='fabric' or $skin-name=='highcontrast' {
1847
+ border-radius: 0;
1848
+ }
1849
+ @if $skin-name !='material' and $skin-name !='material-dark' {
1850
+ background-color: $e-de-bzr-button-active-bg-color;
1851
+ border-color: $e-de-bzr-button-active-border-color;
1852
+ color: $e-de-bzr-button-active-font-color;
1853
+ }
1854
+ }
1855
+ @if $skin-name=='highcontrast' {
1856
+ .e-de-ctn .e-de-bzr-button:active .e-btn-icon {
1857
+ color: $e-de-bzr-button-active-font-color;
1858
+ }
1859
+ }
1860
+ }
1861
+
1862
+
1863
+ @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' {
1864
+ .e-de-ctn .e-de-bzr-button {
1865
+ @if $skin-name!='bootstrap5' and $skin-name!='FluentUI' {
1866
+ font-size: 12px;
1867
+ }
1868
+ @if $skin-name !='bootstrap4' {
1869
+ font-weight: 400;
1870
+ }@if $skin-name=='FluentUI' {
1871
+ font-size: 14px;
1872
+ border: none;
1873
+ }
1874
+ @if $skin-name !='material' {
1875
+ background: $e-de-bzr-button-bg-color;
1876
+ height: 100%;
1877
+ @if $skin-name !='fabric' {
1878
+ color: $e-de-bzr-button-font-color;
1879
+ }
1880
+ }
1881
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap' {
1882
+ border: 1px solid $e-de-bzr-button-border-color;
1883
+ }
1884
+ @if $skin-name=='bootstrap5' {
1885
+ border: none;
1886
+ line-height: 16px !important;
1887
+ }
1888
+ @if $skin-name=='highcontrast' or $skin-name=='bootstrap' or $skin-name=='bootstrap5' {
1889
+ box-shadow: none;
1890
+ }
1891
+ @if $skin-name=='highcontrast' {
1892
+ border: 2px solid $e-de-bzr-button-border-color;
1893
+ }
1894
+ @if $skin-name=='bootstrap' {
1895
+ padding-bottom: 6px;
1896
+ }
1897
+ }
1898
+ @if $skin-name=='fabric' {
1899
+ .e-de-ctn .e-de-bzr-button:focus {
1900
+ outline: none;
1901
+ }
1902
+ }
1903
+ @if $skin-name !='material' {
1904
+ .e-de-ctn .e-de-bzr-button:hover {
1905
+ background: $e-de-bzr-button-hover-bg-color;
1906
+ border: $e-de-bzr-button-hover-border;
1907
+ border-radius: $e-de-bzr-button-hover-border-radius;
1908
+ color: $e-de-bzr-button-hover-font-color;
1909
+ }
1910
+ @if $skin-name=='bootstrap4' {
1911
+ .e-de-ctn .e-de-bzr-button:hover .e-btn-icon {
1912
+ color: $e-de-bzr-button-hover-font-color;
1913
+ }
1914
+ }
1915
+ }
1916
+ @if $skin-name !='bootstrap' {
1917
+ .e-de-ctn .e-de-bzr-button:active {
1918
+ @if $skin-name !='bootstrap4' {
1919
+ box-shadow: none;
1920
+ }
1921
+ @if $skin-name=='fabric' or $skin-name=='highcontrast' {
1922
+ border-radius: 0;
1923
+ }
1924
+ @if $skin-name !='material' {
1925
+ background-color: $e-de-bzr-button-active-bg-color;
1926
+ border-color: $e-de-bzr-button-active-border-color;
1927
+ color: $e-de-bzr-button-active-font-color;
1928
+ }
1929
+ }
1930
+ @if $skin-name=='highcontrast' {
1931
+ .e-de-ctn .e-de-bzr-button:active .e-btn-icon {
1932
+ color: $e-de-bzr-button-active-font-color;
1933
+ }
1934
+ }
1935
+ }
1936
+ }
1937
+
1938
+ .e-de-ctn {
1939
+ .e-de-ctnr-toolbar {
1940
+ .e-de-bzr-button {
1941
+ @if $skin-name == 'FluentUI' {
1942
+ font-size: 14px;
1943
+ }
1944
+ .e-btn-icon {
1945
+ font-size: $e-de-bzr-btn-font-size;
1946
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
1947
+ padding-bottom: 4px !important;
1948
+ }
1949
+ @if $skin-name == 'FluentUI' {
1950
+ padding-bottom: 2px;
1951
+ }
1952
+ }
1953
+ }
1954
+
1955
+ .e-de-bzr-break.e-de-bzr-button {
1956
+ @if $skin-name=='bootstrap4' {
1957
+ line-height: 23px !important;
1958
+ }
1959
+ @if $skin-name=='tailwind' or $skin-name=='tailwind-dark' {
1960
+ padding-top: 9px !important;
1961
+ padding-bottom: 23px !important;
1962
+ }
1963
+ @if $skin-name=='material' or $skin-name=='material-dark' {
1964
+ height: calc(100% - 10px);
1965
+ line-height: 23px;
1966
+ }
1967
+ @if $skin-name =='bootstrap5' {
1968
+ .e-btn-icon {
1969
+ margin-top: -11px;
1970
+ }
1971
+ }
1972
+ @if $skin-name == 'FluentUI' {
1973
+ padding-top: 0 !important;
1974
+ }
1975
+ }
1976
+ }
1977
+ }
1978
+
1979
+ .e-bigger {
1980
+ .e-de-ctn {
1981
+ .e-de-ctnr-toolbar {
1982
+ .e-de-bzr-button {
1983
+ @if $skin-name == 'FluentUI' {
1984
+ font-size: 16px;
1985
+ }
1986
+ .e-btn-icon {
1987
+ font-size: $e-de-bzr-btn-font-size-big;
1988
+ @if $skin-name =='bootstrap5' or $skin-name == 'FluentUI'{
1989
+ padding-bottom: 4px;
1990
+ }
1991
+ }
1992
+ }
1993
+
1994
+ .e-de-bzr-break.e-de-bzr-button {
1995
+ @if $skin-name == 'material' or $skin-name == 'material-dark' {
1996
+ padding-top: 11px !important;
1997
+ }
1998
+ @if $skin-name == 'FluentUI' {
1999
+ padding-top: 4px !important;
2000
+ }
2001
+ }
2002
+ }
2003
+ }
2004
+ }