@syncfusion/ej2-dropdowns 25.2.7 → 26.1.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/.eslintrc.json +3 -2
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +531 -224
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +524 -216
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +14 -13
- package/src/auto-complete/auto-complete.js +1 -1
- package/src/combo-box/combo-box.js +15 -0
- package/src/common/interface.js +0 -1
- package/src/common/virtual-scroll.js +1 -0
- package/src/drop-down-base/drop-down-base-model.d.ts +8 -1
- package/src/drop-down-base/drop-down-base.d.ts +28 -2
- package/src/drop-down-base/drop-down-base.js +64 -9
- package/src/drop-down-list/drop-down-list.d.ts +15 -2
- package/src/drop-down-list/drop-down-list.js +129 -13
- package/src/drop-down-tree/drop-down-tree-model.d.ts +15 -15
- package/src/drop-down-tree/drop-down-tree.d.ts +17 -13
- package/src/drop-down-tree/drop-down-tree.js +67 -38
- package/src/list-box/list-box.d.ts +1 -0
- package/src/list-box/list-box.js +41 -9
- package/src/mention/mention.js +23 -8
- package/src/multi-select/interface.js +0 -1
- package/src/multi-select/multi-select.d.ts +15 -0
- package/src/multi-select/multi-select.js +135 -12
- package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -0
- package/styles/auto-complete/_fluent2-definition.scss +2 -0
- package/styles/auto-complete/bootstrap-dark.css +5 -2
- package/styles/auto-complete/bootstrap.css +5 -2
- package/styles/auto-complete/bootstrap4.css +6 -2
- package/styles/auto-complete/bootstrap5-dark.css +6 -2
- package/styles/auto-complete/bootstrap5.css +6 -2
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +6 -2
- package/styles/auto-complete/fluent.css +6 -2
- package/styles/auto-complete/fluent2.css +1140 -0
- package/styles/auto-complete/fluent2.scss +4 -0
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +16 -5
- package/styles/auto-complete/material.css +16 -5
- package/styles/auto-complete/material3-dark.css +17 -6
- package/styles/auto-complete/material3.css +17 -6
- package/styles/auto-complete/tailwind-dark.css +16 -5
- package/styles/auto-complete/tailwind.css +16 -5
- package/styles/bootstrap-dark.css +197 -228
- package/styles/bootstrap-dark.scss +28 -8
- package/styles/bootstrap.css +197 -228
- package/styles/bootstrap.scss +28 -8
- package/styles/bootstrap4.css +200 -229
- package/styles/bootstrap4.scss +28 -8
- package/styles/bootstrap5-dark.css +197 -221
- package/styles/bootstrap5-dark.scss +28 -8
- package/styles/bootstrap5.css +197 -221
- package/styles/bootstrap5.scss +28 -8
- package/styles/combo-box/_bootstrap5.3-definition.scss +2 -0
- package/styles/combo-box/_fluent2-definition.scss +2 -0
- package/styles/combo-box/bootstrap-dark.css +5 -2
- package/styles/combo-box/bootstrap.css +5 -2
- package/styles/combo-box/bootstrap4.css +6 -2
- package/styles/combo-box/bootstrap5-dark.css +6 -2
- package/styles/combo-box/bootstrap5.css +6 -2
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +6 -2
- package/styles/combo-box/fluent.css +6 -2
- package/styles/combo-box/fluent2.css +1140 -0
- package/styles/combo-box/fluent2.scss +4 -0
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +16 -5
- package/styles/combo-box/material.css +16 -5
- package/styles/combo-box/material3-dark.css +17 -6
- package/styles/combo-box/material3.css +17 -6
- package/styles/combo-box/tailwind-dark.css +16 -5
- package/styles/combo-box/tailwind.css +16 -5
- package/styles/drop-down-base/_bds-definition.scss +2 -2
- package/styles/drop-down-base/_bootstrap5.3-definition.scss +117 -0
- package/styles/drop-down-base/_fluent2-definition.scss +134 -0
- package/styles/drop-down-base/_layout.scss +12 -2
- package/styles/drop-down-base/_material3-definition.scss +0 -11
- package/styles/drop-down-base/_theme.scss +2 -11
- package/styles/drop-down-base/bootstrap-dark.css +2 -1
- package/styles/drop-down-base/bootstrap.css +2 -1
- package/styles/drop-down-base/bootstrap4.css +2 -1
- package/styles/drop-down-base/bootstrap5-dark.css +2 -1
- package/styles/drop-down-base/bootstrap5.css +2 -1
- package/styles/drop-down-base/fabric-dark.css +2 -1
- package/styles/drop-down-base/fabric.css +2 -1
- package/styles/drop-down-base/fluent-dark.css +2 -1
- package/styles/drop-down-base/fluent.css +2 -1
- package/styles/drop-down-base/fluent2.css +1447 -0
- package/styles/drop-down-base/fluent2.scss +3 -0
- package/styles/drop-down-base/highcontrast-light.css +2 -1
- package/styles/drop-down-base/highcontrast.css +2 -1
- package/styles/drop-down-base/material-dark.css +2 -1
- package/styles/drop-down-base/material.css +2 -1
- package/styles/drop-down-base/material3-dark.css +9 -2
- package/styles/drop-down-base/material3.css +9 -2
- package/styles/drop-down-base/tailwind-dark.css +2 -1
- package/styles/drop-down-base/tailwind.css +2 -1
- package/styles/drop-down-list/_bootstrap5.3-definition.scss +201 -0
- package/styles/drop-down-list/_fluent2-definition.scss +134 -0
- package/styles/drop-down-list/_layout.scss +5 -3
- package/styles/drop-down-list/_material3-definition.scss +0 -8
- package/styles/drop-down-list/bootstrap-dark.css +38 -3
- package/styles/drop-down-list/bootstrap.css +38 -3
- package/styles/drop-down-list/bootstrap4.css +39 -3
- package/styles/drop-down-list/bootstrap5-dark.css +39 -3
- package/styles/drop-down-list/bootstrap5.css +39 -3
- package/styles/drop-down-list/fabric-dark.css +36 -2
- package/styles/drop-down-list/fabric.css +36 -2
- package/styles/drop-down-list/fluent-dark.css +39 -3
- package/styles/drop-down-list/fluent.css +39 -3
- package/styles/drop-down-list/fluent2.css +1684 -0
- package/styles/drop-down-list/fluent2.scss +9 -0
- package/styles/drop-down-list/highcontrast-light.css +36 -2
- package/styles/drop-down-list/highcontrast.css +36 -2
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +14 -0
- package/styles/drop-down-list/icons/_fluent2.scss +14 -0
- package/styles/drop-down-list/material-dark.css +58 -7
- package/styles/drop-down-list/material.css +72 -9
- package/styles/drop-down-list/material3-dark.css +74 -10
- package/styles/drop-down-list/material3.css +74 -10
- package/styles/drop-down-list/tailwind-dark.css +49 -6
- package/styles/drop-down-list/tailwind.css +49 -6
- package/styles/drop-down-tree/_bds-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -0
- package/styles/drop-down-tree/_bootstrap5-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap5.3-definition.scss +66 -0
- package/styles/drop-down-tree/_fluent-definition.scss +4 -0
- package/styles/drop-down-tree/_fluent2-definition.scss +75 -0
- package/styles/drop-down-tree/_layout.scss +290 -327
- package/styles/drop-down-tree/_material3-definition.scss +3 -5
- package/styles/drop-down-tree/_tailwind-definition.scss +7 -2
- package/styles/drop-down-tree/_theme.scss +24 -41
- package/styles/drop-down-tree/bootstrap-dark.css +64 -29
- package/styles/drop-down-tree/bootstrap.css +64 -29
- package/styles/drop-down-tree/bootstrap4.css +65 -30
- package/styles/drop-down-tree/bootstrap5-dark.css +64 -27
- package/styles/drop-down-tree/bootstrap5.css +64 -27
- package/styles/drop-down-tree/fabric-dark.css +64 -29
- package/styles/drop-down-tree/fabric.css +64 -29
- package/styles/drop-down-tree/fluent-dark.css +72 -35
- package/styles/drop-down-tree/fluent.css +72 -35
- package/styles/drop-down-tree/fluent2.css +1733 -0
- package/styles/drop-down-tree/fluent2.scss +9 -0
- package/styles/drop-down-tree/highcontrast-light.css +64 -29
- package/styles/drop-down-tree/highcontrast.css +64 -23
- package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -0
- package/styles/drop-down-tree/icons/_fluent2.scss +14 -0
- package/styles/drop-down-tree/material-dark.css +81 -43
- package/styles/drop-down-tree/material.css +98 -51
- package/styles/drop-down-tree/material3-dark.css +86 -32
- package/styles/drop-down-tree/material3.css +86 -32
- package/styles/drop-down-tree/tailwind-dark.css +73 -28
- package/styles/drop-down-tree/tailwind.css +73 -28
- package/styles/fabric-dark.css +195 -227
- package/styles/fabric-dark.scss +28 -8
- package/styles/fabric.css +195 -227
- package/styles/fabric.scss +28 -8
- package/styles/fluent-dark.css +207 -236
- package/styles/fluent-dark.scss +28 -8
- package/styles/fluent.css +207 -236
- package/styles/fluent.scss +28 -8
- package/styles/fluent2.css +4772 -0
- package/styles/fluent2.scss +28 -0
- package/styles/highcontrast-light.css +198 -227
- package/styles/highcontrast-light.scss +28 -8
- package/styles/highcontrast.css +198 -221
- package/styles/highcontrast.scss +28 -8
- package/styles/list-box/_bootstrap-dark-definition.scss +0 -2
- package/styles/list-box/_bootstrap5.3-definition.scss +120 -0
- package/styles/list-box/_fabric-dark-definition.scss +0 -2
- package/styles/list-box/_fluent2-definition.scss +121 -0
- package/styles/list-box/_highcontrast-light-definition.scss +0 -2
- package/styles/list-box/_layout.scss +65 -44
- package/styles/list-box/_material-dark-definition.scss +0 -2
- package/styles/list-box/_tailwind-definition.scss +1 -1
- package/styles/list-box/_theme.scss +36 -65
- package/styles/list-box/bootstrap-dark.css +72 -112
- package/styles/list-box/bootstrap.css +72 -112
- package/styles/list-box/bootstrap4.css +72 -112
- package/styles/list-box/bootstrap5-dark.css +72 -106
- package/styles/list-box/bootstrap5.css +72 -106
- package/styles/list-box/fabric-dark.css +72 -112
- package/styles/list-box/fabric.css +72 -112
- package/styles/list-box/fluent-dark.css +72 -112
- package/styles/list-box/fluent.css +72 -112
- package/styles/list-box/fluent2.css +2029 -0
- package/styles/list-box/fluent2.scss +5 -0
- package/styles/list-box/highcontrast-light.css +72 -112
- package/styles/list-box/highcontrast.css +72 -112
- package/styles/list-box/icons/_bootstrap5.3.scss +25 -0
- package/styles/list-box/icons/_fluent2.scss +25 -0
- package/styles/list-box/material-dark.css +72 -112
- package/styles/list-box/material.css +72 -112
- package/styles/list-box/material3-dark.css +73 -113
- package/styles/list-box/material3.css +73 -113
- package/styles/list-box/tailwind-dark.css +74 -114
- package/styles/list-box/tailwind.css +74 -114
- package/styles/material-dark.css +237 -260
- package/styles/material-dark.scss +28 -8
- package/styles/material.css +254 -284
- package/styles/material.scss +28 -8
- package/styles/material3-dark.css +254 -266
- package/styles/material3-dark.scss +28 -8
- package/styles/material3.css +254 -266
- package/styles/material3.scss +28 -8
- package/styles/mention/_bootstrap5.3-definition.scss +1 -0
- package/styles/mention/_fluent2-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +24 -0
- package/styles/mention/bootstrap.css +24 -0
- package/styles/mention/bootstrap4.css +24 -0
- package/styles/mention/bootstrap5-dark.css +24 -0
- package/styles/mention/bootstrap5.css +24 -0
- package/styles/mention/fabric-dark.css +24 -0
- package/styles/mention/fabric.css +24 -0
- package/styles/mention/fluent-dark.css +24 -0
- package/styles/mention/fluent.css +24 -0
- package/styles/mention/fluent2.css +1130 -0
- package/styles/mention/fluent2.scss +6 -0
- package/styles/mention/highcontrast-light.css +24 -0
- package/styles/mention/highcontrast.css +24 -0
- package/styles/mention/material-dark.css +24 -0
- package/styles/mention/material.css +24 -0
- package/styles/mention/material3-dark.css +25 -1
- package/styles/mention/material3.css +25 -1
- package/styles/mention/tailwind-dark.css +24 -0
- package/styles/mention/tailwind.css +24 -0
- package/styles/multi-select/_bootstrap5.3-definition.scss +230 -0
- package/styles/multi-select/_fluent2-definition.scss +236 -0
- package/styles/multi-select/_layout.scss +32 -38
- package/styles/multi-select/_material3-definition.scss +0 -15
- package/styles/multi-select/_theme.scss +0 -4
- package/styles/multi-select/bootstrap-dark.css +67 -28
- package/styles/multi-select/bootstrap.css +67 -28
- package/styles/multi-select/bootstrap4.css +70 -29
- package/styles/multi-select/bootstrap5-dark.css +67 -28
- package/styles/multi-select/bootstrap5.css +67 -28
- package/styles/multi-select/fabric-dark.css +67 -28
- package/styles/multi-select/fabric.css +67 -28
- package/styles/multi-select/fluent-dark.css +69 -29
- package/styles/multi-select/fluent.css +69 -29
- package/styles/multi-select/fluent2.css +2663 -0
- package/styles/multi-select/fluent2.scss +9 -0
- package/styles/multi-select/highcontrast-light.css +70 -28
- package/styles/multi-select/highcontrast.css +70 -28
- package/styles/multi-select/icons/_bootstrap5.3.scss +26 -0
- package/styles/multi-select/icons/_fluent2.scss +692 -0
- package/styles/multi-select/material-dark.css +88 -32
- package/styles/multi-select/material.css +102 -34
- package/styles/multi-select/material3-dark.css +109 -35
- package/styles/multi-select/material3.css +109 -35
- package/styles/multi-select/tailwind-dark.css +67 -28
- package/styles/multi-select/tailwind.css +67 -28
- package/styles/tailwind-dark.css +218 -233
- package/styles/tailwind-dark.scss +28 -8
- package/styles/tailwind.css +218 -233
- package/styles/tailwind.scss +28 -8
- package/CHANGELOG.md +0 -2200
|
@@ -1,24 +1,56 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes e-input-ripple {
|
|
3
|
+
100% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
-webkit-transform: scale(4);
|
|
6
|
+
transform: scale(4);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
2
9
|
@keyframes e-input-ripple {
|
|
3
10
|
100% {
|
|
4
11
|
opacity: 0;
|
|
5
|
-
transform: scale(4);
|
|
12
|
+
-webkit-transform: scale(4);
|
|
13
|
+
transform: scale(4);
|
|
6
14
|
}
|
|
7
15
|
}
|
|
8
16
|
/* stylelint-disable property-no-vendor-prefix */
|
|
17
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
18
|
+
0% {
|
|
19
|
+
-webkit-transform: rotate(0deg);
|
|
20
|
+
transform: rotate(0deg);
|
|
21
|
+
}
|
|
22
|
+
100% {
|
|
23
|
+
-webkit-transform: rotate(360deg);
|
|
24
|
+
transform: rotate(360deg);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
9
27
|
@keyframes material-spinner-rotate {
|
|
10
28
|
0% {
|
|
29
|
+
-webkit-transform: rotate(0deg);
|
|
11
30
|
transform: rotate(0deg);
|
|
12
31
|
}
|
|
13
32
|
100% {
|
|
33
|
+
-webkit-transform: rotate(360deg);
|
|
34
|
+
transform: rotate(360deg);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
38
|
+
0% {
|
|
39
|
+
-webkit-transform: rotate(0deg);
|
|
40
|
+
transform: rotate(0deg);
|
|
41
|
+
}
|
|
42
|
+
100% {
|
|
43
|
+
-webkit-transform: rotate(360deg);
|
|
14
44
|
transform: rotate(360deg);
|
|
15
45
|
}
|
|
16
46
|
}
|
|
17
47
|
@keyframes fabric-spinner-rotate {
|
|
18
48
|
0% {
|
|
49
|
+
-webkit-transform: rotate(0deg);
|
|
19
50
|
transform: rotate(0deg);
|
|
20
51
|
}
|
|
21
52
|
100% {
|
|
53
|
+
-webkit-transform: rotate(360deg);
|
|
22
54
|
transform: rotate(360deg);
|
|
23
55
|
}
|
|
24
56
|
}
|
|
@@ -48,12 +80,20 @@
|
|
|
48
80
|
outline: none;
|
|
49
81
|
}
|
|
50
82
|
.e-ddt .e-ddt-icon::before {
|
|
51
|
-
transform: rotate(0deg);
|
|
83
|
+
-webkit-transform: rotate(0deg);
|
|
84
|
+
transform: rotate(0deg);
|
|
85
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
86
|
+
transition: -webkit-transform 300ms ease;
|
|
52
87
|
transition: transform 300ms ease;
|
|
88
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
53
89
|
}
|
|
54
90
|
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
55
|
-
transform: rotate(180deg);
|
|
91
|
+
-webkit-transform: rotate(180deg);
|
|
92
|
+
transform: rotate(180deg);
|
|
93
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
94
|
+
transition: -webkit-transform 300ms ease;
|
|
56
95
|
transition: transform 300ms ease;
|
|
96
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
57
97
|
}
|
|
58
98
|
.e-ddt .e-ddt-hidden {
|
|
59
99
|
border: 0;
|
|
@@ -62,7 +102,8 @@
|
|
|
62
102
|
width: 0;
|
|
63
103
|
}
|
|
64
104
|
.e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper .e-clear-icon {
|
|
65
|
-
box-sizing: content-box;
|
|
105
|
+
-webkit-box-sizing: content-box;
|
|
106
|
+
box-sizing: content-box;
|
|
66
107
|
min-height: 22px;
|
|
67
108
|
}
|
|
68
109
|
.e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
|
|
@@ -93,6 +134,7 @@
|
|
|
93
134
|
padding-right: 0;
|
|
94
135
|
}
|
|
95
136
|
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
137
|
+
display: -webkit-box;
|
|
96
138
|
display: -ms-flexbox;
|
|
97
139
|
display: flex;
|
|
98
140
|
}
|
|
@@ -100,19 +142,22 @@
|
|
|
100
142
|
width: 100%;
|
|
101
143
|
}
|
|
102
144
|
.e-ddt.e-show-chip .e-chips-close {
|
|
103
|
-
line-height: 16px;
|
|
104
145
|
min-height: 16px;
|
|
105
146
|
min-width: 16px;
|
|
147
|
+
line-height: 16px;
|
|
106
148
|
text-align: center;
|
|
107
149
|
}
|
|
108
150
|
.e-ddt.e-show-chip .e-chips-close::before {
|
|
109
151
|
font-size: 16px;
|
|
110
152
|
}
|
|
111
153
|
.e-ddt.e-show-chip .e-chips {
|
|
112
|
-
-
|
|
113
|
-
align
|
|
154
|
+
-webkit-box-align: center;
|
|
155
|
+
-ms-flex-align: center;
|
|
156
|
+
align-items: center;
|
|
114
157
|
border-radius: 16px;
|
|
115
|
-
box-sizing: border-box;
|
|
158
|
+
-webkit-box-sizing: border-box;
|
|
159
|
+
box-sizing: border-box;
|
|
160
|
+
display: -webkit-inline-box;
|
|
116
161
|
display: -ms-inline-flexbox;
|
|
117
162
|
display: inline-flex;
|
|
118
163
|
float: left;
|
|
@@ -144,9 +189,7 @@
|
|
|
144
189
|
.e-ddt.e-outline.e-input-group.e-control-wrapper:not(.e-show-chip).e-show-dd-icon.e-input-focus .e-clear-icon, .e-ddt.e-outline.e-float-input.e-control-wrapper:not(.e-show-chip).e-show-dd-icon.e-input-focus .e-clear-icon {
|
|
145
190
|
min-height: 20px;
|
|
146
191
|
}
|
|
147
|
-
.e-ddt.e-outline.e-show-chip .e-overflow
|
|
148
|
-
padding: 4px 12px;
|
|
149
|
-
}
|
|
192
|
+
.e-ddt.e-outline.e-show-chip .e-overflow,
|
|
150
193
|
.e-ddt.e-outline.e-show-chip .e-chips-wrapper {
|
|
151
194
|
padding: 4px 12px;
|
|
152
195
|
}
|
|
@@ -172,11 +215,6 @@
|
|
|
172
215
|
bottom: 9px;
|
|
173
216
|
right: 10px;
|
|
174
217
|
}
|
|
175
|
-
.e-ddt.e-filled .e-chips-wrapper .e-chips,
|
|
176
|
-
.e-ddt.e-filled .e-overflow .e-chips {
|
|
177
|
-
margin-top: 8px;
|
|
178
|
-
padding: 0 8px;
|
|
179
|
-
}
|
|
180
218
|
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper,
|
|
181
219
|
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow {
|
|
182
220
|
padding-top: 8px;
|
|
@@ -196,6 +234,11 @@
|
|
|
196
234
|
height: 12px;
|
|
197
235
|
width: 12px;
|
|
198
236
|
}
|
|
237
|
+
.e-ddt.e-filled .e-chips-wrapper .e-chips,
|
|
238
|
+
.e-ddt.e-filled .e-overflow .e-chips {
|
|
239
|
+
margin-top: 8px;
|
|
240
|
+
padding: 0 8px;
|
|
241
|
+
}
|
|
199
242
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow.e-show-text {
|
|
200
243
|
line-height: 39px;
|
|
201
244
|
padding: 0;
|
|
@@ -218,8 +261,8 @@
|
|
|
218
261
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
219
262
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips-close::before {
|
|
220
263
|
font-size: 14px;
|
|
221
|
-
height:
|
|
222
|
-
width:
|
|
264
|
+
height: 12px;
|
|
265
|
+
width: 12px;
|
|
223
266
|
}
|
|
224
267
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text .e-ddt-icon, .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip .e-ddt-icon {
|
|
225
268
|
bottom: 10px;
|
|
@@ -240,7 +283,8 @@
|
|
|
240
283
|
padding: 6px 0 0 0;
|
|
241
284
|
}
|
|
242
285
|
.e-ddt .e-overflow.e-total-count {
|
|
243
|
-
box-sizing: border-box;
|
|
286
|
+
-webkit-box-sizing: border-box;
|
|
287
|
+
box-sizing: border-box;
|
|
244
288
|
display: inline-block;
|
|
245
289
|
overflow: hidden;
|
|
246
290
|
text-overflow: ellipsis;
|
|
@@ -284,10 +328,12 @@
|
|
|
284
328
|
.e-ddt .e-dropdowntree.e-chip-input,
|
|
285
329
|
.e-ddt input[readonly].e-input.e-chip-input {
|
|
286
330
|
width: 0;
|
|
331
|
+
display: none;
|
|
287
332
|
}
|
|
288
333
|
.e-ddt.e-popup {
|
|
289
334
|
border: 1px solid transparent;
|
|
290
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
335
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
336
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
291
337
|
position: absolute;
|
|
292
338
|
}
|
|
293
339
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -313,14 +359,15 @@
|
|
|
313
359
|
font-size: 14px;
|
|
314
360
|
margin: 10px;
|
|
315
361
|
}
|
|
316
|
-
.e-ddt.e-popup .e-filter-wrap .e-input, .e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
317
|
-
padding: 8px 16px 8px;
|
|
318
|
-
}
|
|
319
362
|
.e-ddt.e-popup .e-filter-wrap {
|
|
320
|
-
border: 0;
|
|
321
363
|
border-top-width: 0;
|
|
322
364
|
display: block;
|
|
323
365
|
padding: 0;
|
|
366
|
+
border: 0;
|
|
367
|
+
}
|
|
368
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
369
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
370
|
+
padding: 8px 16px 8px;
|
|
324
371
|
}
|
|
325
372
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
326
373
|
margin-bottom: 0;
|
|
@@ -342,8 +389,8 @@
|
|
|
342
389
|
cursor: default;
|
|
343
390
|
font-family: inherit;
|
|
344
391
|
font-size: 14px;
|
|
345
|
-
padding: 14px 16px;
|
|
346
392
|
text-align: center;
|
|
393
|
+
padding: 14px 16px;
|
|
347
394
|
}
|
|
348
395
|
.e-ddt.e-popup .e-popup-content.e-no-data .e-treeview {
|
|
349
396
|
display: none;
|
|
@@ -435,16 +482,16 @@
|
|
|
435
482
|
right: auto;
|
|
436
483
|
}
|
|
437
484
|
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
438
|
-
margin-left: 18px;
|
|
439
485
|
margin-right: 1px;
|
|
486
|
+
margin-left: 18px;
|
|
440
487
|
}
|
|
441
488
|
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
442
|
-
margin-left: 26px;
|
|
443
489
|
margin-right: 1px;
|
|
490
|
+
margin-left: 26px;
|
|
444
491
|
}
|
|
445
492
|
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
446
|
-
margin-left: 45px;
|
|
447
493
|
margin-right: 1px;
|
|
494
|
+
margin-left: 45px;
|
|
448
495
|
}
|
|
449
496
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
450
497
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-text .e-clear-icon,
|
|
@@ -492,11 +539,8 @@
|
|
|
492
539
|
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
493
540
|
padding: 11px 0 0 0;
|
|
494
541
|
}
|
|
495
|
-
.e-bigger .e-ddt.e-outline .e-overflow.e-show-text,
|
|
496
|
-
.e-ddt.e-bigger.e-outline .e-overflow.e-show-text
|
|
497
|
-
padding: 15px 16px;
|
|
498
|
-
}
|
|
499
|
-
.e-bigger .e-ddt.e-outline .e-overflow.e-total-count,
|
|
542
|
+
.e-bigger .e-ddt.e-outline .e-overflow.e-show-text, .e-bigger .e-ddt.e-outline .e-overflow.e-total-count,
|
|
543
|
+
.e-ddt.e-bigger.e-outline .e-overflow.e-show-text,
|
|
500
544
|
.e-ddt.e-bigger.e-outline .e-overflow.e-total-count {
|
|
501
545
|
padding: 15px 16px;
|
|
502
546
|
}
|
|
@@ -694,18 +738,18 @@
|
|
|
694
738
|
}
|
|
695
739
|
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
696
740
|
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
697
|
-
margin-left: 20px;
|
|
698
741
|
margin-right: 1px;
|
|
742
|
+
margin-left: 20px;
|
|
699
743
|
}
|
|
700
744
|
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
701
745
|
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
702
|
-
margin-left: 32px;
|
|
703
746
|
margin-right: 1px;
|
|
747
|
+
margin-left: 32px;
|
|
704
748
|
}
|
|
705
749
|
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
706
750
|
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
707
|
-
margin-
|
|
708
|
-
margin-
|
|
751
|
+
margin-right: 52px;
|
|
752
|
+
margin-left: 1px;
|
|
709
753
|
}
|
|
710
754
|
.e-bigger .e-ddt.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-rtl.e-show-text.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
711
755
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
@@ -723,12 +767,6 @@
|
|
|
723
767
|
.e-ddt .e-chips > .e-chipcontent {
|
|
724
768
|
color: #fff;
|
|
725
769
|
}
|
|
726
|
-
.e-ddt .e-chips:hover {
|
|
727
|
-
background-color: rgba(255, 255, 255, 0.1);
|
|
728
|
-
}
|
|
729
|
-
.e-ddt .e-chips:hover > .e-chipcontent {
|
|
730
|
-
color: #fff;
|
|
731
|
-
}
|
|
732
770
|
.e-ddt.e-filled .e-chips {
|
|
733
771
|
background-color: #424242;
|
|
734
772
|
}
|
|
@@ -1,32 +1,76 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes e-input-ripple {
|
|
3
|
+
100% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
-webkit-transform: scale(4);
|
|
6
|
+
transform: scale(4);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
2
9
|
@keyframes e-input-ripple {
|
|
3
10
|
100% {
|
|
4
11
|
opacity: 0;
|
|
5
|
-
transform: scale(4);
|
|
12
|
+
-webkit-transform: scale(4);
|
|
13
|
+
transform: scale(4);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
@-webkit-keyframes slideTopUp {
|
|
17
|
+
from {
|
|
18
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
19
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
20
|
+
}
|
|
21
|
+
to {
|
|
22
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
23
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
6
24
|
}
|
|
7
25
|
}
|
|
8
26
|
@keyframes slideTopUp {
|
|
9
27
|
from {
|
|
10
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
28
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
29
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
11
30
|
}
|
|
12
31
|
to {
|
|
13
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
32
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
33
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
14
34
|
}
|
|
15
35
|
}
|
|
16
36
|
/* stylelint-disable property-no-vendor-prefix */
|
|
37
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
38
|
+
0% {
|
|
39
|
+
-webkit-transform: rotate(0deg);
|
|
40
|
+
transform: rotate(0deg);
|
|
41
|
+
}
|
|
42
|
+
100% {
|
|
43
|
+
-webkit-transform: rotate(360deg);
|
|
44
|
+
transform: rotate(360deg);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
17
47
|
@keyframes material-spinner-rotate {
|
|
18
48
|
0% {
|
|
49
|
+
-webkit-transform: rotate(0deg);
|
|
50
|
+
transform: rotate(0deg);
|
|
51
|
+
}
|
|
52
|
+
100% {
|
|
53
|
+
-webkit-transform: rotate(360deg);
|
|
54
|
+
transform: rotate(360deg);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
58
|
+
0% {
|
|
59
|
+
-webkit-transform: rotate(0deg);
|
|
19
60
|
transform: rotate(0deg);
|
|
20
61
|
}
|
|
21
62
|
100% {
|
|
63
|
+
-webkit-transform: rotate(360deg);
|
|
22
64
|
transform: rotate(360deg);
|
|
23
65
|
}
|
|
24
66
|
}
|
|
25
67
|
@keyframes fabric-spinner-rotate {
|
|
26
68
|
0% {
|
|
69
|
+
-webkit-transform: rotate(0deg);
|
|
27
70
|
transform: rotate(0deg);
|
|
28
71
|
}
|
|
29
72
|
100% {
|
|
73
|
+
-webkit-transform: rotate(360deg);
|
|
30
74
|
transform: rotate(360deg);
|
|
31
75
|
}
|
|
32
76
|
}
|
|
@@ -57,12 +101,20 @@
|
|
|
57
101
|
outline: none;
|
|
58
102
|
}
|
|
59
103
|
.e-ddt .e-ddt-icon::before {
|
|
60
|
-
transform: rotate(0deg);
|
|
104
|
+
-webkit-transform: rotate(0deg);
|
|
105
|
+
transform: rotate(0deg);
|
|
106
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
107
|
+
transition: -webkit-transform 300ms ease;
|
|
61
108
|
transition: transform 300ms ease;
|
|
109
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
62
110
|
}
|
|
63
111
|
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
64
|
-
transform: rotate(180deg);
|
|
112
|
+
-webkit-transform: rotate(180deg);
|
|
113
|
+
transform: rotate(180deg);
|
|
114
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
115
|
+
transition: -webkit-transform 300ms ease;
|
|
65
116
|
transition: transform 300ms ease;
|
|
117
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
66
118
|
}
|
|
67
119
|
.e-ddt .e-ddt-hidden {
|
|
68
120
|
border: 0;
|
|
@@ -71,7 +123,8 @@
|
|
|
71
123
|
width: 0;
|
|
72
124
|
}
|
|
73
125
|
.e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper .e-clear-icon {
|
|
74
|
-
box-sizing: content-box;
|
|
126
|
+
-webkit-box-sizing: content-box;
|
|
127
|
+
box-sizing: content-box;
|
|
75
128
|
min-height: 22px;
|
|
76
129
|
}
|
|
77
130
|
.e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
|
|
@@ -102,6 +155,7 @@
|
|
|
102
155
|
padding-right: 0;
|
|
103
156
|
}
|
|
104
157
|
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
158
|
+
display: -webkit-box;
|
|
105
159
|
display: -ms-flexbox;
|
|
106
160
|
display: flex;
|
|
107
161
|
}
|
|
@@ -109,19 +163,22 @@
|
|
|
109
163
|
width: 100%;
|
|
110
164
|
}
|
|
111
165
|
.e-ddt.e-show-chip .e-chips-close {
|
|
112
|
-
line-height: 16px;
|
|
113
166
|
min-height: 16px;
|
|
114
167
|
min-width: 16px;
|
|
168
|
+
line-height: 16px;
|
|
115
169
|
text-align: center;
|
|
116
170
|
}
|
|
117
171
|
.e-ddt.e-show-chip .e-chips-close::before {
|
|
118
172
|
font-size: 16px;
|
|
119
173
|
}
|
|
120
174
|
.e-ddt.e-show-chip .e-chips {
|
|
121
|
-
-
|
|
122
|
-
align
|
|
175
|
+
-webkit-box-align: center;
|
|
176
|
+
-ms-flex-align: center;
|
|
177
|
+
align-items: center;
|
|
123
178
|
border-radius: 16px;
|
|
124
|
-
box-sizing: border-box;
|
|
179
|
+
-webkit-box-sizing: border-box;
|
|
180
|
+
box-sizing: border-box;
|
|
181
|
+
display: -webkit-inline-box;
|
|
125
182
|
display: -ms-inline-flexbox;
|
|
126
183
|
display: inline-flex;
|
|
127
184
|
float: left;
|
|
@@ -153,9 +210,7 @@
|
|
|
153
210
|
.e-ddt.e-outline.e-input-group.e-control-wrapper:not(.e-show-chip).e-show-dd-icon.e-input-focus .e-clear-icon, .e-ddt.e-outline.e-float-input.e-control-wrapper:not(.e-show-chip).e-show-dd-icon.e-input-focus .e-clear-icon {
|
|
154
211
|
min-height: 20px;
|
|
155
212
|
}
|
|
156
|
-
.e-ddt.e-outline.e-show-chip .e-overflow
|
|
157
|
-
padding: 4px 12px;
|
|
158
|
-
}
|
|
213
|
+
.e-ddt.e-outline.e-show-chip .e-overflow,
|
|
159
214
|
.e-ddt.e-outline.e-show-chip .e-chips-wrapper {
|
|
160
215
|
padding: 4px 12px;
|
|
161
216
|
}
|
|
@@ -181,11 +236,6 @@
|
|
|
181
236
|
bottom: 9px;
|
|
182
237
|
right: 10px;
|
|
183
238
|
}
|
|
184
|
-
.e-ddt.e-filled .e-chips-wrapper .e-chips,
|
|
185
|
-
.e-ddt.e-filled .e-overflow .e-chips {
|
|
186
|
-
margin-top: 8px;
|
|
187
|
-
padding: 0 8px;
|
|
188
|
-
}
|
|
189
239
|
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper,
|
|
190
240
|
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow {
|
|
191
241
|
padding-top: 8px;
|
|
@@ -205,6 +255,11 @@
|
|
|
205
255
|
height: 12px;
|
|
206
256
|
width: 12px;
|
|
207
257
|
}
|
|
258
|
+
.e-ddt.e-filled .e-chips-wrapper .e-chips,
|
|
259
|
+
.e-ddt.e-filled .e-overflow .e-chips {
|
|
260
|
+
margin-top: 8px;
|
|
261
|
+
padding: 0 8px;
|
|
262
|
+
}
|
|
208
263
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow.e-show-text {
|
|
209
264
|
line-height: 39px;
|
|
210
265
|
padding: 0;
|
|
@@ -227,8 +282,8 @@
|
|
|
227
282
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
228
283
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips-close::before {
|
|
229
284
|
font-size: 14px;
|
|
230
|
-
height:
|
|
231
|
-
width:
|
|
285
|
+
height: 12px;
|
|
286
|
+
width: 12px;
|
|
232
287
|
}
|
|
233
288
|
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text .e-ddt-icon, .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip .e-ddt-icon {
|
|
234
289
|
bottom: 10px;
|
|
@@ -249,7 +304,8 @@
|
|
|
249
304
|
padding: 6px 0 0 0;
|
|
250
305
|
}
|
|
251
306
|
.e-ddt .e-overflow.e-total-count {
|
|
252
|
-
box-sizing: border-box;
|
|
307
|
+
-webkit-box-sizing: border-box;
|
|
308
|
+
box-sizing: border-box;
|
|
253
309
|
display: inline-block;
|
|
254
310
|
overflow: hidden;
|
|
255
311
|
text-overflow: ellipsis;
|
|
@@ -293,9 +349,11 @@
|
|
|
293
349
|
.e-ddt .e-dropdowntree.e-chip-input,
|
|
294
350
|
.e-ddt input[readonly].e-input.e-chip-input {
|
|
295
351
|
width: 0;
|
|
352
|
+
display: none;
|
|
296
353
|
}
|
|
297
354
|
.e-ddt.e-popup {
|
|
298
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
355
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
356
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
299
357
|
position: absolute;
|
|
300
358
|
}
|
|
301
359
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -321,21 +379,15 @@
|
|
|
321
379
|
font-size: 14px;
|
|
322
380
|
margin: 10px;
|
|
323
381
|
}
|
|
324
|
-
.e-ddt.e-popup .e-filter-wrap .e-input, .e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
325
|
-
padding: 8px 16px 8px;
|
|
326
|
-
}
|
|
327
382
|
.e-ddt.e-popup .e-filter-wrap {
|
|
328
|
-
border: 0;
|
|
329
383
|
border-top-width: 0;
|
|
330
384
|
display: block;
|
|
331
385
|
padding: 0;
|
|
386
|
+
border: 0;
|
|
332
387
|
}
|
|
333
|
-
.e-ddt.e-popup .e-filter-wrap .e-input
|
|
334
|
-
.e-ddt.e-popup .e-filter-wrap .e-input
|
|
335
|
-
|
|
336
|
-
.e-ddt.e-popup .e-filter-wrap .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
|
|
337
|
-
bottom: -1px;
|
|
338
|
-
height: 1px;
|
|
388
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
389
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
390
|
+
padding: 8px 16px 8px;
|
|
339
391
|
}
|
|
340
392
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
341
393
|
margin-bottom: 0;
|
|
@@ -346,6 +398,10 @@
|
|
|
346
398
|
min-width: 12px;
|
|
347
399
|
padding: 6px;
|
|
348
400
|
}
|
|
401
|
+
.e-ddt.e-popup .e-filter-wrap .e-input-group:not(.e-disabled):not(.e-float-icon-left)::before, .e-ddt.e-popup .e-filter-wrap .e-input-group:not(.e-disabled):not(.e-float-icon-left)::after, .e-ddt.e-popup .e-filter-wrap .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before, .e-ddt.e-popup .e-filter-wrap .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
|
|
402
|
+
bottom: -1px;
|
|
403
|
+
height: 1px;
|
|
404
|
+
}
|
|
349
405
|
.e-ddt.e-popup .e-popup-content {
|
|
350
406
|
overflow: auto;
|
|
351
407
|
position: relative;
|
|
@@ -357,8 +413,8 @@
|
|
|
357
413
|
cursor: default;
|
|
358
414
|
font-family: inherit;
|
|
359
415
|
font-size: 14px;
|
|
360
|
-
padding: 14px 16px;
|
|
361
416
|
text-align: center;
|
|
417
|
+
padding: 14px 16px;
|
|
362
418
|
}
|
|
363
419
|
.e-ddt.e-popup .e-popup-content.e-no-data .e-treeview {
|
|
364
420
|
display: none;
|
|
@@ -450,16 +506,16 @@
|
|
|
450
506
|
right: auto;
|
|
451
507
|
}
|
|
452
508
|
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
453
|
-
margin-left: 18px;
|
|
454
509
|
margin-right: 1px;
|
|
510
|
+
margin-left: 18px;
|
|
455
511
|
}
|
|
456
512
|
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
457
|
-
margin-left: 26px;
|
|
458
513
|
margin-right: 1px;
|
|
514
|
+
margin-left: 26px;
|
|
459
515
|
}
|
|
460
516
|
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
461
|
-
margin-left: 45px;
|
|
462
517
|
margin-right: 1px;
|
|
518
|
+
margin-left: 45px;
|
|
463
519
|
}
|
|
464
520
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
465
521
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-text .e-clear-icon,
|
|
@@ -507,11 +563,8 @@
|
|
|
507
563
|
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
508
564
|
padding: 8px 0 0 0;
|
|
509
565
|
}
|
|
510
|
-
.e-bigger .e-ddt.e-outline .e-overflow.e-show-text,
|
|
511
|
-
.e-ddt.e-bigger.e-outline .e-overflow.e-show-text
|
|
512
|
-
padding: 15px 16px;
|
|
513
|
-
}
|
|
514
|
-
.e-bigger .e-ddt.e-outline .e-overflow.e-total-count,
|
|
566
|
+
.e-bigger .e-ddt.e-outline .e-overflow.e-show-text, .e-bigger .e-ddt.e-outline .e-overflow.e-total-count,
|
|
567
|
+
.e-ddt.e-bigger.e-outline .e-overflow.e-show-text,
|
|
515
568
|
.e-ddt.e-bigger.e-outline .e-overflow.e-total-count {
|
|
516
569
|
padding: 15px 16px;
|
|
517
570
|
}
|
|
@@ -709,18 +762,18 @@
|
|
|
709
762
|
}
|
|
710
763
|
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
711
764
|
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
712
|
-
margin-left: 20px;
|
|
713
765
|
margin-right: 1px;
|
|
766
|
+
margin-left: 20px;
|
|
714
767
|
}
|
|
715
768
|
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
716
769
|
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
717
|
-
margin-left: 32px;
|
|
718
770
|
margin-right: 1px;
|
|
771
|
+
margin-left: 32px;
|
|
719
772
|
}
|
|
720
773
|
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
721
774
|
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
722
|
-
margin-
|
|
723
|
-
margin-
|
|
775
|
+
margin-right: 52px;
|
|
776
|
+
margin-left: 1px;
|
|
724
777
|
}
|
|
725
778
|
.e-bigger .e-ddt.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-rtl.e-show-text.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
726
779
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
@@ -738,12 +791,6 @@
|
|
|
738
791
|
.e-ddt .e-chips > .e-chipcontent {
|
|
739
792
|
color: rgba(0, 0, 0, 0.87);
|
|
740
793
|
}
|
|
741
|
-
.e-ddt .e-chips:hover {
|
|
742
|
-
background-color: #d6d6d6;
|
|
743
|
-
}
|
|
744
|
-
.e-ddt .e-chips:hover > .e-chipcontent {
|
|
745
|
-
color: rgba(0, 0, 0, 0.87);
|
|
746
|
-
}
|
|
747
794
|
.e-ddt.e-filled .e-chips {
|
|
748
795
|
background-color: #cecece;
|
|
749
796
|
}
|