@syncfusion/ej2-navigations 19.3.53 → 19.4.38
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.
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +56 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +528 -150
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +535 -151
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/accordion/accordion-model.d.ts +5 -5
- package/src/accordion/accordion.d.ts +5 -5
- package/src/accordion/accordion.js +2 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
- package/src/breadcrumb/breadcrumb.d.ts +33 -10
- package/src/breadcrumb/breadcrumb.js +320 -78
- package/src/common/menu-base.js +2 -2
- package/src/common/v-scroll.js +1 -1
- package/src/sidebar/sidebar.js +4 -4
- package/src/tab/tab-model.d.ts +14 -6
- package/src/tab/tab.d.ts +26 -15
- package/src/tab/tab.js +59 -30
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +68 -5
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +317 -84
- package/styles/bootstrap.css +316 -83
- package/styles/bootstrap4.css +317 -76
- package/styles/bootstrap5-dark.css +340 -76
- package/styles/bootstrap5.css +342 -78
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
- package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
- package/styles/breadcrumb/_fabric-definition.scss +13 -0
- package/styles/breadcrumb/_fluent-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
- package/styles/breadcrumb/_layout.scss +171 -22
- package/styles/breadcrumb/_material-dark-definition.scss +13 -0
- package/styles/breadcrumb/_material-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-definition.scss +13 -0
- package/styles/breadcrumb/_theme.scss +27 -8
- package/styles/breadcrumb/bootstrap-dark.css +194 -17
- package/styles/breadcrumb/bootstrap.css +194 -17
- package/styles/breadcrumb/bootstrap4.css +194 -17
- package/styles/breadcrumb/bootstrap5-dark.css +198 -24
- package/styles/breadcrumb/bootstrap5.css +198 -24
- package/styles/breadcrumb/fabric-dark.css +197 -20
- package/styles/breadcrumb/fabric.css +197 -20
- package/styles/breadcrumb/highcontrast-light.css +200 -22
- package/styles/breadcrumb/highcontrast.css +200 -22
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
- package/styles/breadcrumb/icons/_fabric.scss +2 -1
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
- package/styles/breadcrumb/icons/_material-dark.scss +2 -1
- package/styles/breadcrumb/icons/_material.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind.scss +2 -1
- package/styles/breadcrumb/material-dark.css +186 -13
- package/styles/breadcrumb/material.css +186 -13
- package/styles/breadcrumb/tailwind-dark.css +195 -22
- package/styles/breadcrumb/tailwind.css +195 -22
- package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
- package/styles/context-menu/_bootstrap-definition.scss +1 -1
- package/styles/context-menu/_bootstrap4-definition.scss +1 -1
- package/styles/context-menu/_bootstrap5-definition.scss +5 -5
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_material-dark-definition.scss +1 -1
- package/styles/context-menu/_material-definition.scss +1 -1
- package/styles/context-menu/_tailwind-definition.scss +1 -1
- package/styles/context-menu/bootstrap-dark.css +1 -1
- package/styles/context-menu/bootstrap.css +1 -1
- package/styles/context-menu/bootstrap4.css +1 -1
- package/styles/context-menu/bootstrap5-dark.css +5 -5
- package/styles/context-menu/bootstrap5.css +6 -6
- package/styles/context-menu/icons/_fluent.scss +32 -0
- package/styles/context-menu/material-dark.css +1 -1
- package/styles/context-menu/material.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +305 -41
- package/styles/fabric.css +308 -44
- package/styles/h-scroll/_fluent-definition.scss +78 -0
- package/styles/h-scroll/_tailwind-definition.scss +78 -78
- package/styles/h-scroll/_theme.scss +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +1 -1
- package/styles/h-scroll/bootstrap5-dark.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/highcontrast-light.css +317 -47
- package/styles/highcontrast.css +322 -52
- package/styles/material-dark.css +295 -32
- package/styles/material.css +296 -33
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +1 -1
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +1 -1
- package/styles/menu/bootstrap.css +1 -1
- package/styles/menu/bootstrap4.css +1 -1
- package/styles/menu/bootstrap5-dark.css +4 -4
- package/styles/menu/bootstrap5.css +5 -5
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +1 -1
- package/styles/menu/material.css +1 -1
- package/styles/menu/tailwind-dark.css +1 -1
- package/styles/menu/tailwind.css +1 -1
- package/styles/sidebar/_bootstrap5-definition.scss +5 -5
- package/styles/sidebar/_fluent-definition.scss +5 -0
- package/styles/sidebar/_theme.scss +4 -2
- package/styles/sidebar/bootstrap5-dark.css +0 -1
- package/styles/sidebar/bootstrap5.css +0 -1
- package/styles/sidebar/tailwind-dark.css +0 -1
- package/styles/sidebar/tailwind.css +0 -1
- package/styles/tab/_bootstrap-dark-definition.scss +10 -1
- package/styles/tab/_bootstrap-definition.scss +10 -1
- package/styles/tab/_bootstrap4-definition.scss +9 -1
- package/styles/tab/_bootstrap5-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +10 -0
- package/styles/tab/_fabric-definition.scss +10 -0
- package/styles/tab/_fluent-definition.scss +409 -0
- package/styles/tab/_highcontrast-definition.scss +10 -0
- package/styles/tab/_highcontrast-light-definition.scss +10 -0
- package/styles/tab/_layout.scss +145 -0
- package/styles/tab/_material-dark-definition.scss +10 -0
- package/styles/tab/_material-definition.scss +10 -0
- package/styles/tab/_tailwind-definition.scss +431 -420
- package/styles/tab/_theme.scss +188 -113
- package/styles/tab/bootstrap-dark.css +43 -18
- package/styles/tab/bootstrap.css +42 -17
- package/styles/tab/bootstrap4.css +47 -28
- package/styles/tab/bootstrap5-dark.css +54 -31
- package/styles/tab/bootstrap5.css +54 -31
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +313 -50
- package/styles/tailwind.css +313 -50
- package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
- package/styles/toolbar/_bootstrap-definition.scss +7 -1
- package/styles/toolbar/_bootstrap4-definition.scss +8 -2
- package/styles/toolbar/_bootstrap5-definition.scss +104 -86
- package/styles/toolbar/_fabric-dark-definition.scss +7 -0
- package/styles/toolbar/_fabric-definition.scss +7 -0
- package/styles/toolbar/_fluent-definition.scss +149 -0
- package/styles/toolbar/_highcontrast-definition.scss +7 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
- package/styles/toolbar/_layout.scss +27 -72
- package/styles/toolbar/_material-dark-definition.scss +7 -1
- package/styles/toolbar/_material-definition.scss +7 -1
- package/styles/toolbar/_tailwind-definition.scss +149 -143
- package/styles/toolbar/_theme.scss +12 -15
- package/styles/toolbar/bootstrap-dark.css +17 -46
- package/styles/toolbar/bootstrap.css +17 -46
- package/styles/toolbar/bootstrap4.css +12 -26
- package/styles/toolbar/bootstrap5-dark.css +6 -7
- package/styles/toolbar/bootstrap5.css +6 -7
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/highcontrast-light.css +4 -1
- package/styles/toolbar/highcontrast.css +4 -1
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +4 -1
- package/styles/toolbar/material.css +5 -2
- package/styles/toolbar/tailwind-dark.css +8 -6
- package/styles/toolbar/tailwind.css +8 -6
- package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
- package/styles/treeview/_bootstrap-definition.scss +11 -0
- package/styles/treeview/_bootstrap4-definition.scss +11 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -109
- package/styles/treeview/_fabric-dark-definition.scss +11 -0
- package/styles/treeview/_fabric-definition.scss +11 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +11 -0
- package/styles/treeview/_highcontrast-light-definition.scss +11 -0
- package/styles/treeview/_layout.scss +116 -20
- package/styles/treeview/_material-dark-definition.scss +13 -0
- package/styles/treeview/_material-definition.scss +11 -0
- package/styles/treeview/_tailwind-definition.scss +12 -0
- package/styles/treeview/_theme.scss +5 -5
- package/styles/treeview/bootstrap-dark.css +60 -0
- package/styles/treeview/bootstrap.css +60 -0
- package/styles/treeview/bootstrap4.css +60 -0
- package/styles/treeview/bootstrap5-dark.css +61 -1
- package/styles/treeview/bootstrap5.css +61 -1
- package/styles/treeview/fabric-dark.css +60 -0
- package/styles/treeview/fabric.css +60 -0
- package/styles/treeview/highcontrast-light.css +60 -0
- package/styles/treeview/highcontrast.css +60 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -43
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +60 -0
- package/styles/treeview/material.css +60 -0
- package/styles/treeview/tailwind-dark.css +65 -1
- package/styles/treeview/tailwind.css +65 -1
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/icons/_fluent.scss +26 -0
- package/styles/v-scroll/icons/_tailwind.scss +26 -26
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
|
|
67
|
+
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
|
|
68
68
|
.e-ul {
|
|
69
69
|
padding: $treeview-big-root-ul-padding;
|
|
70
70
|
}
|
|
@@ -117,6 +117,14 @@
|
|
|
117
117
|
|
|
118
118
|
&.e-drag-item {
|
|
119
119
|
|
|
120
|
+
@if $skin-name == 'FluentUI' {
|
|
121
|
+
.e-icon-expandable,
|
|
122
|
+
.e-icon-collapsible {
|
|
123
|
+
padding-left: 24px;
|
|
124
|
+
padding-top: 10;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
120
128
|
.e-drop-count {
|
|
121
129
|
padding: 3px 5px 4px;
|
|
122
130
|
}
|
|
@@ -177,6 +185,40 @@
|
|
|
177
185
|
height: $treeview-big-item-height;
|
|
178
186
|
}
|
|
179
187
|
|
|
188
|
+
&.e-text-wrap {
|
|
189
|
+
.e-checkbox-wrapper {
|
|
190
|
+
& + .e-list-text {
|
|
191
|
+
max-width: $treeview-big-check-wrap-width;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
& + .e-list-icon,
|
|
195
|
+
& + .e-list-img {
|
|
196
|
+
& + .e-list-text {
|
|
197
|
+
max-width: $treeview-big-check-icon-wrap-width;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
& + .e-list-icon + .e-list-img {
|
|
202
|
+
& + .e-list-text {
|
|
203
|
+
max-width: $treeview-big-check-icon-img-wrap-width;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.e-list-icon,
|
|
209
|
+
.e-list-img {
|
|
210
|
+
& + .e-list-text {
|
|
211
|
+
max-width: $treeview-big-icon-wrap-width;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-list-icon + .e-list-img {
|
|
216
|
+
& + .e-list-text {
|
|
217
|
+
max-width: $treeview-big-icon-img-wrap-width;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
180
222
|
.e-list-text {
|
|
181
223
|
line-height: $treeview-big-text-height;
|
|
182
224
|
@if $skin-name != 'bootstrap4' {
|
|
@@ -218,7 +260,7 @@
|
|
|
218
260
|
@if $skin-name == 'bootstrap4' {
|
|
219
261
|
font-size: $treeview-big-image-font-size;
|
|
220
262
|
}
|
|
221
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
263
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
222
264
|
& + .e-list-text {
|
|
223
265
|
padding: $treeview-big-image-text-padding;
|
|
224
266
|
}
|
|
@@ -246,7 +288,7 @@
|
|
|
246
288
|
|
|
247
289
|
&.e-drag-item {
|
|
248
290
|
|
|
249
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
291
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
250
292
|
|
|
251
293
|
.e-text-content {
|
|
252
294
|
padding-left: $treeview-big-drag-item-text-padding-left;
|
|
@@ -255,17 +297,17 @@
|
|
|
255
297
|
.e-icon-collapsible,
|
|
256
298
|
.e-icon-expandable {
|
|
257
299
|
font-size: $treeview-big-drag-icon-font-size;
|
|
258
|
-
@if ($skin-name != 'bootstrap5') {
|
|
300
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
259
301
|
margin: $treeview-big-drag-icon-margin;
|
|
260
302
|
}
|
|
261
303
|
}
|
|
262
304
|
|
|
263
305
|
.e-icon-collapsible::before,
|
|
264
306
|
.e-icon-expandable::before {
|
|
265
|
-
@if ($skin-name != 'bootstrap5') {
|
|
307
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
266
308
|
padding: $treeview-big-drag-before-icon-padding;
|
|
267
309
|
}
|
|
268
|
-
@if ($skin-name == 'bootstrap5') {
|
|
310
|
+
@if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
269
311
|
font-size: $treeview-big-drag-icon-font-size;
|
|
270
312
|
}
|
|
271
313
|
}
|
|
@@ -280,7 +322,7 @@
|
|
|
280
322
|
|
|
281
323
|
&.e-rtl {
|
|
282
324
|
|
|
283
|
-
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
|
|
325
|
+
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
|
|
284
326
|
.e-ul {
|
|
285
327
|
padding: $treeview-big-rtl-root-ul-padding;
|
|
286
328
|
}
|
|
@@ -303,7 +345,7 @@
|
|
|
303
345
|
|
|
304
346
|
&.e-drag-item {
|
|
305
347
|
|
|
306
|
-
@if ($skin-name == 'bootstrap5') {
|
|
348
|
+
@if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
307
349
|
|
|
308
350
|
.e-text-content {
|
|
309
351
|
padding-left: 0;
|
|
@@ -388,7 +430,52 @@
|
|
|
388
430
|
&.e-text-wrap {
|
|
389
431
|
.e-list-text {
|
|
390
432
|
white-space: normal;
|
|
391
|
-
word-break: break-
|
|
433
|
+
word-break: break-word;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
&.e-ie-wrap {
|
|
437
|
+
.e-list-text {
|
|
438
|
+
word-break: break-all;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.e-editing {
|
|
443
|
+
.e-list-text,
|
|
444
|
+
.e-list-text .e-input-group {
|
|
445
|
+
max-width: $treeview-edit-wrap-width;
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.e-checkbox-wrapper {
|
|
450
|
+
& + .e-list-text {
|
|
451
|
+
max-width: $treeview-check-wrap-width;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
& + .e-list-icon,
|
|
455
|
+
& + .e-list-img {
|
|
456
|
+
& + .e-list-text {
|
|
457
|
+
max-width: $treeview-check-icon-wrap-width;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
& + .e-list-icon + .e-list-img {
|
|
462
|
+
& + .e-list-text {
|
|
463
|
+
max-width: $treeview-check-icon-img-wrap-width;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.e-list-icon,
|
|
469
|
+
.e-list-img {
|
|
470
|
+
& + .e-list-text {
|
|
471
|
+
max-width: $treeview-icon-wrap-width;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.e-list-icon + .e-list-img {
|
|
476
|
+
& + .e-list-text {
|
|
477
|
+
max-width: $treeview-icon-img-wrap-width;
|
|
478
|
+
}
|
|
392
479
|
}
|
|
393
480
|
}
|
|
394
481
|
|
|
@@ -407,6 +494,12 @@
|
|
|
407
494
|
|
|
408
495
|
.e-list-item {
|
|
409
496
|
|
|
497
|
+
&.e-active {
|
|
498
|
+
@if $skin-name == 'tailwind' {
|
|
499
|
+
font-weight: $treeview-active-font-weight;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|
|
410
503
|
div.e-icons.interaction {
|
|
411
504
|
-webkit-transition: -webkit-transform .3s ease-in-out;
|
|
412
505
|
border-radius: 15px;
|
|
@@ -537,7 +630,7 @@
|
|
|
537
630
|
|
|
538
631
|
.e-input-group {
|
|
539
632
|
height: $treeview-input-height;
|
|
540
|
-
@if($skin-name == 'tailwind') {
|
|
633
|
+
@if($skin-name == 'tailwind' or $skin-name == 'FluentUI') {
|
|
541
634
|
margin-top: 3px;
|
|
542
635
|
}
|
|
543
636
|
@else if($skin-name == 'bootstrap5') {
|
|
@@ -596,8 +689,8 @@
|
|
|
596
689
|
}
|
|
597
690
|
|
|
598
691
|
.e-sibling {
|
|
599
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
600
|
-
width:
|
|
692
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
693
|
+
width: 144px;
|
|
601
694
|
}
|
|
602
695
|
@else {
|
|
603
696
|
@include sibling-style;
|
|
@@ -613,7 +706,7 @@
|
|
|
613
706
|
@if ($skin-name == 'tailwind') {
|
|
614
707
|
margin-top: -2px;
|
|
615
708
|
}
|
|
616
|
-
@else if ($skin-name == 'bootstrap5') {
|
|
709
|
+
@else if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
617
710
|
margin-top: 1px;
|
|
618
711
|
}
|
|
619
712
|
@else {
|
|
@@ -623,7 +716,7 @@
|
|
|
623
716
|
|
|
624
717
|
.e-sibling::before {
|
|
625
718
|
@include sibling-before(ltr);
|
|
626
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
719
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
627
720
|
height: 2px;
|
|
628
721
|
top: -1.5px;
|
|
629
722
|
}
|
|
@@ -742,21 +835,24 @@
|
|
|
742
835
|
float: left;
|
|
743
836
|
|
|
744
837
|
.e-list-text {
|
|
745
|
-
@if ($skin-name == 'bootstrap5') {
|
|
838
|
+
@if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
746
839
|
padding: 0 $treeview-drag-icon-padding;
|
|
747
840
|
}
|
|
748
841
|
}
|
|
749
842
|
}
|
|
750
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' ) {
|
|
843
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
751
844
|
.e-icon-collapsible,
|
|
752
845
|
.e-icon-expandable {
|
|
753
|
-
@if ($skin-name != 'bootstrap5') {
|
|
846
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
754
847
|
margin: $treeview-drag-icon-margin;
|
|
755
848
|
}
|
|
756
849
|
|
|
757
|
-
@if ($skin-name == 'bootstrap5') {
|
|
850
|
+
@if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
758
851
|
box-sizing: content-box;
|
|
759
852
|
padding-left: $treeview-drag-icon-padding;
|
|
853
|
+
@if ($skin-name == 'FluentUI') {
|
|
854
|
+
padding-top: 8px;
|
|
855
|
+
}
|
|
760
856
|
}
|
|
761
857
|
}
|
|
762
858
|
}
|
|
@@ -764,7 +860,7 @@
|
|
|
764
860
|
.e-icon-collapsible::before,
|
|
765
861
|
.e-icon-expandable::before {
|
|
766
862
|
font-size: $treeview-drag-icon-font-size;
|
|
767
|
-
@if ($skin-name != 'bootstrap5') {
|
|
863
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
768
864
|
padding: $treeview-drag-icon-padding;
|
|
769
865
|
}
|
|
770
866
|
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind') {
|
|
@@ -785,7 +881,7 @@
|
|
|
785
881
|
@else {
|
|
786
882
|
line-height: normal;
|
|
787
883
|
min-width: 12px;
|
|
788
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
884
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
|
|
789
885
|
padding: 1px 3px 2px;
|
|
790
886
|
}
|
|
791
887
|
@else {
|
|
@@ -73,6 +73,13 @@ $treeview-check-image-margin: 0 0 0 12px !default;
|
|
|
73
73
|
$treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
74
74
|
$treeview-drop-count-border-size: 1px !default;
|
|
75
75
|
$treeview-drop-count-font-size: 13px !default;
|
|
76
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
77
|
+
$treeview-check-wrap-width: calc(100% - 22px) !default;
|
|
78
|
+
$treeview-check-icon-wrap-width: calc(100% - 59px) !default;
|
|
79
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 87px) !default;
|
|
80
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
81
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
82
|
+
|
|
76
83
|
$treeview-big-item-height: 40px !default;
|
|
77
84
|
$treeview-big-text-height: 38px !default;
|
|
78
85
|
$treeview-big-input-height: 38px !default;
|
|
@@ -87,6 +94,12 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
87
94
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
88
95
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
89
96
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
97
|
+
$treeview-big-check-wrap-width: calc(100% - 29px) !default;
|
|
98
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 70px) !default;
|
|
99
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 98px) !default;
|
|
100
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
101
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
102
|
+
|
|
90
103
|
$treeview-drag-icon-padding: 6px !default;
|
|
91
104
|
$treeview-font-family: $font-family !default;
|
|
92
105
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -76,6 +76,12 @@ $treeview-check-image-margin: 0 0 0 12px !default;
|
|
|
76
76
|
$treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
77
77
|
$treeview-drop-count-border-size: 1px !default;
|
|
78
78
|
$treeview-drop-count-font-size: 13px !default;
|
|
79
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
80
|
+
$treeview-check-wrap-width: calc(100% - 22px) !default;
|
|
81
|
+
$treeview-check-icon-wrap-width: calc(100% - 59px) !default;
|
|
82
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 87px) !default;
|
|
83
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
84
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
79
85
|
|
|
80
86
|
$treeview-big-item-height: 40px !default;
|
|
81
87
|
$treeview-big-text-height: 38px !default;
|
|
@@ -91,6 +97,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
91
97
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
92
98
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
93
99
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
100
|
+
$treeview-big-check-wrap-width: calc(100% - 29px) !default;
|
|
101
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 70px) !default;
|
|
102
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 98px) !default;
|
|
103
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
104
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
94
105
|
|
|
95
106
|
$treeview-font-family: $font-family !default;
|
|
96
107
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -41,6 +41,13 @@ $treeview-check-image-margin: 0 0 0 8px !default;
|
|
|
41
41
|
$treeview-rtl-check-image-margin: 0 8px 0 0 !default;
|
|
42
42
|
$treeview-drop-count-border-size: 1px !default;
|
|
43
43
|
$treeview-drop-count-font-size: $text-xs !default;
|
|
44
|
+
$treeview-active-font-weight: 500 !default;
|
|
45
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
46
|
+
$treeview-check-wrap-width: calc(100% - 23px) !default;
|
|
47
|
+
$treeview-check-icon-wrap-width: calc(100% - 56px) !default;
|
|
48
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 84px) !default;
|
|
49
|
+
$treeview-icon-wrap-width: calc(100% - 32px) !default;
|
|
50
|
+
$treeview-icon-img-wrap-width: calc(100% - 60px) !default;
|
|
44
51
|
|
|
45
52
|
$treeview-big-item-height: 48px !default;
|
|
46
53
|
$treeview-big-text-height: 46px !default;
|
|
@@ -70,6 +77,11 @@ $treeview-big-drag-item-text-padding-left: 12px !default;
|
|
|
70
77
|
$treeview-big-drag-icon-margin:-6px 0px 5px -9px !default;
|
|
71
78
|
$treeview-big-drag-before-icon-padding: 6px !default;
|
|
72
79
|
$treeview-big-check-text-padding: 0 12px !default;
|
|
80
|
+
$treeview-big-check-wrap-width: calc(100% - 29px) !default;
|
|
81
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 65px) !default;
|
|
82
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 101px) !default;
|
|
83
|
+
$treeview-big-icon-wrap-width: calc(100% - 35px) !default;
|
|
84
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 71px) !default;
|
|
73
85
|
|
|
74
86
|
$treeview-font-family: $font-family !default;
|
|
75
87
|
$treeview-drag-icon-font-size: 20px !default;
|
|
@@ -143,13 +143,13 @@
|
|
|
143
143
|
border-color: $treeview-item-active-check-border-color;
|
|
144
144
|
color: $treeview-item-active-check-color;
|
|
145
145
|
}
|
|
146
|
-
@else if $skin-name == 'bootstrap5' {
|
|
146
|
+
@else if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
|
|
147
147
|
border-color: $content-text-color-selected;
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.e-stop {
|
|
152
|
-
@if $skin-name == 'bootstrap5' {
|
|
152
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
|
|
153
153
|
border-color: $content-text-color-selected;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
> .e-text-content,
|
|
226
226
|
> .e-fullrow {
|
|
227
227
|
color: $treeview-text-disable-color;
|
|
228
|
-
@if $skin-name == 'bootstrap5' {
|
|
228
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
|
|
229
229
|
.e-list-text {
|
|
230
230
|
color: $treeview-text-disable-color;
|
|
231
231
|
}
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
.e-sibling {
|
|
242
|
-
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5') {
|
|
242
|
+
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
243
243
|
@include sibling-theme(left, right);
|
|
244
244
|
}
|
|
245
245
|
@else {
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
&.e-rtl {
|
|
348
348
|
|
|
349
349
|
.e-sibling {
|
|
350
|
-
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5') {
|
|
350
|
+
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
351
351
|
@include sibling-theme(right, left);
|
|
352
352
|
}
|
|
353
353
|
@else {
|
|
@@ -81,6 +81,35 @@
|
|
|
81
81
|
height: 40px;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
|
|
85
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
86
|
+
max-width: calc(100% - 27px);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
90
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
|
|
91
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
92
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
93
|
+
max-width: calc(100% - 68px);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
|
|
97
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
98
|
+
max-width: calc(100% - 96px);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
102
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
|
|
103
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
|
|
104
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
|
|
105
|
+
max-width: calc(100% - 34px);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
|
|
109
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
110
|
+
max-width: calc(100% - 62px);
|
|
111
|
+
}
|
|
112
|
+
|
|
84
113
|
.e-bigger .e-treeview .e-list-text,
|
|
85
114
|
.e-treeview.e-bigger .e-list-text {
|
|
86
115
|
line-height: 38px;
|
|
@@ -200,9 +229,40 @@
|
|
|
200
229
|
|
|
201
230
|
.e-treeview.e-text-wrap .e-list-text {
|
|
202
231
|
white-space: normal;
|
|
232
|
+
word-break: break-word;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
|
|
203
236
|
word-break: break-all;
|
|
204
237
|
}
|
|
205
238
|
|
|
239
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text,
|
|
240
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
|
|
241
|
+
max-width: calc(100% - 2px);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
245
|
+
max-width: calc(100% - 24px);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
249
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
250
|
+
max-width: calc(100% - 61px);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
254
|
+
max-width: calc(100% - 89px);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
258
|
+
.e-treeview.e-text-wrap .e-list-img + .e-list-text {
|
|
259
|
+
max-width: calc(100% - 29px);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
263
|
+
max-width: calc(100% - 57px);
|
|
264
|
+
}
|
|
265
|
+
|
|
206
266
|
.e-treeview .e-ul {
|
|
207
267
|
margin: 0;
|
|
208
268
|
padding: 0 0 0 24px;
|
|
@@ -82,6 +82,35 @@
|
|
|
82
82
|
height: 40px;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
|
|
86
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
87
|
+
max-width: calc(100% - 27px);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
91
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
|
|
92
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
93
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
94
|
+
max-width: calc(100% - 68px);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
|
|
98
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
99
|
+
max-width: calc(100% - 96px);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
103
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
|
|
104
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
|
|
105
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
|
|
106
|
+
max-width: calc(100% - 34px);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
|
|
110
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
111
|
+
max-width: calc(100% - 62px);
|
|
112
|
+
}
|
|
113
|
+
|
|
85
114
|
.e-bigger .e-treeview .e-list-text,
|
|
86
115
|
.e-treeview.e-bigger .e-list-text {
|
|
87
116
|
line-height: 38px;
|
|
@@ -201,9 +230,40 @@
|
|
|
201
230
|
|
|
202
231
|
.e-treeview.e-text-wrap .e-list-text {
|
|
203
232
|
white-space: normal;
|
|
233
|
+
word-break: break-word;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
|
|
204
237
|
word-break: break-all;
|
|
205
238
|
}
|
|
206
239
|
|
|
240
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text,
|
|
241
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
|
|
242
|
+
max-width: calc(100% - 2px);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
246
|
+
max-width: calc(100% - 24px);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
250
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
251
|
+
max-width: calc(100% - 61px);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
255
|
+
max-width: calc(100% - 89px);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
259
|
+
.e-treeview.e-text-wrap .e-list-img + .e-list-text {
|
|
260
|
+
max-width: calc(100% - 29px);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
264
|
+
max-width: calc(100% - 57px);
|
|
265
|
+
}
|
|
266
|
+
|
|
207
267
|
.e-treeview .e-ul {
|
|
208
268
|
margin: 0;
|
|
209
269
|
padding: 0 0 0 24px;
|
|
@@ -93,6 +93,35 @@
|
|
|
93
93
|
height: 40px;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
|
|
97
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
98
|
+
max-width: calc(100% - 24px);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
102
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
|
|
103
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
104
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
105
|
+
max-width: calc(100% - 65px);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
|
|
109
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
110
|
+
max-width: calc(100% - 93px);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
114
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
|
|
115
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
|
|
116
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
|
|
117
|
+
max-width: calc(100% - 34px);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
|
|
121
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
122
|
+
max-width: calc(100% - 62px);
|
|
123
|
+
}
|
|
124
|
+
|
|
96
125
|
.e-bigger .e-treeview .e-list-text,
|
|
97
126
|
.e-treeview.e-bigger .e-list-text {
|
|
98
127
|
line-height: 36px;
|
|
@@ -271,9 +300,40 @@
|
|
|
271
300
|
|
|
272
301
|
.e-treeview.e-text-wrap .e-list-text {
|
|
273
302
|
white-space: normal;
|
|
303
|
+
word-break: break-word;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
|
|
274
307
|
word-break: break-all;
|
|
275
308
|
}
|
|
276
309
|
|
|
310
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text,
|
|
311
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
|
|
312
|
+
max-width: calc(100% - 2px);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
316
|
+
max-width: calc(100% - 18px);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
320
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
321
|
+
max-width: calc(100% - 55px);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
325
|
+
max-width: calc(100% - 83px);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
329
|
+
.e-treeview.e-text-wrap .e-list-img + .e-list-text {
|
|
330
|
+
max-width: calc(100% - 29px);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
334
|
+
max-width: calc(100% - 57px);
|
|
335
|
+
}
|
|
336
|
+
|
|
277
337
|
.e-treeview .e-ul {
|
|
278
338
|
margin: 0;
|
|
279
339
|
padding: 0 0 0 14px;
|