@syncfusion/ej2-navigations 17.3.9-beta → 17.3.14-96615
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/.eslintrc.json +244 -0
- package/CHANGELOG.md +898 -800
- package/README.md +163 -163
- package/dist/ej2-navigations.umd.min.js +1 -10
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +325 -170
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +455 -300
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +1 -10
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/accordion/accordion.ts +1312 -0
- package/dist/ts/common/h-scroll.ts +459 -0
- package/dist/ts/common/menu-base.ts +2131 -0
- package/dist/ts/common/v-scroll.ts +430 -0
- package/dist/ts/context-menu/context-menu.ts +119 -0
- package/dist/ts/menu/menu.ts +270 -0
- package/dist/ts/sidebar/sidebar.ts +817 -0
- package/dist/ts/tab/tab.ts +1761 -0
- package/dist/ts/toolbar/toolbar.ts +2076 -0
- package/dist/ts/treeview/treeview.ts +5050 -0
- package/helpers/e2e/index.js +3 -3
- package/license +10 -10
- package/package.json +135 -149
- package/src/accordion/accordion-model.d.ts +156 -156
- package/src/accordion/accordion.d.ts +1 -0
- package/src/accordion/accordion.js +40 -41
- package/src/common/h-scroll-model.d.ts +5 -5
- package/src/common/h-scroll.js +19 -20
- package/src/common/menu-base-model.d.ts +157 -157
- package/src/common/menu-base.d.ts +19 -0
- package/src/common/menu-base.js +94 -24
- package/src/common/v-scroll-model.d.ts +5 -5
- package/src/common/v-scroll.js +19 -19
- package/src/context-menu/context-menu-model.d.ts +15 -15
- package/src/context-menu/context-menu.js +19 -19
- package/src/menu/menu-model.d.ts +30 -30
- package/src/menu/menu.js +19 -19
- package/src/sidebar/sidebar-model.d.ts +136 -136
- package/src/sidebar/sidebar.js +19 -19
- package/src/tab/tab-model.d.ts +215 -215
- package/src/tab/tab.d.ts +3 -0
- package/src/tab/tab.js +117 -82
- package/src/toolbar/toolbar-model.d.ts +175 -175
- package/src/toolbar/toolbar.d.ts +1 -0
- package/src/toolbar/toolbar.js +30 -24
- package/src/treeview/treeview-model.d.ts +323 -323
- package/src/treeview/treeview.js +79 -33
- package/styles/accordion/_all.scss +2 -2
- package/styles/accordion/_bootstrap-dark-definition.scss +69 -69
- package/styles/accordion/_bootstrap-definition.scss +76 -76
- package/styles/accordion/_bootstrap4-definition.scss +82 -82
- package/styles/accordion/_fabric-dark-definition.scss +74 -74
- package/styles/accordion/_fabric-definition.scss +78 -78
- package/styles/accordion/_highcontrast-definition.scss +106 -106
- package/styles/accordion/_highcontrast-light-definition.scss +104 -104
- package/styles/accordion/_layout.scss +447 -447
- package/styles/accordion/_material-dark-definition.scss +75 -75
- package/styles/accordion/_material-definition.scss +72 -72
- package/styles/accordion/_theme.scss +479 -479
- package/styles/accordion/icons/_bootstrap-dark.scss +17 -17
- package/styles/accordion/icons/_bootstrap.scss +17 -17
- package/styles/accordion/icons/_bootstrap4.scss +17 -17
- package/styles/accordion/icons/_fabric-dark.scss +17 -17
- package/styles/accordion/icons/_fabric.scss +17 -17
- package/styles/accordion/icons/_highcontrast-light.scss +17 -17
- package/styles/accordion/icons/_highcontrast.scss +17 -17
- package/styles/accordion/icons/_material-dark.scss +17 -17
- package/styles/accordion/icons/_material.scss +17 -17
- package/styles/bootstrap-dark.css +7 -9
- package/styles/bootstrap.css +7 -9
- package/styles/bootstrap4.css +7 -9
- package/styles/bootstrap5-dark.css +0 -0
- package/styles/bootstrap5-dark.scss +0 -0
- package/styles/bootstrap5.css +0 -0
- package/styles/bootstrap5.scss +0 -0
- package/styles/context-menu/_all.scss +2 -2
- package/styles/context-menu/_bootstrap-dark-definition.scss +54 -54
- package/styles/context-menu/_bootstrap-definition.scss +52 -52
- package/styles/context-menu/_bootstrap4-definition.scss +52 -52
- package/styles/context-menu/_fabric-dark-definition.scss +54 -54
- package/styles/context-menu/_fabric-definition.scss +52 -52
- package/styles/context-menu/_highcontrast-definition.scss +52 -52
- package/styles/context-menu/_highcontrast-light-definition.scss +54 -54
- package/styles/context-menu/_layout-mixin.scss +175 -175
- package/styles/context-menu/_layout.scss +70 -70
- package/styles/context-menu/_material-dark-definition.scss +54 -54
- package/styles/context-menu/_material-definition.scss +52 -52
- package/styles/context-menu/_theme-mixin.scss +59 -59
- package/styles/context-menu/_theme.scss +36 -36
- package/styles/context-menu/bootstrap-dark.css +0 -1
- package/styles/context-menu/bootstrap.css +0 -1
- package/styles/context-menu/bootstrap4.css +0 -1
- package/styles/context-menu/fabric-dark.css +0 -1
- package/styles/context-menu/fabric.css +0 -1
- package/styles/context-menu/highcontrast-light.css +0 -1
- package/styles/context-menu/highcontrast.css +0 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +30 -30
- package/styles/context-menu/icons/_bootstrap.scss +30 -30
- package/styles/context-menu/icons/_bootstrap4.scss +30 -30
- package/styles/context-menu/icons/_fabric-dark.scss +30 -30
- package/styles/context-menu/icons/_fabric.scss +30 -30
- package/styles/context-menu/icons/_highcontrast-light.scss +30 -30
- package/styles/context-menu/icons/_highcontrast.scss +30 -30
- package/styles/context-menu/icons/_material-dark.scss +30 -30
- package/styles/context-menu/icons/_material.scss +30 -30
- package/styles/context-menu/material-dark.css +0 -1
- package/styles/context-menu/material.css +3 -4
- package/styles/fabric-dark.css +7 -9
- package/styles/fabric.css +7 -9
- package/styles/h-scroll/_all.scss +2 -2
- package/styles/h-scroll/_bootstrap-dark-definition.scss +49 -49
- package/styles/h-scroll/_bootstrap-definition.scss +50 -50
- package/styles/h-scroll/_bootstrap4-definition.scss +49 -49
- package/styles/h-scroll/_fabric-dark-definition.scss +50 -50
- package/styles/h-scroll/_fabric-definition.scss +48 -48
- package/styles/h-scroll/_highcontrast-definition.scss +52 -52
- package/styles/h-scroll/_highcontrast-light-definition.scss +54 -54
- package/styles/h-scroll/_layout.scss +198 -198
- package/styles/h-scroll/_material-dark-definition.scss +77 -77
- package/styles/h-scroll/_material-definition.scss +77 -77
- package/styles/h-scroll/_theme.scss +157 -157
- package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
- package/styles/h-scroll/icons/_fabric.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast.scss +49 -49
- package/styles/h-scroll/icons/_material-dark.scss +49 -49
- package/styles/h-scroll/icons/_material.scss +49 -49
- package/styles/highcontrast-light.css +7 -9
- package/styles/highcontrast.css +7 -9
- package/styles/material-dark.css +7 -9
- package/styles/material.css +21 -14
- package/styles/menu/_all.scss +2 -2
- package/styles/menu/_bootstrap-dark-definition.scss +63 -63
- package/styles/menu/_bootstrap-definition.scss +65 -65
- package/styles/menu/_bootstrap4-definition.scss +64 -64
- package/styles/menu/_fabric-dark-definition.scss +63 -63
- package/styles/menu/_fabric-definition.scss +64 -64
- package/styles/menu/_highcontrast-definition.scss +65 -65
- package/styles/menu/_highcontrast-light-definition.scss +61 -61
- package/styles/menu/_layout.scss +638 -638
- package/styles/menu/_material-dark-definition.scss +63 -63
- package/styles/menu/_material-definition.scss +64 -64
- package/styles/menu/_theme.scss +243 -243
- package/styles/menu/bootstrap-dark.css +0 -1
- package/styles/menu/bootstrap.css +0 -1
- package/styles/menu/bootstrap.scss +1 -0
- package/styles/menu/bootstrap4.css +0 -1
- package/styles/menu/fabric-dark.css +0 -1
- package/styles/menu/fabric.css +0 -1
- package/styles/menu/fabric.scss +1 -0
- package/styles/menu/highcontrast-light.css +0 -1
- package/styles/menu/highcontrast.css +0 -1
- package/styles/menu/highcontrast.scss +1 -0
- package/styles/menu/icons/_bootstrap-dark.scss +127 -127
- package/styles/menu/icons/_bootstrap.scss +127 -127
- package/styles/menu/icons/_bootstrap4.scss +127 -127
- package/styles/menu/icons/_fabric-dark.scss +127 -127
- package/styles/menu/icons/_fabric.scss +127 -127
- package/styles/menu/icons/_highcontrast-light.scss +127 -127
- package/styles/menu/icons/_highcontrast.scss +127 -127
- package/styles/menu/icons/_material-dark.scss +127 -127
- package/styles/menu/icons/_material.scss +127 -127
- package/styles/menu/material-dark.css +0 -1
- package/styles/menu/material.css +2 -3
- package/styles/menu/material.scss +1 -0
- package/styles/sidebar/_all.scss +3 -3
- package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
- package/styles/sidebar/_bootstrap-definition.scss +4 -4
- package/styles/sidebar/_bootstrap4-definition.scss +4 -4
- package/styles/sidebar/_fabric-dark-definition.scss +4 -4
- package/styles/sidebar/_fabric-definition.scss +6 -6
- package/styles/sidebar/_highcontrast-definition.scss +4 -4
- package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_material-dark-definition.scss +4 -4
- package/styles/sidebar/_material-definition.scss +6 -6
- package/styles/sidebar/_theme.scss +168 -168
- package/styles/sidebar/bootstrap-dark.css +0 -1
- package/styles/sidebar/bootstrap.css +0 -1
- package/styles/sidebar/bootstrap4.css +0 -1
- package/styles/sidebar/fabric-dark.css +0 -1
- package/styles/sidebar/fabric.css +0 -1
- package/styles/sidebar/highcontrast-light.css +0 -1
- package/styles/sidebar/highcontrast.css +0 -1
- package/styles/sidebar/material-dark.css +0 -1
- package/styles/sidebar/material.css +0 -1
- package/styles/tab/_all.scss +2 -2
- package/styles/tab/_bootstrap-dark-definition.scss +386 -386
- package/styles/tab/_bootstrap-definition.scss +396 -396
- package/styles/tab/_bootstrap4-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +394 -394
- package/styles/tab/_fabric-definition.scss +410 -410
- package/styles/tab/_highcontrast-definition.scss +434 -434
- package/styles/tab/_highcontrast-light-definition.scss +423 -423
- package/styles/tab/_icons.scss +43 -43
- package/styles/tab/_layout.scss +3528 -3521
- package/styles/tab/_material-dark-definition.scss +407 -407
- package/styles/tab/_material-definition.scss +416 -416
- package/styles/tab/_theme.scss +1751 -1751
- package/styles/tab/bootstrap-dark.css +7 -2
- package/styles/tab/bootstrap.css +7 -2
- package/styles/tab/bootstrap4.css +7 -2
- package/styles/tab/fabric-dark.css +7 -2
- package/styles/tab/fabric.css +7 -2
- package/styles/tab/highcontrast-light.css +7 -2
- package/styles/tab/highcontrast.css +7 -2
- package/styles/tab/icons/_bootstrap-dark.scss +132 -132
- package/styles/tab/icons/_bootstrap.scss +132 -132
- package/styles/tab/icons/_bootstrap4.scss +132 -132
- package/styles/tab/icons/_fabric-dark.scss +132 -132
- package/styles/tab/icons/_fabric.scss +132 -132
- package/styles/tab/icons/_highcontrast-light.scss +132 -132
- package/styles/tab/icons/_highcontrast.scss +132 -132
- package/styles/tab/icons/_material-dark.scss +132 -132
- package/styles/tab/icons/_material.scss +132 -132
- package/styles/tab/material-dark.css +7 -2
- package/styles/tab/material.css +7 -2
- package/styles/tailwind-dark.css +0 -0
- package/styles/tailwind-dark.scss +0 -0
- package/styles/tailwind.css +0 -0
- package/styles/tailwind.scss +0 -0
- package/styles/toolbar/_all.scss +2 -2
- package/styles/toolbar/_bootstrap-dark-definition.scss +135 -135
- package/styles/toolbar/_bootstrap-definition.scss +134 -134
- package/styles/toolbar/_bootstrap4-definition.scss +139 -139
- package/styles/toolbar/_fabric-dark-definition.scss +155 -155
- package/styles/toolbar/_fabric-definition.scss +139 -139
- package/styles/toolbar/_highcontrast-definition.scss +149 -149
- package/styles/toolbar/_highcontrast-light-definition.scss +164 -164
- package/styles/toolbar/_layout.scss +1460 -1460
- package/styles/toolbar/_material-dark-definition.scss +180 -180
- package/styles/toolbar/_material-definition.scss +164 -164
- package/styles/toolbar/_theme.scss +451 -451
- package/styles/toolbar/bootstrap-dark.css +0 -1
- package/styles/toolbar/bootstrap.css +0 -1
- package/styles/toolbar/bootstrap.scss +1 -0
- package/styles/toolbar/bootstrap4.css +0 -1
- package/styles/toolbar/fabric-dark.css +0 -1
- package/styles/toolbar/fabric.css +0 -1
- package/styles/toolbar/fabric.scss +1 -0
- package/styles/toolbar/highcontrast-light.css +0 -1
- package/styles/toolbar/highcontrast.css +0 -1
- package/styles/toolbar/highcontrast.scss +1 -0
- package/styles/toolbar/icons/_bootstrap-dark.scss +16 -16
- package/styles/toolbar/icons/_bootstrap.scss +16 -16
- package/styles/toolbar/icons/_bootstrap4.scss +16 -16
- package/styles/toolbar/icons/_fabric-dark.scss +16 -16
- package/styles/toolbar/icons/_fabric.scss +16 -16
- package/styles/toolbar/icons/_highcontrast-light.scss +16 -16
- package/styles/toolbar/icons/_highcontrast.scss +16 -16
- package/styles/toolbar/icons/_material-dark.scss +16 -16
- package/styles/toolbar/icons/_material.scss +16 -16
- package/styles/toolbar/material-dark.css +0 -1
- package/styles/toolbar/material.css +0 -1
- package/styles/toolbar/material.scss +1 -0
- package/styles/treeview/_all.scss +2 -2
- package/styles/treeview/_bootstrap-dark-definition.scss +131 -131
- package/styles/treeview/_bootstrap-definition.scss +127 -127
- package/styles/treeview/_bootstrap4-definition.scss +153 -153
- package/styles/treeview/_fabric-dark-definition.scss +130 -130
- package/styles/treeview/_fabric-definition.scss +126 -126
- package/styles/treeview/_highcontrast-definition.scss +132 -132
- package/styles/treeview/_highcontrast-light-definition.scss +137 -137
- package/styles/treeview/_layout.scss +551 -551
- package/styles/treeview/_material-dark-definition.scss +126 -126
- package/styles/treeview/_material-definition.scss +126 -126
- package/styles/treeview/_theme.scss +331 -331
- package/styles/treeview/bootstrap-dark.css +0 -3
- package/styles/treeview/bootstrap.css +0 -3
- package/styles/treeview/bootstrap4.css +0 -3
- package/styles/treeview/fabric-dark.css +0 -3
- package/styles/treeview/fabric.css +0 -3
- package/styles/treeview/highcontrast-light.css +0 -3
- package/styles/treeview/highcontrast.css +0 -3
- package/styles/treeview/icons/_bootstrap-dark.scss +39 -39
- package/styles/treeview/icons/_bootstrap.scss +39 -39
- package/styles/treeview/icons/_bootstrap4.scss +39 -39
- package/styles/treeview/icons/_fabric-dark.scss +43 -43
- package/styles/treeview/icons/_fabric.scss +43 -43
- package/styles/treeview/icons/_highcontrast-light.scss +43 -43
- package/styles/treeview/icons/_highcontrast.scss +43 -43
- package/styles/treeview/icons/_material-dark.scss +43 -43
- package/styles/treeview/icons/_material.scss +43 -43
- package/styles/treeview/material-dark.css +0 -3
- package/styles/treeview/material.css +9 -3
- package/styles/v-scroll/_all.scss +2 -2
- package/styles/v-scroll/_bootstrap-dark-definition.scss +50 -50
- package/styles/v-scroll/_bootstrap-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
- package/styles/v-scroll/_fabric-dark-definition.scss +51 -51
- package/styles/v-scroll/_fabric-definition.scss +50 -50
- package/styles/v-scroll/_highcontrast-definition.scss +51 -51
- package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
- package/styles/v-scroll/_layout.scss +162 -162
- package/styles/v-scroll/_material-dark-definition.scss +78 -78
- package/styles/v-scroll/_material-definition.scss +77 -77
- package/styles/v-scroll/_theme.scss +133 -133
- package/styles/v-scroll/icons/_bootstrap-dark.scss +26 -26
- package/styles/v-scroll/icons/_bootstrap.scss +26 -26
- package/styles/v-scroll/icons/_bootstrap4.scss +26 -26
- package/styles/v-scroll/icons/_fabric-dark.scss +26 -26
- package/styles/v-scroll/icons/_fabric.scss +26 -26
- package/styles/v-scroll/icons/_highcontrast-light.scss +26 -26
- package/styles/v-scroll/icons/_highcontrast.scss +26 -26
- package/styles/v-scroll/icons/_material-dark.scss +26 -26
- package/styles/v-scroll/icons/_material.scss +26 -26
- package/tslint.json +111 -0
- package/.gitlab/merge_request_templates/Bug.md +0 -63
- package/.gitlab/merge_request_templates/feature.md +0 -39
|
@@ -1,551 +1,551 @@
|
|
|
1
|
-
// sass-lint:disable no-vendor-prefixes
|
|
2
|
-
@mixin user-select {
|
|
3
|
-
-moz-user-select: none;
|
|
4
|
-
-ms-user-select: none;
|
|
5
|
-
-webkit-user-select: none;
|
|
6
|
-
user-select: none;
|
|
7
|
-
}
|
|
8
|
-
@mixin sibling-style {
|
|
9
|
-
@if $treeview-skin-name == 'material' {
|
|
10
|
-
border-radius: 10px;
|
|
11
|
-
}
|
|
12
|
-
@else {
|
|
13
|
-
border: 4px solid transparent;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
@mixin sibling-before($position) {
|
|
17
|
-
@if $treeview-skin-name == 'material' {
|
|
18
|
-
@if $position == 'rtl' {
|
|
19
|
-
right: 6px;
|
|
20
|
-
top: 3px;
|
|
21
|
-
}
|
|
22
|
-
@else {
|
|
23
|
-
left: 6px;
|
|
24
|
-
top: 3px;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
@else {
|
|
28
|
-
@if $position == 'rtl' {
|
|
29
|
-
right: 0;
|
|
30
|
-
}
|
|
31
|
-
@else {
|
|
32
|
-
left: 0;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
@include export-module('treeview-layout') {
|
|
37
|
-
@keyframes rotation {
|
|
38
|
-
from {
|
|
39
|
-
transform: rotate(0deg);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
to {
|
|
43
|
-
transform: rotate(359deg);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@-webkit-keyframes rotation {
|
|
48
|
-
from {
|
|
49
|
-
-webkit-transform: rotate(0deg);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
to {
|
|
53
|
-
-webkit-transform: rotate(359deg);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.e-bigger #{&}.e-treeview,
|
|
58
|
-
#{&}.e-treeview.e-bigger {
|
|
59
|
-
|
|
60
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
61
|
-
.e-ul,
|
|
62
|
-
.e-list-item .e-ul {
|
|
63
|
-
padding-left: 16px;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.e-fullrow {
|
|
68
|
-
height: $treeview-big-item-height;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.e-list-text {
|
|
72
|
-
line-height: $treeview-big-text-height;
|
|
73
|
-
@if $treeview-skin-name != 'bootstrap4' {
|
|
74
|
-
min-height: $treeview-big-text-height;
|
|
75
|
-
}
|
|
76
|
-
@else if $treeview-skin-name == 'bootstrap4' {
|
|
77
|
-
min-height: 38px;
|
|
78
|
-
}
|
|
79
|
-
padding: $treeview-big-text-padding;
|
|
80
|
-
|
|
81
|
-
.e-input-group {
|
|
82
|
-
height: $treeview-big-input-height;
|
|
83
|
-
|
|
84
|
-
@if $treeview-skin-name != 'material' {
|
|
85
|
-
.e-input {
|
|
86
|
-
height: 36px;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.e-checkbox-wrapper {
|
|
93
|
-
margin: $treeview-big-check-margin;
|
|
94
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
95
|
-
& + .e-list-text {
|
|
96
|
-
padding: $treeview-big-check-text-padding;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
& + .e-list-icon,
|
|
101
|
-
& + .e-list-img {
|
|
102
|
-
margin: $treeview-big-check-image-margin;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.e-list-icon,
|
|
107
|
-
.e-list-img {
|
|
108
|
-
margin: $treeview-big-image-margin;
|
|
109
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
110
|
-
font-size: $treeview-big-image-font-size;
|
|
111
|
-
}
|
|
112
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
113
|
-
& + .e-list-text {
|
|
114
|
-
padding: $treeview-big-image-text-padding;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
& + .e-list-icon,
|
|
119
|
-
& + .e-list-img {
|
|
120
|
-
margin: $treeview-big-icon-image-margin;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.e-icon-collapsible,
|
|
125
|
-
.e-icon-expandable {
|
|
126
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
127
|
-
height: $treeview-big-icon-size;
|
|
128
|
-
margin: $treeview-big-icon-margin;
|
|
129
|
-
width: $treeview-big-icon-size;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.e-icon-collapsible::before,
|
|
134
|
-
.e-icon-expandable::before {
|
|
135
|
-
padding: $treeview-big-icon-padding;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
&.e-drag-item {
|
|
139
|
-
|
|
140
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
141
|
-
|
|
142
|
-
.e-text-content {
|
|
143
|
-
padding-left: $treeview-big-drag-item-text-padding-left;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.e-icon-collapsible,
|
|
147
|
-
.e-icon-expandable {
|
|
148
|
-
font-size: $treeview-big-drag-icon-font-size;
|
|
149
|
-
margin: $treeview-big-drag-icon-margin;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.e-icon-collapsible::before,
|
|
153
|
-
.e-icon-expandable::before {
|
|
154
|
-
padding: $treeview-big-drag-before-icon-padding;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.e-drop-count {
|
|
158
|
-
border: $treeview-big-drop-count-border-size solid;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
&.e-rtl {
|
|
164
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
165
|
-
.e-icon-collapsible,
|
|
166
|
-
.e-icon-expandable {
|
|
167
|
-
margin: $treeview-big-rtl-icon-margin;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.e-checkbox-wrapper {
|
|
172
|
-
margin: $treeview-big-rtl-check-margin;
|
|
173
|
-
|
|
174
|
-
& + .e-list-icon,
|
|
175
|
-
& + .e-list-img {
|
|
176
|
-
margin: $treeview-big-rtl-check-image-margin;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.e-list-icon,
|
|
181
|
-
.e-list-img {
|
|
182
|
-
margin: $treeview-big-rtl-image-margin;
|
|
183
|
-
|
|
184
|
-
& + .e-list-icon,
|
|
185
|
-
& + .e-list-img {
|
|
186
|
-
margin: $treeview-big-rtl-icon-image-margin;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
#{&}.e-treeview {
|
|
193
|
-
display: block;
|
|
194
|
-
overflow: hidden;
|
|
195
|
-
position: relative;
|
|
196
|
-
white-space: nowrap;
|
|
197
|
-
|
|
198
|
-
& > .e-ul {
|
|
199
|
-
-webkit-overflow-scrolling: touch;
|
|
200
|
-
overflow: auto;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.e-ul {
|
|
204
|
-
margin: 0;
|
|
205
|
-
padding: $treeview-root-ul-padding;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
li.e-node-collapsed .e-list-item .e-fullrow {
|
|
209
|
-
display: none;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.e-list-item {
|
|
213
|
-
list-style: none;
|
|
214
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
215
|
-
padding: 4px 0;
|
|
216
|
-
}
|
|
217
|
-
@else {
|
|
218
|
-
padding: 2px 0;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.e-ul {
|
|
222
|
-
margin: 2px 0 -2px;
|
|
223
|
-
padding: $treeview-child-ul-padding;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
&.e-disable {
|
|
227
|
-
|
|
228
|
-
> .e-text-content,
|
|
229
|
-
> .e-fullrow {
|
|
230
|
-
-ms-touch-action: none;
|
|
231
|
-
filter: alpha(opacity=50);
|
|
232
|
-
opacity: .5;
|
|
233
|
-
pointer-events: none;
|
|
234
|
-
touch-action: none;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.e-list-item .e-icons.e-icons-spinner::before {
|
|
240
|
-
content: none;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.e-icons .e-spinner-pane {
|
|
244
|
-
position: relative;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.e-text-content {
|
|
248
|
-
@include user-select;
|
|
249
|
-
border: 1px solid;
|
|
250
|
-
cursor: pointer;
|
|
251
|
-
margin: 0;
|
|
252
|
-
padding: $treeview-text-wrap-padding;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.e-fullrow {
|
|
256
|
-
@include user-select;
|
|
257
|
-
border: 1px solid;
|
|
258
|
-
box-sizing: border-box;
|
|
259
|
-
cursor: pointer;
|
|
260
|
-
height: $treeview-item-height;
|
|
261
|
-
left: 0;
|
|
262
|
-
overflow: hidden;
|
|
263
|
-
position: absolute;
|
|
264
|
-
width: 100%;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.e-checkbox-wrapper {
|
|
268
|
-
margin: $treeview-check-margin;
|
|
269
|
-
pointer-events: all;
|
|
270
|
-
position: relative;
|
|
271
|
-
|
|
272
|
-
& + .e-list-icon,
|
|
273
|
-
& + .e-list-img {
|
|
274
|
-
margin: $treeview-check-image-margin;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
& + .e-list-text {
|
|
278
|
-
padding: $treeview-check-text-padding;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.e-ripple-container {
|
|
282
|
-
bottom: $ripple-size;
|
|
283
|
-
height: $ripple-height;
|
|
284
|
-
left: $ripple-size;
|
|
285
|
-
right: $ripple-size;
|
|
286
|
-
top: $ripple-size;
|
|
287
|
-
width: $ripple-width;
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.e-list-text {
|
|
292
|
-
box-sizing: border-box;
|
|
293
|
-
display: inline-block;
|
|
294
|
-
line-height: $treeview-text-height;
|
|
295
|
-
margin: $treeview-text-margin;
|
|
296
|
-
@if $treeview-skin-name != 'bootstrap4' {
|
|
297
|
-
min-height: $treeview-text-height;
|
|
298
|
-
}
|
|
299
|
-
@else if $treeview-skin-name == 'bootstrap4' {
|
|
300
|
-
min-height: 30px;
|
|
301
|
-
}
|
|
302
|
-
padding: $treeview-text-padding;
|
|
303
|
-
text-decoration: none;
|
|
304
|
-
vertical-align: middle;
|
|
305
|
-
|
|
306
|
-
.e-input-group {
|
|
307
|
-
height: $treeview-input-height;
|
|
308
|
-
margin-bottom: 0;
|
|
309
|
-
min-width: 150px;
|
|
310
|
-
vertical-align: bottom;
|
|
311
|
-
|
|
312
|
-
@if $treeview-skin-name != 'material' {
|
|
313
|
-
.e-input {
|
|
314
|
-
height: 28px;
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.e-list-icon,
|
|
321
|
-
.e-list-img {
|
|
322
|
-
display: inline-block;
|
|
323
|
-
height: $treeview-image-size;
|
|
324
|
-
margin: $treeview-image-margin;
|
|
325
|
-
vertical-align: middle;
|
|
326
|
-
width: $treeview-image-size;
|
|
327
|
-
|
|
328
|
-
& + .e-list-icon,
|
|
329
|
-
& + .e-list-img {
|
|
330
|
-
margin: $treeview-icon-image-margin;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
& + .e-list-text {
|
|
334
|
-
padding: $treeview-image-text-padding;
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.e-icon-collapsible,
|
|
339
|
-
.e-icon-expandable {
|
|
340
|
-
display: inline-block;
|
|
341
|
-
height: $treeview-icon-size;
|
|
342
|
-
margin: $treeview-icon-margin;
|
|
343
|
-
vertical-align: middle;
|
|
344
|
-
width: $treeview-icon-size;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
.e-icon-collapsible::before,
|
|
348
|
-
.e-icon-expandable::before {
|
|
349
|
-
display: inline-block;
|
|
350
|
-
padding: $treeview-icon-padding;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.e-load {
|
|
354
|
-
-webkit-animation: rotation .5s infinite linear;
|
|
355
|
-
animation: rotation .5s infinite linear;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.e-sibling {
|
|
359
|
-
@include sibling-style;
|
|
360
|
-
height: 6px;
|
|
361
|
-
margin-top: -5px;
|
|
362
|
-
position: absolute;
|
|
363
|
-
width: 6px;
|
|
364
|
-
z-index: 2;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
.e-text-content + .e-sibling {
|
|
368
|
-
margin-top: -1px;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.e-sibling::before {
|
|
372
|
-
@include sibling-before(ltr);
|
|
373
|
-
height: 1px;
|
|
374
|
-
position: absolute;
|
|
375
|
-
width: 144px;
|
|
376
|
-
z-index: 2;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.e-popup {
|
|
380
|
-
@include user-select;
|
|
381
|
-
font-weight: normal;
|
|
382
|
-
position: absolute;
|
|
383
|
-
z-index: 99999;
|
|
384
|
-
|
|
385
|
-
.e-content {
|
|
386
|
-
border-radius: 4px;
|
|
387
|
-
border-style: solid;
|
|
388
|
-
border-width: 1px;
|
|
389
|
-
font-size: 14px;
|
|
390
|
-
padding: 4px;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.e-icons {
|
|
394
|
-
border: 1px solid transparent;
|
|
395
|
-
cursor: pointer;
|
|
396
|
-
display: inline-block;
|
|
397
|
-
height: 26px;
|
|
398
|
-
line-height: 18px;
|
|
399
|
-
padding: 4px;
|
|
400
|
-
width: 26px;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
.e-downtail::before,
|
|
404
|
-
.e-downtail::after {
|
|
405
|
-
border: 10px solid transparent;
|
|
406
|
-
content: '';
|
|
407
|
-
height: 0;
|
|
408
|
-
left: 8px;
|
|
409
|
-
position: absolute;
|
|
410
|
-
width: 0;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.e-downtail::after {
|
|
414
|
-
bottom: -18px;
|
|
415
|
-
}
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
&.e-fullrow-wrap {
|
|
419
|
-
|
|
420
|
-
.e-text-content {
|
|
421
|
-
pointer-events: none;
|
|
422
|
-
position: relative;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.e-icon-collapsible,
|
|
426
|
-
.e-icon-expandable,
|
|
427
|
-
.e-input,
|
|
428
|
-
.e-list-url {
|
|
429
|
-
pointer-events: auto;
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
&.e-drag-item {
|
|
434
|
-
overflow: visible;
|
|
435
|
-
z-index: 10000;
|
|
436
|
-
|
|
437
|
-
.e-text-content {
|
|
438
|
-
float: left;
|
|
439
|
-
}
|
|
440
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
441
|
-
.e-icon-collapsible,
|
|
442
|
-
.e-icon-expandable {
|
|
443
|
-
margin: $treeview-drag-icon-margin;
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.e-icon-collapsible::before,
|
|
448
|
-
.e-icon-expandable::before {
|
|
449
|
-
font-size: $treeview-drag-icon-font-size;
|
|
450
|
-
padding: $treeview-drag-icon-padding;
|
|
451
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
452
|
-
padding-right: $treeview-drag-icon-padding-right;
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.e-drop-count {
|
|
457
|
-
border: $treeview-drop-count-border-size solid;
|
|
458
|
-
border-radius: 15px;
|
|
459
|
-
box-sizing: content-box;
|
|
460
|
-
font-size: $treeview-drop-count-font-size;
|
|
461
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
462
|
-
line-height: 1.5;
|
|
463
|
-
min-width: 10px;
|
|
464
|
-
padding: 0 5px;
|
|
465
|
-
}
|
|
466
|
-
@else {
|
|
467
|
-
line-height: normal;
|
|
468
|
-
min-width: 12px;
|
|
469
|
-
padding: 3px 5px 4px;
|
|
470
|
-
}
|
|
471
|
-
margin-left: -12px;
|
|
472
|
-
position: absolute;
|
|
473
|
-
text-align: center;
|
|
474
|
-
top: -10px;
|
|
475
|
-
}
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
&.e-dragging {
|
|
479
|
-
|
|
480
|
-
.e-text-content,
|
|
481
|
-
.e-fullrow {
|
|
482
|
-
cursor: default;
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
&.e-rtl {
|
|
487
|
-
|
|
488
|
-
.e-ul {
|
|
489
|
-
padding: $treeview-rtl-root-ul-padding;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.e-list-item {
|
|
493
|
-
|
|
494
|
-
.e-ul {
|
|
495
|
-
padding: $treeview-rtl-child-ul-padding;
|
|
496
|
-
}
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.e-text-content {
|
|
500
|
-
padding: $treeview-rtl-text-wrap-padding;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.e-checkbox-wrapper {
|
|
504
|
-
margin: $treeview-rtl-check-margin;
|
|
505
|
-
|
|
506
|
-
& + .e-list-icon,
|
|
507
|
-
& + .e-list-img {
|
|
508
|
-
margin: $treeview-rtl-check-image-margin;
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.e-list-icon,
|
|
513
|
-
.e-list-img {
|
|
514
|
-
margin: $treeview-rtl-image-margin;
|
|
515
|
-
|
|
516
|
-
& + .e-list-icon,
|
|
517
|
-
& + .e-list-img {
|
|
518
|
-
margin: $treeview-rtl-icon-image-margin;
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.e-icon-collapsible,
|
|
523
|
-
.e-icon-expandable {
|
|
524
|
-
margin: $treeview-rtl-icon-margin;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
.e-sibling::before {
|
|
528
|
-
@include sibling-before(rtl);
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
&.e-drag-item {
|
|
532
|
-
|
|
533
|
-
.e-text-content {
|
|
534
|
-
float: right;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.e-icon-collapsible,
|
|
538
|
-
.e-icon-expandable {
|
|
539
|
-
@if $treeview-skin-name == 'bootstrap4' {
|
|
540
|
-
margin: $treeview-rtl-drag-margin;
|
|
541
|
-
}
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.e-drop-count {
|
|
545
|
-
margin-right: -12px;
|
|
546
|
-
}
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
}
|
|
550
|
-
// sass-lint:enable no-vendor-prefixes
|
|
551
|
-
}
|
|
1
|
+
// sass-lint:disable no-vendor-prefixes
|
|
2
|
+
@mixin user-select {
|
|
3
|
+
-moz-user-select: none;
|
|
4
|
+
-ms-user-select: none;
|
|
5
|
+
-webkit-user-select: none;
|
|
6
|
+
user-select: none;
|
|
7
|
+
}
|
|
8
|
+
@mixin sibling-style {
|
|
9
|
+
@if $treeview-skin-name == 'material' {
|
|
10
|
+
border-radius: 10px;
|
|
11
|
+
}
|
|
12
|
+
@else {
|
|
13
|
+
border: 4px solid transparent;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
@mixin sibling-before($position) {
|
|
17
|
+
@if $treeview-skin-name == 'material' {
|
|
18
|
+
@if $position == 'rtl' {
|
|
19
|
+
right: 6px;
|
|
20
|
+
top: 3px;
|
|
21
|
+
}
|
|
22
|
+
@else {
|
|
23
|
+
left: 6px;
|
|
24
|
+
top: 3px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
@else {
|
|
28
|
+
@if $position == 'rtl' {
|
|
29
|
+
right: 0;
|
|
30
|
+
}
|
|
31
|
+
@else {
|
|
32
|
+
left: 0;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
@include export-module('treeview-layout') {
|
|
37
|
+
@keyframes rotation {
|
|
38
|
+
from {
|
|
39
|
+
transform: rotate(0deg);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
to {
|
|
43
|
+
transform: rotate(359deg);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@-webkit-keyframes rotation {
|
|
48
|
+
from {
|
|
49
|
+
-webkit-transform: rotate(0deg);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
to {
|
|
53
|
+
-webkit-transform: rotate(359deg);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-bigger #{&}.e-treeview,
|
|
58
|
+
#{&}.e-treeview.e-bigger {
|
|
59
|
+
|
|
60
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
61
|
+
.e-ul,
|
|
62
|
+
.e-list-item .e-ul {
|
|
63
|
+
padding-left: 16px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.e-fullrow {
|
|
68
|
+
height: $treeview-big-item-height;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-list-text {
|
|
72
|
+
line-height: $treeview-big-text-height;
|
|
73
|
+
@if $treeview-skin-name != 'bootstrap4' {
|
|
74
|
+
min-height: $treeview-big-text-height;
|
|
75
|
+
}
|
|
76
|
+
@else if $treeview-skin-name == 'bootstrap4' {
|
|
77
|
+
min-height: 38px;
|
|
78
|
+
}
|
|
79
|
+
padding: $treeview-big-text-padding;
|
|
80
|
+
|
|
81
|
+
.e-input-group {
|
|
82
|
+
height: $treeview-big-input-height;
|
|
83
|
+
|
|
84
|
+
@if $treeview-skin-name != 'material' {
|
|
85
|
+
.e-input {
|
|
86
|
+
height: 36px;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-checkbox-wrapper {
|
|
93
|
+
margin: $treeview-big-check-margin;
|
|
94
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
95
|
+
& + .e-list-text {
|
|
96
|
+
padding: $treeview-big-check-text-padding;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
& + .e-list-icon,
|
|
101
|
+
& + .e-list-img {
|
|
102
|
+
margin: $treeview-big-check-image-margin;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-list-icon,
|
|
107
|
+
.e-list-img {
|
|
108
|
+
margin: $treeview-big-image-margin;
|
|
109
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
110
|
+
font-size: $treeview-big-image-font-size;
|
|
111
|
+
}
|
|
112
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
113
|
+
& + .e-list-text {
|
|
114
|
+
padding: $treeview-big-image-text-padding;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
& + .e-list-icon,
|
|
119
|
+
& + .e-list-img {
|
|
120
|
+
margin: $treeview-big-icon-image-margin;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-icon-collapsible,
|
|
125
|
+
.e-icon-expandable {
|
|
126
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
127
|
+
height: $treeview-big-icon-size;
|
|
128
|
+
margin: $treeview-big-icon-margin;
|
|
129
|
+
width: $treeview-big-icon-size;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.e-icon-collapsible::before,
|
|
134
|
+
.e-icon-expandable::before {
|
|
135
|
+
padding: $treeview-big-icon-padding;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
&.e-drag-item {
|
|
139
|
+
|
|
140
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
141
|
+
|
|
142
|
+
.e-text-content {
|
|
143
|
+
padding-left: $treeview-big-drag-item-text-padding-left;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-icon-collapsible,
|
|
147
|
+
.e-icon-expandable {
|
|
148
|
+
font-size: $treeview-big-drag-icon-font-size;
|
|
149
|
+
margin: $treeview-big-drag-icon-margin;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.e-icon-collapsible::before,
|
|
153
|
+
.e-icon-expandable::before {
|
|
154
|
+
padding: $treeview-big-drag-before-icon-padding;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.e-drop-count {
|
|
158
|
+
border: $treeview-big-drop-count-border-size solid;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
&.e-rtl {
|
|
164
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
165
|
+
.e-icon-collapsible,
|
|
166
|
+
.e-icon-expandable {
|
|
167
|
+
margin: $treeview-big-rtl-icon-margin;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-checkbox-wrapper {
|
|
172
|
+
margin: $treeview-big-rtl-check-margin;
|
|
173
|
+
|
|
174
|
+
& + .e-list-icon,
|
|
175
|
+
& + .e-list-img {
|
|
176
|
+
margin: $treeview-big-rtl-check-image-margin;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.e-list-icon,
|
|
181
|
+
.e-list-img {
|
|
182
|
+
margin: $treeview-big-rtl-image-margin;
|
|
183
|
+
|
|
184
|
+
& + .e-list-icon,
|
|
185
|
+
& + .e-list-img {
|
|
186
|
+
margin: $treeview-big-rtl-icon-image-margin;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
#{&}.e-treeview {
|
|
193
|
+
display: block;
|
|
194
|
+
overflow: hidden;
|
|
195
|
+
position: relative;
|
|
196
|
+
white-space: nowrap;
|
|
197
|
+
|
|
198
|
+
& > .e-ul {
|
|
199
|
+
-webkit-overflow-scrolling: touch;
|
|
200
|
+
overflow: auto;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.e-ul {
|
|
204
|
+
margin: 0;
|
|
205
|
+
padding: $treeview-root-ul-padding;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
li.e-node-collapsed .e-list-item .e-fullrow {
|
|
209
|
+
display: none;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.e-list-item {
|
|
213
|
+
list-style: none;
|
|
214
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
215
|
+
padding: 4px 0;
|
|
216
|
+
}
|
|
217
|
+
@else {
|
|
218
|
+
padding: 2px 0;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-ul {
|
|
222
|
+
margin: 2px 0 -2px;
|
|
223
|
+
padding: $treeview-child-ul-padding;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
&.e-disable {
|
|
227
|
+
|
|
228
|
+
> .e-text-content,
|
|
229
|
+
> .e-fullrow {
|
|
230
|
+
-ms-touch-action: none;
|
|
231
|
+
filter: alpha(opacity=50);
|
|
232
|
+
opacity: .5;
|
|
233
|
+
pointer-events: none;
|
|
234
|
+
touch-action: none;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.e-list-item .e-icons.e-icons-spinner::before {
|
|
240
|
+
content: none;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.e-icons .e-spinner-pane {
|
|
244
|
+
position: relative;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.e-text-content {
|
|
248
|
+
@include user-select;
|
|
249
|
+
border: 1px solid;
|
|
250
|
+
cursor: pointer;
|
|
251
|
+
margin: 0;
|
|
252
|
+
padding: $treeview-text-wrap-padding;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.e-fullrow {
|
|
256
|
+
@include user-select;
|
|
257
|
+
border: 1px solid;
|
|
258
|
+
box-sizing: border-box;
|
|
259
|
+
cursor: pointer;
|
|
260
|
+
height: $treeview-item-height;
|
|
261
|
+
left: 0;
|
|
262
|
+
overflow: hidden;
|
|
263
|
+
position: absolute;
|
|
264
|
+
width: 100%;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.e-checkbox-wrapper {
|
|
268
|
+
margin: $treeview-check-margin;
|
|
269
|
+
pointer-events: all;
|
|
270
|
+
position: relative;
|
|
271
|
+
|
|
272
|
+
& + .e-list-icon,
|
|
273
|
+
& + .e-list-img {
|
|
274
|
+
margin: $treeview-check-image-margin;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
& + .e-list-text {
|
|
278
|
+
padding: $treeview-check-text-padding;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.e-ripple-container {
|
|
282
|
+
bottom: $ripple-size;
|
|
283
|
+
height: $ripple-height;
|
|
284
|
+
left: $ripple-size;
|
|
285
|
+
right: $ripple-size;
|
|
286
|
+
top: $ripple-size;
|
|
287
|
+
width: $ripple-width;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.e-list-text {
|
|
292
|
+
box-sizing: border-box;
|
|
293
|
+
display: inline-block;
|
|
294
|
+
line-height: $treeview-text-height;
|
|
295
|
+
margin: $treeview-text-margin;
|
|
296
|
+
@if $treeview-skin-name != 'bootstrap4' {
|
|
297
|
+
min-height: $treeview-text-height;
|
|
298
|
+
}
|
|
299
|
+
@else if $treeview-skin-name == 'bootstrap4' {
|
|
300
|
+
min-height: 30px;
|
|
301
|
+
}
|
|
302
|
+
padding: $treeview-text-padding;
|
|
303
|
+
text-decoration: none;
|
|
304
|
+
vertical-align: middle;
|
|
305
|
+
|
|
306
|
+
.e-input-group {
|
|
307
|
+
height: $treeview-input-height;
|
|
308
|
+
margin-bottom: 0;
|
|
309
|
+
min-width: 150px;
|
|
310
|
+
vertical-align: bottom;
|
|
311
|
+
|
|
312
|
+
@if $treeview-skin-name != 'material' {
|
|
313
|
+
.e-input {
|
|
314
|
+
height: 28px;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.e-list-icon,
|
|
321
|
+
.e-list-img {
|
|
322
|
+
display: inline-block;
|
|
323
|
+
height: $treeview-image-size;
|
|
324
|
+
margin: $treeview-image-margin;
|
|
325
|
+
vertical-align: middle;
|
|
326
|
+
width: $treeview-image-size;
|
|
327
|
+
|
|
328
|
+
& + .e-list-icon,
|
|
329
|
+
& + .e-list-img {
|
|
330
|
+
margin: $treeview-icon-image-margin;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
& + .e-list-text {
|
|
334
|
+
padding: $treeview-image-text-padding;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.e-icon-collapsible,
|
|
339
|
+
.e-icon-expandable {
|
|
340
|
+
display: inline-block;
|
|
341
|
+
height: $treeview-icon-size;
|
|
342
|
+
margin: $treeview-icon-margin;
|
|
343
|
+
vertical-align: middle;
|
|
344
|
+
width: $treeview-icon-size;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.e-icon-collapsible::before,
|
|
348
|
+
.e-icon-expandable::before {
|
|
349
|
+
display: inline-block;
|
|
350
|
+
padding: $treeview-icon-padding;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.e-load {
|
|
354
|
+
-webkit-animation: rotation .5s infinite linear;
|
|
355
|
+
animation: rotation .5s infinite linear;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.e-sibling {
|
|
359
|
+
@include sibling-style;
|
|
360
|
+
height: 6px;
|
|
361
|
+
margin-top: -5px;
|
|
362
|
+
position: absolute;
|
|
363
|
+
width: 6px;
|
|
364
|
+
z-index: 2;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.e-text-content + .e-sibling {
|
|
368
|
+
margin-top: -1px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.e-sibling::before {
|
|
372
|
+
@include sibling-before(ltr);
|
|
373
|
+
height: 1px;
|
|
374
|
+
position: absolute;
|
|
375
|
+
width: 144px;
|
|
376
|
+
z-index: 2;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.e-popup {
|
|
380
|
+
@include user-select;
|
|
381
|
+
font-weight: normal;
|
|
382
|
+
position: absolute;
|
|
383
|
+
z-index: 99999;
|
|
384
|
+
|
|
385
|
+
.e-content {
|
|
386
|
+
border-radius: 4px;
|
|
387
|
+
border-style: solid;
|
|
388
|
+
border-width: 1px;
|
|
389
|
+
font-size: 14px;
|
|
390
|
+
padding: 4px;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.e-icons {
|
|
394
|
+
border: 1px solid transparent;
|
|
395
|
+
cursor: pointer;
|
|
396
|
+
display: inline-block;
|
|
397
|
+
height: 26px;
|
|
398
|
+
line-height: 18px;
|
|
399
|
+
padding: 4px;
|
|
400
|
+
width: 26px;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.e-downtail::before,
|
|
404
|
+
.e-downtail::after {
|
|
405
|
+
border: 10px solid transparent;
|
|
406
|
+
content: '';
|
|
407
|
+
height: 0;
|
|
408
|
+
left: 8px;
|
|
409
|
+
position: absolute;
|
|
410
|
+
width: 0;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-downtail::after {
|
|
414
|
+
bottom: -18px;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
&.e-fullrow-wrap {
|
|
419
|
+
|
|
420
|
+
.e-text-content {
|
|
421
|
+
pointer-events: none;
|
|
422
|
+
position: relative;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.e-icon-collapsible,
|
|
426
|
+
.e-icon-expandable,
|
|
427
|
+
.e-input,
|
|
428
|
+
.e-list-url {
|
|
429
|
+
pointer-events: auto;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
&.e-drag-item {
|
|
434
|
+
overflow: visible;
|
|
435
|
+
z-index: 10000;
|
|
436
|
+
|
|
437
|
+
.e-text-content {
|
|
438
|
+
float: left;
|
|
439
|
+
}
|
|
440
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
441
|
+
.e-icon-collapsible,
|
|
442
|
+
.e-icon-expandable {
|
|
443
|
+
margin: $treeview-drag-icon-margin;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.e-icon-collapsible::before,
|
|
448
|
+
.e-icon-expandable::before {
|
|
449
|
+
font-size: $treeview-drag-icon-font-size;
|
|
450
|
+
padding: $treeview-drag-icon-padding;
|
|
451
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
452
|
+
padding-right: $treeview-drag-icon-padding-right;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.e-drop-count {
|
|
457
|
+
border: $treeview-drop-count-border-size solid;
|
|
458
|
+
border-radius: 15px;
|
|
459
|
+
box-sizing: content-box;
|
|
460
|
+
font-size: $treeview-drop-count-font-size;
|
|
461
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
462
|
+
line-height: 1.5;
|
|
463
|
+
min-width: 10px;
|
|
464
|
+
padding: 0 5px;
|
|
465
|
+
}
|
|
466
|
+
@else {
|
|
467
|
+
line-height: normal;
|
|
468
|
+
min-width: 12px;
|
|
469
|
+
padding: 3px 5px 4px;
|
|
470
|
+
}
|
|
471
|
+
margin-left: -12px;
|
|
472
|
+
position: absolute;
|
|
473
|
+
text-align: center;
|
|
474
|
+
top: -10px;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
&.e-dragging {
|
|
479
|
+
|
|
480
|
+
.e-text-content,
|
|
481
|
+
.e-fullrow {
|
|
482
|
+
cursor: default;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
&.e-rtl {
|
|
487
|
+
|
|
488
|
+
.e-ul {
|
|
489
|
+
padding: $treeview-rtl-root-ul-padding;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.e-list-item {
|
|
493
|
+
|
|
494
|
+
.e-ul {
|
|
495
|
+
padding: $treeview-rtl-child-ul-padding;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.e-text-content {
|
|
500
|
+
padding: $treeview-rtl-text-wrap-padding;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.e-checkbox-wrapper {
|
|
504
|
+
margin: $treeview-rtl-check-margin;
|
|
505
|
+
|
|
506
|
+
& + .e-list-icon,
|
|
507
|
+
& + .e-list-img {
|
|
508
|
+
margin: $treeview-rtl-check-image-margin;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.e-list-icon,
|
|
513
|
+
.e-list-img {
|
|
514
|
+
margin: $treeview-rtl-image-margin;
|
|
515
|
+
|
|
516
|
+
& + .e-list-icon,
|
|
517
|
+
& + .e-list-img {
|
|
518
|
+
margin: $treeview-rtl-icon-image-margin;
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.e-icon-collapsible,
|
|
523
|
+
.e-icon-expandable {
|
|
524
|
+
margin: $treeview-rtl-icon-margin;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.e-sibling::before {
|
|
528
|
+
@include sibling-before(rtl);
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
&.e-drag-item {
|
|
532
|
+
|
|
533
|
+
.e-text-content {
|
|
534
|
+
float: right;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.e-icon-collapsible,
|
|
538
|
+
.e-icon-expandable {
|
|
539
|
+
@if $treeview-skin-name == 'bootstrap4' {
|
|
540
|
+
margin: $treeview-rtl-drag-margin;
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.e-drop-count {
|
|
545
|
+
margin-right: -12px;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
// sass-lint:enable no-vendor-prefixes
|
|
551
|
+
}
|