@syncfusion/ej2-dropdowns 25.2.7 → 26.1.35
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 +505 -224
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +498 -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 +52 -38
- package/src/list-box/list-box.js +30 -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 +196 -228
- package/styles/bootstrap-dark.scss +28 -8
- package/styles/bootstrap.css +196 -228
- package/styles/bootstrap.scss +28 -8
- package/styles/bootstrap4.css +199 -229
- package/styles/bootstrap4.scss +28 -8
- package/styles/bootstrap5-dark.css +196 -221
- package/styles/bootstrap5-dark.scss +28 -8
- package/styles/bootstrap5.css +196 -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 +289 -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 +63 -29
- package/styles/drop-down-tree/bootstrap.css +63 -29
- package/styles/drop-down-tree/bootstrap4.css +64 -30
- package/styles/drop-down-tree/bootstrap5-dark.css +63 -27
- package/styles/drop-down-tree/bootstrap5.css +63 -27
- package/styles/drop-down-tree/fabric-dark.css +63 -29
- package/styles/drop-down-tree/fabric.css +63 -29
- package/styles/drop-down-tree/fluent-dark.css +71 -35
- package/styles/drop-down-tree/fluent.css +71 -35
- package/styles/drop-down-tree/fluent2.css +1732 -0
- package/styles/drop-down-tree/fluent2.scss +9 -0
- package/styles/drop-down-tree/highcontrast-light.css +63 -29
- package/styles/drop-down-tree/highcontrast.css +63 -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 +80 -43
- package/styles/drop-down-tree/material.css +97 -51
- package/styles/drop-down-tree/material3-dark.css +85 -32
- package/styles/drop-down-tree/material3.css +85 -32
- package/styles/drop-down-tree/tailwind-dark.css +72 -28
- package/styles/drop-down-tree/tailwind.css +72 -28
- package/styles/fabric-dark.css +194 -227
- package/styles/fabric-dark.scss +28 -8
- package/styles/fabric.css +194 -227
- package/styles/fabric.scss +28 -8
- package/styles/fluent-dark.css +206 -236
- package/styles/fluent-dark.scss +28 -8
- package/styles/fluent.css +206 -236
- package/styles/fluent.scss +28 -8
- package/styles/fluent2.css +4771 -0
- package/styles/fluent2.scss +28 -0
- package/styles/highcontrast-light.css +197 -227
- package/styles/highcontrast-light.scss +28 -8
- package/styles/highcontrast.css +197 -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 +236 -260
- package/styles/material-dark.scss +28 -8
- package/styles/material.css +253 -284
- package/styles/material.scss +28 -8
- package/styles/material3-dark.css +253 -266
- package/styles/material3-dark.scss +28 -8
- package/styles/material3.css +253 -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 +217 -233
- package/styles/tailwind-dark.scss +28 -8
- package/styles/tailwind.css +217 -233
- package/styles/tailwind.scss +28 -8
- package/CHANGELOG.md +0 -2200
|
@@ -1,18 +1,42 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
4
|
+
0% {
|
|
5
|
+
-webkit-transform: rotate(0);
|
|
6
|
+
transform: rotate(0);
|
|
7
|
+
}
|
|
8
|
+
100% {
|
|
9
|
+
-webkit-transform: rotate(360deg);
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
3
13
|
@keyframes material-spinner-rotate {
|
|
4
14
|
0% {
|
|
15
|
+
-webkit-transform: rotate(0);
|
|
5
16
|
transform: rotate(0);
|
|
6
17
|
}
|
|
7
18
|
100% {
|
|
19
|
+
-webkit-transform: rotate(360deg);
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
-webkit-transform: rotate(0);
|
|
26
|
+
transform: rotate(0);
|
|
27
|
+
}
|
|
28
|
+
100% {
|
|
29
|
+
-webkit-transform: rotate(360deg);
|
|
8
30
|
transform: rotate(360deg);
|
|
9
31
|
}
|
|
10
32
|
}
|
|
11
33
|
@keyframes fabric-spinner-rotate {
|
|
12
34
|
0% {
|
|
35
|
+
-webkit-transform: rotate(0);
|
|
13
36
|
transform: rotate(0);
|
|
14
37
|
}
|
|
15
38
|
100% {
|
|
39
|
+
-webkit-transform: rotate(360deg);
|
|
16
40
|
transform: rotate(360deg);
|
|
17
41
|
}
|
|
18
42
|
}
|
|
@@ -43,12 +67,20 @@
|
|
|
43
67
|
outline: none;
|
|
44
68
|
}
|
|
45
69
|
.e-ddt .e-ddt-icon::before {
|
|
46
|
-
transform: rotate(0deg);
|
|
70
|
+
-webkit-transform: rotate(0deg);
|
|
71
|
+
transform: rotate(0deg);
|
|
72
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
73
|
+
transition: -webkit-transform 300ms ease;
|
|
47
74
|
transition: transform 300ms ease;
|
|
75
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
48
76
|
}
|
|
49
77
|
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
50
|
-
transform: rotate(180deg);
|
|
78
|
+
-webkit-transform: rotate(180deg);
|
|
79
|
+
transform: rotate(180deg);
|
|
80
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
81
|
+
transition: -webkit-transform 300ms ease;
|
|
51
82
|
transition: transform 300ms ease;
|
|
83
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
52
84
|
}
|
|
53
85
|
.e-ddt .e-ddt-hidden {
|
|
54
86
|
border: 0;
|
|
@@ -57,7 +89,8 @@
|
|
|
57
89
|
width: 0;
|
|
58
90
|
}
|
|
59
91
|
.e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper .e-clear-icon {
|
|
60
|
-
box-sizing: content-box;
|
|
92
|
+
-webkit-box-sizing: content-box;
|
|
93
|
+
box-sizing: content-box;
|
|
61
94
|
min-height: 30px;
|
|
62
95
|
}
|
|
63
96
|
.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 {
|
|
@@ -88,6 +121,7 @@
|
|
|
88
121
|
padding-right: 0;
|
|
89
122
|
}
|
|
90
123
|
.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 {
|
|
124
|
+
display: -webkit-box;
|
|
91
125
|
display: -ms-flexbox;
|
|
92
126
|
display: flex;
|
|
93
127
|
}
|
|
@@ -95,20 +129,25 @@
|
|
|
95
129
|
width: 100%;
|
|
96
130
|
}
|
|
97
131
|
.e-ddt.e-show-chip .e-chips-close {
|
|
98
|
-
line-height: 23px;
|
|
99
132
|
min-height: 26px;
|
|
100
133
|
min-width: 18px;
|
|
134
|
+
line-height: 23px;
|
|
101
135
|
text-align: center;
|
|
102
136
|
}
|
|
103
137
|
.e-ddt.e-show-chip .e-chips-close::before {
|
|
104
138
|
font-size: 10px;
|
|
139
|
+
}
|
|
140
|
+
.e-ddt.e-show-chip .e-chips-close::before {
|
|
105
141
|
vertical-align: middle;
|
|
106
142
|
}
|
|
107
143
|
.e-ddt.e-show-chip .e-chips {
|
|
108
|
-
-
|
|
109
|
-
align
|
|
144
|
+
-webkit-box-align: center;
|
|
145
|
+
-ms-flex-align: center;
|
|
146
|
+
align-items: center;
|
|
110
147
|
border-radius: 0;
|
|
111
|
-
box-sizing: border-box;
|
|
148
|
+
-webkit-box-sizing: border-box;
|
|
149
|
+
box-sizing: border-box;
|
|
150
|
+
display: -webkit-inline-box;
|
|
112
151
|
display: -ms-inline-flexbox;
|
|
113
152
|
display: inline-flex;
|
|
114
153
|
float: left;
|
|
@@ -136,7 +175,8 @@
|
|
|
136
175
|
padding: 6px 10px 0 10px;
|
|
137
176
|
}
|
|
138
177
|
.e-ddt .e-overflow.e-total-count {
|
|
139
|
-
box-sizing: border-box;
|
|
178
|
+
-webkit-box-sizing: border-box;
|
|
179
|
+
box-sizing: border-box;
|
|
140
180
|
display: inline-block;
|
|
141
181
|
overflow: hidden;
|
|
142
182
|
text-overflow: ellipsis;
|
|
@@ -183,7 +223,8 @@
|
|
|
183
223
|
}
|
|
184
224
|
.e-ddt.e-popup {
|
|
185
225
|
border: 1px solid #414040;
|
|
186
|
-
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);
|
|
226
|
+
-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);
|
|
227
|
+
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);
|
|
187
228
|
position: absolute;
|
|
188
229
|
}
|
|
189
230
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -209,19 +250,18 @@
|
|
|
209
250
|
font-size: 14px;
|
|
210
251
|
margin: 10px;
|
|
211
252
|
}
|
|
212
|
-
.e-ddt.e-popup .e-filter-wrap .e-input, .e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
213
|
-
padding: 0 12px;
|
|
214
|
-
}
|
|
215
253
|
.e-ddt.e-popup .e-filter-wrap {
|
|
216
|
-
border: 1px solid #414040;
|
|
217
254
|
border-top-width: 0;
|
|
218
255
|
display: block;
|
|
219
256
|
padding: 5px;
|
|
220
|
-
|
|
221
|
-
.e-ddt.e-popup .e-filter-wrap {
|
|
257
|
+
border: 1px solid #414040;
|
|
222
258
|
border-left-width: 0;
|
|
223
259
|
border-right-width: 0;
|
|
224
260
|
}
|
|
261
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
262
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
263
|
+
padding: 0 12px;
|
|
264
|
+
}
|
|
225
265
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
226
266
|
margin-bottom: 0;
|
|
227
267
|
}
|
|
@@ -236,8 +276,8 @@
|
|
|
236
276
|
cursor: default;
|
|
237
277
|
font-family: inherit;
|
|
238
278
|
font-size: 14px;
|
|
239
|
-
padding: 14px 16px;
|
|
240
279
|
text-align: center;
|
|
280
|
+
padding: 14px 16px;
|
|
241
281
|
}
|
|
242
282
|
.e-ddt.e-popup .e-popup-content.e-no-data .e-treeview {
|
|
243
283
|
display: none;
|
|
@@ -291,16 +331,16 @@
|
|
|
291
331
|
padding: 6px 10px 0 10px;
|
|
292
332
|
}
|
|
293
333
|
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
294
|
-
margin-left: 30px;
|
|
295
334
|
margin-right: 1px;
|
|
335
|
+
margin-left: 30px;
|
|
296
336
|
}
|
|
297
337
|
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
298
|
-
margin-left: 30px;
|
|
299
338
|
margin-right: 1px;
|
|
339
|
+
margin-left: 30px;
|
|
300
340
|
}
|
|
301
341
|
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
302
|
-
margin-left: 60px;
|
|
303
342
|
margin-right: 1px;
|
|
343
|
+
margin-left: 60px;
|
|
304
344
|
}
|
|
305
345
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
306
346
|
.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,
|
|
@@ -373,18 +413,18 @@
|
|
|
373
413
|
}
|
|
374
414
|
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
375
415
|
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
376
|
-
margin-left: 38px;
|
|
377
416
|
margin-right: 1px;
|
|
417
|
+
margin-left: 38px;
|
|
378
418
|
}
|
|
379
419
|
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
380
420
|
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
381
|
-
margin-left: 38px;
|
|
382
421
|
margin-right: 1px;
|
|
422
|
+
margin-left: 38px;
|
|
383
423
|
}
|
|
384
424
|
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
385
425
|
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
386
|
-
margin-
|
|
387
|
-
margin-
|
|
426
|
+
margin-right: 76px;
|
|
427
|
+
margin-left: 1px;
|
|
388
428
|
}
|
|
389
429
|
.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,
|
|
390
430
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
@@ -402,12 +442,6 @@
|
|
|
402
442
|
.e-ddt .e-chips > .e-chipcontent {
|
|
403
443
|
color: #dadada;
|
|
404
444
|
}
|
|
405
|
-
.e-ddt .e-chips:hover {
|
|
406
|
-
background-color: #514f4f;
|
|
407
|
-
}
|
|
408
|
-
.e-ddt .e-chips:hover > .e-chipcontent {
|
|
409
|
-
color: #fff;
|
|
410
|
-
}
|
|
411
445
|
.e-ddt .e-overflow .e-remain {
|
|
412
446
|
color: #9a9a9a;
|
|
413
447
|
}
|
|
@@ -1,18 +1,42 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
4
|
+
0% {
|
|
5
|
+
-webkit-transform: rotate(0);
|
|
6
|
+
transform: rotate(0);
|
|
7
|
+
}
|
|
8
|
+
100% {
|
|
9
|
+
-webkit-transform: rotate(360deg);
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
3
13
|
@keyframes material-spinner-rotate {
|
|
4
14
|
0% {
|
|
15
|
+
-webkit-transform: rotate(0);
|
|
16
|
+
transform: rotate(0);
|
|
17
|
+
}
|
|
18
|
+
100% {
|
|
19
|
+
-webkit-transform: rotate(360deg);
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
-webkit-transform: rotate(0);
|
|
5
26
|
transform: rotate(0);
|
|
6
27
|
}
|
|
7
28
|
100% {
|
|
29
|
+
-webkit-transform: rotate(360deg);
|
|
8
30
|
transform: rotate(360deg);
|
|
9
31
|
}
|
|
10
32
|
}
|
|
11
33
|
@keyframes fabric-spinner-rotate {
|
|
12
34
|
0% {
|
|
35
|
+
-webkit-transform: rotate(0);
|
|
13
36
|
transform: rotate(0);
|
|
14
37
|
}
|
|
15
38
|
100% {
|
|
39
|
+
-webkit-transform: rotate(360deg);
|
|
16
40
|
transform: rotate(360deg);
|
|
17
41
|
}
|
|
18
42
|
}
|
|
@@ -44,12 +68,20 @@
|
|
|
44
68
|
outline: none;
|
|
45
69
|
}
|
|
46
70
|
.e-ddt .e-ddt-icon::before {
|
|
47
|
-
transform: rotate(0deg);
|
|
71
|
+
-webkit-transform: rotate(0deg);
|
|
72
|
+
transform: rotate(0deg);
|
|
73
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
74
|
+
transition: -webkit-transform 300ms ease;
|
|
48
75
|
transition: transform 300ms ease;
|
|
76
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
49
77
|
}
|
|
50
78
|
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
51
|
-
transform: rotate(180deg);
|
|
79
|
+
-webkit-transform: rotate(180deg);
|
|
80
|
+
transform: rotate(180deg);
|
|
81
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
82
|
+
transition: -webkit-transform 300ms ease;
|
|
52
83
|
transition: transform 300ms ease;
|
|
84
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
53
85
|
}
|
|
54
86
|
.e-ddt .e-ddt-hidden {
|
|
55
87
|
border: 0;
|
|
@@ -58,7 +90,8 @@
|
|
|
58
90
|
width: 0;
|
|
59
91
|
}
|
|
60
92
|
.e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper .e-clear-icon {
|
|
61
|
-
box-sizing: content-box;
|
|
93
|
+
-webkit-box-sizing: content-box;
|
|
94
|
+
box-sizing: content-box;
|
|
62
95
|
min-height: 30px;
|
|
63
96
|
}
|
|
64
97
|
.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 {
|
|
@@ -89,6 +122,7 @@
|
|
|
89
122
|
padding-right: 0;
|
|
90
123
|
}
|
|
91
124
|
.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 {
|
|
125
|
+
display: -webkit-box;
|
|
92
126
|
display: -ms-flexbox;
|
|
93
127
|
display: flex;
|
|
94
128
|
}
|
|
@@ -96,20 +130,25 @@
|
|
|
96
130
|
width: 100%;
|
|
97
131
|
}
|
|
98
132
|
.e-ddt.e-show-chip .e-chips-close {
|
|
99
|
-
line-height: 21px;
|
|
100
133
|
min-height: 26px;
|
|
101
134
|
min-width: 18px;
|
|
135
|
+
line-height: 21px;
|
|
102
136
|
text-align: center;
|
|
103
137
|
}
|
|
104
138
|
.e-ddt.e-show-chip .e-chips-close::before {
|
|
105
139
|
font-size: 10px;
|
|
140
|
+
}
|
|
141
|
+
.e-ddt.e-show-chip .e-chips-close::before {
|
|
106
142
|
vertical-align: middle;
|
|
107
143
|
}
|
|
108
144
|
.e-ddt.e-show-chip .e-chips {
|
|
109
|
-
-
|
|
110
|
-
align
|
|
145
|
+
-webkit-box-align: center;
|
|
146
|
+
-ms-flex-align: center;
|
|
147
|
+
align-items: center;
|
|
111
148
|
border-radius: 0;
|
|
112
|
-
box-sizing: border-box;
|
|
149
|
+
-webkit-box-sizing: border-box;
|
|
150
|
+
box-sizing: border-box;
|
|
151
|
+
display: -webkit-inline-box;
|
|
113
152
|
display: -ms-inline-flexbox;
|
|
114
153
|
display: inline-flex;
|
|
115
154
|
float: left;
|
|
@@ -137,7 +176,8 @@
|
|
|
137
176
|
padding: 6px 10px 0 10px;
|
|
138
177
|
}
|
|
139
178
|
.e-ddt .e-overflow.e-total-count {
|
|
140
|
-
box-sizing: border-box;
|
|
179
|
+
-webkit-box-sizing: border-box;
|
|
180
|
+
box-sizing: border-box;
|
|
141
181
|
display: inline-block;
|
|
142
182
|
overflow: hidden;
|
|
143
183
|
text-overflow: ellipsis;
|
|
@@ -184,7 +224,8 @@
|
|
|
184
224
|
}
|
|
185
225
|
.e-ddt.e-popup {
|
|
186
226
|
border: 1px solid #eaeaea;
|
|
187
|
-
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);
|
|
227
|
+
-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);
|
|
228
|
+
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);
|
|
188
229
|
position: absolute;
|
|
189
230
|
}
|
|
190
231
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -210,19 +251,18 @@
|
|
|
210
251
|
font-size: 14px;
|
|
211
252
|
margin: 10px;
|
|
212
253
|
}
|
|
213
|
-
.e-ddt.e-popup .e-filter-wrap .e-input, .e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
214
|
-
padding: 0 12px;
|
|
215
|
-
}
|
|
216
254
|
.e-ddt.e-popup .e-filter-wrap {
|
|
217
|
-
border: 1px solid #c8c8c8;
|
|
218
255
|
border-top-width: 0;
|
|
219
256
|
display: block;
|
|
220
257
|
padding: 5px;
|
|
221
|
-
|
|
222
|
-
.e-ddt.e-popup .e-filter-wrap {
|
|
258
|
+
border: 1px solid #c8c8c8;
|
|
223
259
|
border-left-width: 0;
|
|
224
260
|
border-right-width: 0;
|
|
225
261
|
}
|
|
262
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
263
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
264
|
+
padding: 0 12px;
|
|
265
|
+
}
|
|
226
266
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
227
267
|
margin-bottom: 0;
|
|
228
268
|
}
|
|
@@ -237,8 +277,8 @@
|
|
|
237
277
|
cursor: default;
|
|
238
278
|
font-family: inherit;
|
|
239
279
|
font-size: 14px;
|
|
240
|
-
padding: 14px 16px;
|
|
241
280
|
text-align: center;
|
|
281
|
+
padding: 14px 16px;
|
|
242
282
|
}
|
|
243
283
|
.e-ddt.e-popup .e-popup-content.e-no-data .e-treeview {
|
|
244
284
|
display: none;
|
|
@@ -292,16 +332,16 @@
|
|
|
292
332
|
padding: 6px 10px 0 10px;
|
|
293
333
|
}
|
|
294
334
|
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
295
|
-
margin-left: 30px;
|
|
296
335
|
margin-right: 1px;
|
|
336
|
+
margin-left: 30px;
|
|
297
337
|
}
|
|
298
338
|
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
299
|
-
margin-left: 30px;
|
|
300
339
|
margin-right: 1px;
|
|
340
|
+
margin-left: 30px;
|
|
301
341
|
}
|
|
302
342
|
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
303
|
-
margin-left: 60px;
|
|
304
343
|
margin-right: 1px;
|
|
344
|
+
margin-left: 60px;
|
|
305
345
|
}
|
|
306
346
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
307
347
|
.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,
|
|
@@ -374,18 +414,18 @@
|
|
|
374
414
|
}
|
|
375
415
|
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
376
416
|
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
377
|
-
margin-left: 38px;
|
|
378
417
|
margin-right: 1px;
|
|
418
|
+
margin-left: 38px;
|
|
379
419
|
}
|
|
380
420
|
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
381
421
|
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
382
|
-
margin-left: 38px;
|
|
383
422
|
margin-right: 1px;
|
|
423
|
+
margin-left: 38px;
|
|
384
424
|
}
|
|
385
425
|
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
386
426
|
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
387
|
-
margin-
|
|
388
|
-
margin-
|
|
427
|
+
margin-right: 76px;
|
|
428
|
+
margin-left: 1px;
|
|
389
429
|
}
|
|
390
430
|
.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,
|
|
391
431
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
@@ -403,12 +443,6 @@
|
|
|
403
443
|
.e-ddt .e-chips > .e-chipcontent {
|
|
404
444
|
color: #666;
|
|
405
445
|
}
|
|
406
|
-
.e-ddt .e-chips:hover {
|
|
407
|
-
background-color: #eaeaea;
|
|
408
|
-
}
|
|
409
|
-
.e-ddt .e-chips:hover > .e-chipcontent {
|
|
410
|
-
color: #666;
|
|
411
|
-
}
|
|
412
446
|
.e-ddt .e-overflow .e-remain {
|
|
413
447
|
color: #666;
|
|
414
448
|
}
|
|
@@ -1,19 +1,43 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
2
|
/* stylelint-disable-line no-empty-source */
|
|
3
3
|
/* stylelint-disable property-no-vendor-prefix */
|
|
4
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
5
|
+
0% {
|
|
6
|
+
-webkit-transform: rotate(0);
|
|
7
|
+
transform: rotate(0);
|
|
8
|
+
}
|
|
9
|
+
100% {
|
|
10
|
+
-webkit-transform: rotate(360deg);
|
|
11
|
+
transform: rotate(360deg);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
4
14
|
@keyframes material-spinner-rotate {
|
|
5
15
|
0% {
|
|
16
|
+
-webkit-transform: rotate(0);
|
|
6
17
|
transform: rotate(0);
|
|
7
18
|
}
|
|
8
19
|
100% {
|
|
20
|
+
-webkit-transform: rotate(360deg);
|
|
21
|
+
transform: rotate(360deg);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
25
|
+
0% {
|
|
26
|
+
-webkit-transform: rotate(0);
|
|
27
|
+
transform: rotate(0);
|
|
28
|
+
}
|
|
29
|
+
100% {
|
|
30
|
+
-webkit-transform: rotate(360deg);
|
|
9
31
|
transform: rotate(360deg);
|
|
10
32
|
}
|
|
11
33
|
}
|
|
12
34
|
@keyframes fabric-spinner-rotate {
|
|
13
35
|
0% {
|
|
36
|
+
-webkit-transform: rotate(0);
|
|
14
37
|
transform: rotate(0);
|
|
15
38
|
}
|
|
16
39
|
100% {
|
|
40
|
+
-webkit-transform: rotate(360deg);
|
|
17
41
|
transform: rotate(360deg);
|
|
18
42
|
}
|
|
19
43
|
}
|
|
@@ -71,12 +95,20 @@
|
|
|
71
95
|
outline: none;
|
|
72
96
|
}
|
|
73
97
|
.e-ddt .e-ddt-icon::before {
|
|
74
|
-
transform: rotate(0deg);
|
|
98
|
+
-webkit-transform: rotate(0deg);
|
|
99
|
+
transform: rotate(0deg);
|
|
100
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
101
|
+
transition: -webkit-transform 300ms ease;
|
|
75
102
|
transition: transform 300ms ease;
|
|
103
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
76
104
|
}
|
|
77
105
|
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
78
|
-
transform: rotate(180deg);
|
|
106
|
+
-webkit-transform: rotate(180deg);
|
|
107
|
+
transform: rotate(180deg);
|
|
108
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
109
|
+
transition: -webkit-transform 300ms ease;
|
|
79
110
|
transition: transform 300ms ease;
|
|
111
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
80
112
|
}
|
|
81
113
|
.e-ddt .e-ddt-hidden {
|
|
82
114
|
border: 0;
|
|
@@ -85,7 +117,8 @@
|
|
|
85
117
|
width: 0;
|
|
86
118
|
}
|
|
87
119
|
.e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper .e-clear-icon {
|
|
88
|
-
box-sizing: content-box;
|
|
120
|
+
-webkit-box-sizing: content-box;
|
|
121
|
+
box-sizing: content-box;
|
|
89
122
|
min-height: 30px;
|
|
90
123
|
}
|
|
91
124
|
.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 {
|
|
@@ -116,6 +149,7 @@
|
|
|
116
149
|
padding-right: 0;
|
|
117
150
|
}
|
|
118
151
|
.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 {
|
|
152
|
+
display: -webkit-box;
|
|
119
153
|
display: -ms-flexbox;
|
|
120
154
|
display: flex;
|
|
121
155
|
}
|
|
@@ -123,20 +157,25 @@
|
|
|
123
157
|
width: 100%;
|
|
124
158
|
}
|
|
125
159
|
.e-ddt.e-show-chip .e-chips-close {
|
|
126
|
-
line-height: 20px;
|
|
127
160
|
min-height: 24px;
|
|
128
161
|
min-width: 24px;
|
|
162
|
+
line-height: 20px;
|
|
129
163
|
text-align: center;
|
|
130
164
|
}
|
|
131
165
|
.e-ddt.e-show-chip .e-chips-close::before {
|
|
132
166
|
font-size: 10px;
|
|
167
|
+
}
|
|
168
|
+
.e-ddt.e-show-chip .e-chips-close::before {
|
|
133
169
|
vertical-align: middle;
|
|
134
170
|
}
|
|
135
171
|
.e-ddt.e-show-chip .e-chips {
|
|
136
|
-
-
|
|
137
|
-
align
|
|
172
|
+
-webkit-box-align: center;
|
|
173
|
+
-ms-flex-align: center;
|
|
174
|
+
align-items: center;
|
|
138
175
|
border-radius: 0;
|
|
139
|
-
box-sizing: border-box;
|
|
176
|
+
-webkit-box-sizing: border-box;
|
|
177
|
+
box-sizing: border-box;
|
|
178
|
+
display: -webkit-inline-box;
|
|
140
179
|
display: -ms-inline-flexbox;
|
|
141
180
|
display: inline-flex;
|
|
142
181
|
float: left;
|
|
@@ -167,7 +206,8 @@
|
|
|
167
206
|
line-height: 30px;
|
|
168
207
|
}
|
|
169
208
|
.e-ddt .e-overflow.e-total-count {
|
|
170
|
-
box-sizing: border-box;
|
|
209
|
+
-webkit-box-sizing: border-box;
|
|
210
|
+
box-sizing: border-box;
|
|
171
211
|
display: inline-block;
|
|
172
212
|
overflow: hidden;
|
|
173
213
|
text-overflow: ellipsis;
|
|
@@ -217,7 +257,8 @@
|
|
|
217
257
|
}
|
|
218
258
|
.e-ddt.e-popup {
|
|
219
259
|
border-radius: 2px;
|
|
220
|
-
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
260
|
+
-webkit-box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
261
|
+
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
221
262
|
position: absolute;
|
|
222
263
|
}
|
|
223
264
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -246,14 +287,15 @@
|
|
|
246
287
|
font-size: 14px;
|
|
247
288
|
margin: 0 12px;
|
|
248
289
|
}
|
|
249
|
-
.e-ddt.e-popup .e-filter-wrap .e-input, .e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
250
|
-
padding: 0 20px;
|
|
251
|
-
}
|
|
252
290
|
.e-ddt.e-popup .e-filter-wrap {
|
|
253
|
-
border-bottom: 1px solid #292827;
|
|
254
291
|
border-top-width: 0;
|
|
255
292
|
display: block;
|
|
256
293
|
padding: 4px 12px;
|
|
294
|
+
border-bottom: 1px solid #292827;
|
|
295
|
+
}
|
|
296
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
297
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
298
|
+
padding: 0 20px;
|
|
257
299
|
}
|
|
258
300
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
259
301
|
margin-bottom: 0;
|
|
@@ -269,8 +311,8 @@
|
|
|
269
311
|
cursor: default;
|
|
270
312
|
font-family: inherit;
|
|
271
313
|
font-size: 14px;
|
|
272
|
-
padding: 14px 16px;
|
|
273
314
|
text-align: center;
|
|
315
|
+
padding: 14px 16px;
|
|
274
316
|
}
|
|
275
317
|
.e-ddt.e-popup .e-popup-content.e-no-data .e-treeview {
|
|
276
318
|
display: none;
|
|
@@ -320,16 +362,16 @@
|
|
|
320
362
|
padding: 0 8px;
|
|
321
363
|
}
|
|
322
364
|
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
323
|
-
margin-left: 18px;
|
|
324
365
|
margin-right: 4px;
|
|
366
|
+
margin-left: 18px;
|
|
325
367
|
}
|
|
326
368
|
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
327
|
-
margin-left: 18px;
|
|
328
369
|
margin-right: 4px;
|
|
370
|
+
margin-left: 18px;
|
|
329
371
|
}
|
|
330
372
|
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
331
|
-
margin-left: 54px;
|
|
332
373
|
margin-right: 4px;
|
|
374
|
+
margin-left: 54px;
|
|
333
375
|
}
|
|
334
376
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
335
377
|
.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,
|
|
@@ -384,23 +426,14 @@
|
|
|
384
426
|
}
|
|
385
427
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
386
428
|
.e-ddt.e-bigger.e-show-chip .e-chips-close {
|
|
387
|
-
line-height: 27px;
|
|
388
429
|
min-height: 32px;
|
|
389
430
|
min-width: 32px;
|
|
431
|
+
line-height: 27px;
|
|
390
432
|
}
|
|
391
433
|
.e-bigger .e-ddt.e-show-chip .e-chips-close::before,
|
|
392
434
|
.e-ddt.e-bigger.e-show-chip .e-chips-close::before {
|
|
393
435
|
font-size: 12px;
|
|
394
436
|
}
|
|
395
|
-
.e-bigger .e-ddt .e-overflow.e-show-text,
|
|
396
|
-
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
397
|
-
padding: 0 12px;
|
|
398
|
-
line-height: 38px;
|
|
399
|
-
}
|
|
400
|
-
.e-bigger .e-ddt .e-overflow .e-remain,
|
|
401
|
-
.e-ddt.e-bigger .e-overflow .e-remain {
|
|
402
|
-
font-size: 18px;
|
|
403
|
-
}
|
|
404
437
|
.e-bigger .e-ddt.e-show-chip .e-overflow .e-remain.e-wrap-count,
|
|
405
438
|
.e-ddt.e-bigger.e-show-chip .e-overflow .e-remain.e-wrap-count {
|
|
406
439
|
line-height: 38px;
|
|
@@ -411,6 +444,15 @@
|
|
|
411
444
|
line-height: 38px;
|
|
412
445
|
padding: 0 8px;
|
|
413
446
|
}
|
|
447
|
+
.e-bigger .e-ddt .e-overflow.e-show-text,
|
|
448
|
+
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
449
|
+
padding: 0 12px;
|
|
450
|
+
line-height: 38px;
|
|
451
|
+
}
|
|
452
|
+
.e-bigger .e-ddt .e-overflow .e-remain,
|
|
453
|
+
.e-ddt.e-bigger .e-overflow .e-remain {
|
|
454
|
+
font-size: 18px;
|
|
455
|
+
}
|
|
414
456
|
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
415
457
|
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
416
458
|
margin-right: 38px;
|
|
@@ -464,8 +506,8 @@
|
|
|
464
506
|
}
|
|
465
507
|
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
466
508
|
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
467
|
-
margin-
|
|
468
|
-
margin-
|
|
509
|
+
margin-right: 58px;
|
|
510
|
+
margin-left: 4px;
|
|
469
511
|
}
|
|
470
512
|
.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,
|
|
471
513
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
@@ -483,12 +525,6 @@
|
|
|
483
525
|
.e-ddt .e-chips > .e-chipcontent {
|
|
484
526
|
color: #f3f2f1;
|
|
485
527
|
}
|
|
486
|
-
.e-ddt .e-chips:hover {
|
|
487
|
-
background-color: #292827;
|
|
488
|
-
}
|
|
489
|
-
.e-ddt .e-chips:hover > .e-chipcontent {
|
|
490
|
-
color: #f3f2f1;
|
|
491
|
-
}
|
|
492
528
|
.e-ddt .e-overflow .e-remain {
|
|
493
529
|
color: #a19f9d;
|
|
494
530
|
}
|