@syncfusion/ej2-dropdowns 18.1.57 → 18.2.44-4569
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 +1524 -1514
- package/README.md +118 -118
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +198 -126
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +290 -217
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/auto-complete/auto-complete.ts +527 -0
- package/dist/ts/combo-box/combo-box.ts +957 -0
- package/dist/ts/common/highlight-search.ts +47 -0
- package/dist/ts/common/incremental-search.ts +81 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
- package/dist/ts/list-box/list-box.ts +2317 -0
- package/dist/ts/multi-select/checkbox-selection.ts +528 -0
- package/dist/ts/multi-select/float-label.ts +155 -0
- package/dist/ts/multi-select/interface.ts +66 -0
- package/dist/ts/multi-select/multi-select.ts +4216 -0
- package/helpers/e2e/index.js +3 -3
- package/license +2 -2
- package/package.json +77 -77
- package/src/auto-complete/auto-complete-model.d.ts +179 -179
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +21 -21
- package/src/combo-box/combo-box-model.d.ts +212 -212
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +4 -2
- package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
- package/src/drop-down-base/drop-down-base.d.ts +17 -17
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
- package/src/drop-down-list/drop-down-list.d.ts +3 -2
- package/src/drop-down-list/drop-down-list.js +43 -30
- package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
- package/src/drop-down-tree/drop-down-tree.js +32 -26
- package/src/list-box/index.d.ts +1 -0
- package/src/list-box/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +156 -156
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +57 -59
- package/src/multi-select/index.d.ts +1 -0
- package/src/multi-select/index.js +1 -0
- package/src/multi-select/multi-select-model.d.ts +452 -452
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +98 -43
- package/styles/_all.scss +3 -3
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/bootstrap-dark.css +67 -61
- package/styles/bootstrap.css +69 -63
- package/styles/bootstrap4.css +81 -61
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
- package/styles/drop-down-base/_fabric-definition.scss +66 -66
- package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
- package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-base/_layout.scss +108 -108
- package/styles/drop-down-base/_material-dark-definition.scss +67 -67
- package/styles/drop-down-base/_material-definition.scss +65 -65
- package/styles/drop-down-base/_theme.scss +242 -242
- package/styles/drop-down-list/_all.scss +2 -2
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
- package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
- package/styles/drop-down-list/_fabric-definition.scss +122 -122
- package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
- package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
- package/styles/drop-down-list/_layout.scss +218 -218
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +166 -166
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/material.css +9 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap4-definition.scss +63 -50
- package/styles/drop-down-tree/_fabric-dark-definition.scss +63 -49
- package/styles/drop-down-tree/_fabric-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +63 -49
- package/styles/drop-down-tree/_layout.scss +437 -398
- package/styles/drop-down-tree/_material-dark-definition.scss +61 -54
- package/styles/drop-down-tree/_material-definition.scss +61 -54
- package/styles/drop-down-tree/_theme.scss +68 -63
- package/styles/drop-down-tree/bootstrap-dark.css +67 -61
- package/styles/drop-down-tree/bootstrap.css +69 -63
- package/styles/drop-down-tree/bootstrap4.css +81 -61
- package/styles/drop-down-tree/fabric-dark.css +71 -63
- package/styles/drop-down-tree/fabric.css +71 -63
- package/styles/drop-down-tree/highcontrast-light.css +71 -63
- package/styles/drop-down-tree/highcontrast.css +75 -63
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/material-dark.css +76 -85
- package/styles/drop-down-tree/material.css +93 -85
- package/styles/fabric-dark.css +71 -63
- package/styles/fabric.css +71 -63
- package/styles/highcontrast-light.css +71 -63
- package/styles/highcontrast.css +75 -63
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
- package/styles/list-box/_bootstrap-definition.scss +112 -112
- package/styles/list-box/_bootstrap4-definition.scss +118 -118
- package/styles/list-box/_fabric-dark-definition.scss +118 -118
- package/styles/list-box/_fabric-definition.scss +112 -112
- package/styles/list-box/_highcontrast-definition.scss +112 -112
- package/styles/list-box/_highcontrast-light-definition.scss +118 -118
- package/styles/list-box/_layout.scss +458 -458
- package/styles/list-box/_material-dark-definition.scss +118 -118
- package/styles/list-box/_material-definition.scss +112 -112
- package/styles/list-box/_theme.scss +273 -273
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/material-dark.css +4 -4
- package/styles/list-box/material.css +4 -4
- package/styles/material-dark.css +80 -89
- package/styles/material.css +115 -89
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
- package/styles/multi-select/_bootstrap-definition.scss +166 -166
- package/styles/multi-select/_bootstrap4-definition.scss +233 -233
- package/styles/multi-select/_fabric-dark-definition.scss +170 -170
- package/styles/multi-select/_fabric-definition.scss +167 -167
- package/styles/multi-select/_highcontrast-definition.scss +257 -257
- package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
- package/styles/multi-select/_layout.scss +1153 -1153
- package/styles/multi-select/_material-dark-definition.scss +186 -186
- package/styles/multi-select/_material-definition.scss +191 -191
- package/styles/multi-select/_theme.scss +384 -384
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +26 -26
- package/styles/multi-select/icons/_material.scss +324 -324
- package/styles/multi-select/material.css +9 -0
|
@@ -1,218 +1,218 @@
|
|
|
1
|
-
@include export-module('dropdownlist-layout') {
|
|
2
|
-
.e-bigger .e-input-group.e-ddl {
|
|
3
|
-
& .e-input-filter,
|
|
4
|
-
& .e-input-filter:focus {
|
|
5
|
-
margin-left: -20px;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.e-bigger .e-ddl#{&}.e-popup {
|
|
10
|
-
& .e-list-item,
|
|
11
|
-
& .e-list-group-item {
|
|
12
|
-
font-size: $ddl-bigger-list-font-size;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
& .e-input-group {
|
|
16
|
-
padding: 4px 0;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.e-bigger.e-ddl#{&}.e-popup {
|
|
21
|
-
& .e-list-item,
|
|
22
|
-
& .e-list-group-item {
|
|
23
|
-
font-size: $ddl-bigger-list-font-size;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
& .e-input-group {
|
|
27
|
-
padding: 4px 0;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.e-popup-full-page {
|
|
32
|
-
bottom: 0;
|
|
33
|
-
left: 0;
|
|
34
|
-
margin: 0;
|
|
35
|
-
overflow: hidden;
|
|
36
|
-
padding: 0;
|
|
37
|
-
right: 0;
|
|
38
|
-
top: 0;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.e-ddl.e-control-wrapper .e-ddl-disable-icon {
|
|
42
|
-
position: relative;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.e-ddl.e-control-wrapper .e-ddl-disable-icon::before {
|
|
46
|
-
content: '';
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.e-ddl-device-filter .e-filter-parent {
|
|
50
|
-
background-color: $ddl-filter-background-color;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// sass-lint:disable no-vendor-prefixes
|
|
54
|
-
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
55
|
-
display: none;
|
|
56
|
-
pointer-events: none;
|
|
57
|
-
position: absolute;
|
|
58
|
-
right: 0;
|
|
59
|
-
visibility: hidden;
|
|
60
|
-
}
|
|
61
|
-
// sass-lint:enable no-vendor-prefixes
|
|
62
|
-
|
|
63
|
-
.e-filter-parent {
|
|
64
|
-
border: $ddl-filter-border;
|
|
65
|
-
border-top-width: $ddl-filter-top-border;
|
|
66
|
-
box-shadow: $ddl-filter-box-shadow;
|
|
67
|
-
display: block;
|
|
68
|
-
padding: $ddl-filter-padding;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.e-ddl.e-input-group:not(.e-disabled) {
|
|
72
|
-
cursor: pointer;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.e-ddl#{&}.e-popup.e-ddl-device-filter {
|
|
76
|
-
@at-root {
|
|
77
|
-
& .e-input-group.e-input-focus::before,
|
|
78
|
-
& .e-input-group.e-input-focus::after {
|
|
79
|
-
width: 0;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.e-ddl#{&}.e-popup {
|
|
85
|
-
background: $ddl-popup-background-color;
|
|
86
|
-
@if $skin-name != 'material' {
|
|
87
|
-
border: 1px solid $ddl-default-border-color;
|
|
88
|
-
}
|
|
89
|
-
position: absolute;
|
|
90
|
-
@at-root {
|
|
91
|
-
& .e-search-icon {
|
|
92
|
-
margin: 0;
|
|
93
|
-
opacity: .57;
|
|
94
|
-
padding: $ddl-list-search-icon-padding;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
& .e-filter-parent .e-back-icon {
|
|
98
|
-
padding: $ddl-back-icon-padding;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
&.e-rtl .e-filter-parent .e-input-group.e-control-wrapper .e-input-filter,
|
|
102
|
-
& .e-filter-parent .e-input-filter,
|
|
103
|
-
& .e-filter-parent .e-input-filter:focus {
|
|
104
|
-
padding: $ddl-list-filter-text-indent;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
& .e-input-group {
|
|
108
|
-
margin-bottom: 0;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
& .e-ddl-footer,
|
|
112
|
-
& .e-ddl-header {
|
|
113
|
-
cursor: default;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.e-ddl.e-input-group .e-ddl-hidden {
|
|
119
|
-
border: 0;
|
|
120
|
-
height: 0;
|
|
121
|
-
visibility: hidden;
|
|
122
|
-
width: 0;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.e-ddl.e-input-group,
|
|
126
|
-
.e-ddl.e-input-group.e-input-focus:focus {
|
|
127
|
-
outline: none;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.e-dropdownbase .e-list-item .e-highlight {
|
|
131
|
-
display: inline;
|
|
132
|
-
font-weight: bold;
|
|
133
|
-
vertical-align: baseline;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.e-ddl.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
|
|
137
|
-
.e-float-input input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
|
|
138
|
-
.e-float-input.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide) {
|
|
139
|
-
opacity: 1;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.e-ddl.e-input-group {
|
|
143
|
-
.e-input-value,
|
|
144
|
-
.e-input-value:focus {
|
|
145
|
-
font-family: $ddl-input-font-family;
|
|
146
|
-
font-size: $ddl-input-font-size;
|
|
147
|
-
height: auto;
|
|
148
|
-
margin: $ddl-zero-value;
|
|
149
|
-
outline: none;
|
|
150
|
-
width: 100%;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
input[readonly].e-input,
|
|
154
|
-
input[readonly],
|
|
155
|
-
.e-dropdownlist {
|
|
156
|
-
pointer-events: none;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
ejs-autocomplete,
|
|
161
|
-
ejs-combobox,
|
|
162
|
-
ejs-dropdownlist {
|
|
163
|
-
display: block;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
// Small Size
|
|
167
|
-
|
|
168
|
-
.e-small .e-ddl#{&}.e-popup,
|
|
169
|
-
.e-input-group.e-ddl.e-small {
|
|
170
|
-
& .e-list-item,
|
|
171
|
-
& .e-list-group-item {
|
|
172
|
-
font-size: $ddl-small-list-font-size;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.e-small.e-ddl#{&}.e-popup,
|
|
177
|
-
.e-input-group.e-ddl.e-small {
|
|
178
|
-
& .e-list-item,
|
|
179
|
-
& .e-list-group-item {
|
|
180
|
-
font-size: $ddl-small-list-font-size;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
//touch small
|
|
185
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
186
|
-
.e-bigger .e-input-group.e-ddl.e-small {
|
|
187
|
-
& .e-list-item,
|
|
188
|
-
& .e-list-group-item {
|
|
189
|
-
font-size: $ddl-bigger-small-list-font-size;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.e-bigger.e-small.e-ddl#{&}.e-popup,
|
|
194
|
-
.e-bigger .e-input-group.e-ddl.e-small {
|
|
195
|
-
& .e-list-item,
|
|
196
|
-
& .e-list-group-item {
|
|
197
|
-
font-size: $ddl-bigger-small-list-font-size;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
202
|
-
.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
203
|
-
.e-content-placeholder.e-combobox.e-placeholder-combobox {
|
|
204
|
-
background-size: 300px 33px;
|
|
205
|
-
min-height: 33px;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.e-bigger .e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
209
|
-
.e-bigger.e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
210
|
-
.e-bigger .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
211
|
-
.e-bigger.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
212
|
-
.e-bigger .e-content-placeholder.e-combobox.e-placeholder-combobox,
|
|
213
|
-
.e-bigger.e-content-placeholder.e-combobox.e-placeholder-combobox {
|
|
214
|
-
background-size: 300px 40px;
|
|
215
|
-
min-height: 40px;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
1
|
+
@include export-module('dropdownlist-layout') {
|
|
2
|
+
.e-bigger .e-input-group.e-ddl {
|
|
3
|
+
& .e-input-filter,
|
|
4
|
+
& .e-input-filter:focus {
|
|
5
|
+
margin-left: -20px;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.e-bigger .e-ddl#{&}.e-popup {
|
|
10
|
+
& .e-list-item,
|
|
11
|
+
& .e-list-group-item {
|
|
12
|
+
font-size: $ddl-bigger-list-font-size;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& .e-input-group {
|
|
16
|
+
padding: 4px 0;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e-bigger.e-ddl#{&}.e-popup {
|
|
21
|
+
& .e-list-item,
|
|
22
|
+
& .e-list-group-item {
|
|
23
|
+
font-size: $ddl-bigger-list-font-size;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
& .e-input-group {
|
|
27
|
+
padding: 4px 0;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-popup-full-page {
|
|
32
|
+
bottom: 0;
|
|
33
|
+
left: 0;
|
|
34
|
+
margin: 0;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
padding: 0;
|
|
37
|
+
right: 0;
|
|
38
|
+
top: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-ddl.e-control-wrapper .e-ddl-disable-icon {
|
|
42
|
+
position: relative;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.e-ddl.e-control-wrapper .e-ddl-disable-icon::before {
|
|
46
|
+
content: '';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-ddl-device-filter .e-filter-parent {
|
|
50
|
+
background-color: $ddl-filter-background-color;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// sass-lint:disable no-vendor-prefixes
|
|
54
|
+
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
55
|
+
display: none;
|
|
56
|
+
pointer-events: none;
|
|
57
|
+
position: absolute;
|
|
58
|
+
right: 0;
|
|
59
|
+
visibility: hidden;
|
|
60
|
+
}
|
|
61
|
+
// sass-lint:enable no-vendor-prefixes
|
|
62
|
+
|
|
63
|
+
.e-filter-parent {
|
|
64
|
+
border: $ddl-filter-border;
|
|
65
|
+
border-top-width: $ddl-filter-top-border;
|
|
66
|
+
box-shadow: $ddl-filter-box-shadow;
|
|
67
|
+
display: block;
|
|
68
|
+
padding: $ddl-filter-padding;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-ddl.e-input-group:not(.e-disabled) {
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-ddl#{&}.e-popup.e-ddl-device-filter {
|
|
76
|
+
@at-root {
|
|
77
|
+
& .e-input-group.e-input-focus::before,
|
|
78
|
+
& .e-input-group.e-input-focus::after {
|
|
79
|
+
width: 0;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-ddl#{&}.e-popup {
|
|
85
|
+
background: $ddl-popup-background-color;
|
|
86
|
+
@if $skin-name != 'material' {
|
|
87
|
+
border: 1px solid $ddl-default-border-color;
|
|
88
|
+
}
|
|
89
|
+
position: absolute;
|
|
90
|
+
@at-root {
|
|
91
|
+
& .e-search-icon {
|
|
92
|
+
margin: 0;
|
|
93
|
+
opacity: .57;
|
|
94
|
+
padding: $ddl-list-search-icon-padding;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
& .e-filter-parent .e-back-icon {
|
|
98
|
+
padding: $ddl-back-icon-padding;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&.e-rtl .e-filter-parent .e-input-group.e-control-wrapper .e-input-filter,
|
|
102
|
+
& .e-filter-parent .e-input-filter,
|
|
103
|
+
& .e-filter-parent .e-input-filter:focus {
|
|
104
|
+
padding: $ddl-list-filter-text-indent;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
& .e-input-group {
|
|
108
|
+
margin-bottom: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
& .e-ddl-footer,
|
|
112
|
+
& .e-ddl-header {
|
|
113
|
+
cursor: default;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-ddl.e-input-group .e-ddl-hidden {
|
|
119
|
+
border: 0;
|
|
120
|
+
height: 0;
|
|
121
|
+
visibility: hidden;
|
|
122
|
+
width: 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.e-ddl.e-input-group,
|
|
126
|
+
.e-ddl.e-input-group.e-input-focus:focus {
|
|
127
|
+
outline: none;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-dropdownbase .e-list-item .e-highlight {
|
|
131
|
+
display: inline;
|
|
132
|
+
font-weight: bold;
|
|
133
|
+
vertical-align: baseline;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-ddl.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
|
|
137
|
+
.e-float-input input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
|
|
138
|
+
.e-float-input.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide) {
|
|
139
|
+
opacity: 1;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-ddl.e-input-group {
|
|
143
|
+
.e-input-value,
|
|
144
|
+
.e-input-value:focus {
|
|
145
|
+
font-family: $ddl-input-font-family;
|
|
146
|
+
font-size: $ddl-input-font-size;
|
|
147
|
+
height: auto;
|
|
148
|
+
margin: $ddl-zero-value;
|
|
149
|
+
outline: none;
|
|
150
|
+
width: 100%;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
input[readonly].e-input,
|
|
154
|
+
input[readonly],
|
|
155
|
+
.e-dropdownlist {
|
|
156
|
+
pointer-events: none;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
ejs-autocomplete,
|
|
161
|
+
ejs-combobox,
|
|
162
|
+
ejs-dropdownlist {
|
|
163
|
+
display: block;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
// Small Size
|
|
167
|
+
|
|
168
|
+
.e-small .e-ddl#{&}.e-popup,
|
|
169
|
+
.e-input-group.e-ddl.e-small {
|
|
170
|
+
& .e-list-item,
|
|
171
|
+
& .e-list-group-item {
|
|
172
|
+
font-size: $ddl-small-list-font-size;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.e-small.e-ddl#{&}.e-popup,
|
|
177
|
+
.e-input-group.e-ddl.e-small {
|
|
178
|
+
& .e-list-item,
|
|
179
|
+
& .e-list-group-item {
|
|
180
|
+
font-size: $ddl-small-list-font-size;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
//touch small
|
|
185
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
186
|
+
.e-bigger .e-input-group.e-ddl.e-small {
|
|
187
|
+
& .e-list-item,
|
|
188
|
+
& .e-list-group-item {
|
|
189
|
+
font-size: $ddl-bigger-small-list-font-size;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.e-bigger.e-small.e-ddl#{&}.e-popup,
|
|
194
|
+
.e-bigger .e-input-group.e-ddl.e-small {
|
|
195
|
+
& .e-list-item,
|
|
196
|
+
& .e-list-group-item {
|
|
197
|
+
font-size: $ddl-bigger-small-list-font-size;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
202
|
+
.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
203
|
+
.e-content-placeholder.e-combobox.e-placeholder-combobox {
|
|
204
|
+
background-size: 300px 33px;
|
|
205
|
+
min-height: 33px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.e-bigger .e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
209
|
+
.e-bigger.e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
210
|
+
.e-bigger .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
211
|
+
.e-bigger.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
212
|
+
.e-bigger .e-content-placeholder.e-combobox.e-placeholder-combobox,
|
|
213
|
+
.e-bigger.e-content-placeholder.e-combobox.e-placeholder-combobox {
|
|
214
|
+
background-size: 300px 40px;
|
|
215
|
+
min-height: 40px;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|