@syncfusion/ej2-dropdowns 21.2.8 → 22.1.34
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 +1 -0
- package/CHANGELOG.md +35 -6
- package/README.md +201 -103
- 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 +158 -41
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +158 -41
- 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 +11 -11
- package/src/auto-complete/auto-complete-model.d.ts +2 -1
- package/src/auto-complete/auto-complete.d.ts +2 -1
- package/src/auto-complete/auto-complete.js +1 -1
- package/src/combo-box/combo-box-model.d.ts +6 -3
- package/src/combo-box/combo-box.d.ts +6 -3
- package/src/drop-down-base/drop-down-base-model.d.ts +8 -4
- package/src/drop-down-base/drop-down-base.d.ts +8 -4
- package/src/drop-down-base/drop-down-base.js +21 -7
- package/src/drop-down-list/drop-down-list-model.d.ts +6 -3
- package/src/drop-down-list/drop-down-list.d.ts +6 -3
- package/src/drop-down-list/drop-down-list.js +23 -14
- package/src/drop-down-tree/drop-down-tree-model.d.ts +21 -6
- package/src/drop-down-tree/drop-down-tree.d.ts +55 -62
- package/src/drop-down-tree/drop-down-tree.js +1 -1
- package/src/list-box/list-box.d.ts +15 -0
- package/src/list-box/list-box.js +53 -3
- package/src/mention/mention-model.d.ts +4 -2
- package/src/mention/mention.d.ts +4 -2
- package/src/multi-select/multi-select-model.d.ts +15 -8
- package/src/multi-select/multi-select.d.ts +15 -7
- package/src/multi-select/multi-select.js +59 -15
- package/styles/auto-complete/_material3-dark-definition.scss +1 -0
- package/styles/auto-complete/_material3-definition.scss +2 -0
- package/styles/auto-complete/material3-dark.css +198 -0
- package/styles/auto-complete/material3-dark.scss +5 -0
- package/styles/auto-complete/material3.css +254 -0
- package/styles/auto-complete/material3.scss +5 -0
- package/styles/bootstrap-dark.css +212 -100
- package/styles/bootstrap.css +214 -101
- package/styles/bootstrap4.css +214 -101
- package/styles/bootstrap5-dark.css +212 -100
- package/styles/bootstrap5.css +212 -100
- package/styles/combo-box/_material3-dark-definition.scss +1 -0
- package/styles/combo-box/_material3-definition.scss +2 -0
- package/styles/combo-box/material3-dark.css +198 -0
- package/styles/combo-box/material3-dark.scss +5 -0
- package/styles/combo-box/material3.css +254 -0
- package/styles/combo-box/material3.scss +5 -0
- package/styles/drop-down-base/_layout.scss +3 -1
- package/styles/drop-down-base/_material3-dark-definition.scss +1 -0
- package/styles/drop-down-base/_material3-definition.scss +87 -0
- package/styles/drop-down-base/_theme.scss +10 -0
- package/styles/drop-down-base/bootstrap-dark.css +4 -0
- package/styles/drop-down-base/bootstrap.css +4 -0
- package/styles/drop-down-base/bootstrap4.css +4 -0
- package/styles/drop-down-base/bootstrap5-dark.css +4 -0
- package/styles/drop-down-base/bootstrap5.css +4 -0
- package/styles/drop-down-base/fabric-dark.css +4 -0
- package/styles/drop-down-base/fabric.css +4 -0
- package/styles/drop-down-base/fluent-dark.css +4 -0
- package/styles/drop-down-base/fluent.css +4 -0
- package/styles/drop-down-base/highcontrast-light.css +4 -0
- package/styles/drop-down-base/highcontrast.css +4 -0
- package/styles/drop-down-base/material-dark.css +4 -0
- package/styles/drop-down-base/material.css +4 -0
- package/styles/drop-down-base/material3-dark.css +439 -0
- package/styles/drop-down-base/material3-dark.scss +4 -0
- package/styles/drop-down-base/material3.css +495 -0
- package/styles/drop-down-base/material3.scss +4 -0
- package/styles/drop-down-base/tailwind-dark.css +4 -0
- package/styles/drop-down-base/tailwind.css +4 -0
- package/styles/drop-down-list/_layout.scss +15 -1
- package/styles/drop-down-list/_material3-dark-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +180 -0
- package/styles/drop-down-list/icons/_material3-dark.scss +1 -0
- package/styles/drop-down-list/material3-dark.css +503 -0
- package/styles/drop-down-list/material3-dark.scss +9 -0
- package/styles/drop-down-list/material3.css +559 -0
- package/styles/drop-down-list/material3.scss +9 -0
- package/styles/drop-down-tree/_layout.scss +13 -7
- package/styles/drop-down-tree/_material3-dark-definition.scss +1 -0
- package/styles/drop-down-tree/_material3-definition.scss +76 -0
- package/styles/drop-down-tree/_theme.scss +14 -2
- package/styles/drop-down-tree/icons/_material3-dark.scss +1 -0
- package/styles/drop-down-tree/icons/_material3.scss +1 -1
- package/styles/drop-down-tree/material3-dark.css +466 -0
- package/styles/drop-down-tree/material3-dark.scss +10 -0
- package/styles/drop-down-tree/material3.css +522 -0
- package/styles/drop-down-tree/material3.scss +10 -0
- package/styles/fabric-dark.css +212 -100
- package/styles/fabric.css +214 -101
- package/styles/fluent-dark.css +214 -101
- package/styles/fluent.css +214 -101
- package/styles/highcontrast-light.css +212 -100
- package/styles/highcontrast.css +214 -101
- package/styles/list-box/_layout.scss +17 -3
- package/styles/list-box/_material3-dark-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +117 -0
- package/styles/list-box/_theme.scss +2 -1
- package/styles/list-box/bootstrap-dark.css +207 -99
- package/styles/list-box/bootstrap.css +209 -100
- package/styles/list-box/bootstrap4.css +209 -100
- package/styles/list-box/bootstrap5-dark.css +207 -99
- package/styles/list-box/bootstrap5.css +207 -99
- package/styles/list-box/fabric-dark.css +207 -99
- package/styles/list-box/fabric.css +209 -100
- package/styles/list-box/fluent-dark.css +209 -100
- package/styles/list-box/fluent.css +209 -100
- package/styles/list-box/highcontrast-light.css +207 -99
- package/styles/list-box/highcontrast.css +209 -100
- package/styles/list-box/icons/_material3-dark.scss +1 -0
- package/styles/list-box/material-dark.css +207 -99
- package/styles/list-box/material.css +209 -100
- package/styles/list-box/material3-dark.css +956 -0
- package/styles/list-box/material3-dark.scss +6 -0
- package/styles/list-box/material3.css +1012 -0
- package/styles/list-box/material3.scss +6 -0
- package/styles/list-box/tailwind-dark.css +209 -100
- package/styles/list-box/tailwind.css +209 -100
- package/styles/material-dark.css +212 -100
- package/styles/material.css +214 -101
- package/styles/material3-dark.css +4664 -0
- package/styles/material3-dark.scss +10 -0
- package/styles/material3.css +4720 -0
- package/styles/material3.scss +10 -0
- package/styles/mention/_material3-dark-definition.scss +1 -0
- package/styles/mention/_material3-definition.scss +1 -0
- package/styles/mention/material3-dark.css +87 -0
- package/styles/mention/material3-dark.scss +7 -0
- package/styles/mention/material3.css +143 -0
- package/styles/mention/material3.scss +7 -0
- package/styles/multi-select/_layout.scss +160 -7
- package/styles/multi-select/_material3-dark-definition.scss +1 -0
- package/styles/multi-select/_material3-definition.scss +246 -0
- package/styles/multi-select/_theme.scss +6 -0
- package/styles/multi-select/bootstrap-dark.css +1 -1
- package/styles/multi-select/bootstrap.css +1 -1
- package/styles/multi-select/bootstrap4.css +1 -1
- package/styles/multi-select/bootstrap5-dark.css +1 -1
- package/styles/multi-select/bootstrap5.css +1 -1
- package/styles/multi-select/fabric-dark.css +1 -1
- package/styles/multi-select/fabric.css +1 -1
- package/styles/multi-select/fluent-dark.css +1 -1
- package/styles/multi-select/fluent.css +1 -1
- package/styles/multi-select/highcontrast-light.css +1 -1
- package/styles/multi-select/highcontrast.css +1 -1
- package/styles/multi-select/icons/_material3-dark.scss +1 -0
- package/styles/multi-select/icons/_material3.scss +3 -4
- package/styles/multi-select/material-dark.css +1 -1
- package/styles/multi-select/material.css +1 -1
- package/styles/multi-select/material3-dark.css +2547 -0
- package/styles/multi-select/material3-dark.scss +10 -0
- package/styles/multi-select/material3.css +2603 -0
- package/styles/multi-select/material3.scss +10 -0
- package/styles/multi-select/tailwind-dark.css +1 -1
- package/styles/multi-select/tailwind.css +1 -1
- package/styles/tailwind-dark.css +214 -101
- package/styles/tailwind.css +214 -101
|
@@ -0,0 +1,495 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
|
+
:root {
|
|
3
|
+
--color-sf-black: 0, 0, 0;
|
|
4
|
+
--color-sf-white: 255, 255, 255;
|
|
5
|
+
--color-sf-primary: 103, 80, 164;
|
|
6
|
+
--color-sf-primary-container: 234, 221, 255;
|
|
7
|
+
--color-sf-secondary: 98, 91, 113;
|
|
8
|
+
--color-sf-secondary-container: 232, 222, 248;
|
|
9
|
+
--color-sf-tertiary: 125, 82, 96;
|
|
10
|
+
--color-sf-tertiary-container: 255, 216, 228;
|
|
11
|
+
--color-sf-surface: 255, 255, 255;
|
|
12
|
+
--color-sf-surface-variant: 231, 224, 236;
|
|
13
|
+
--color-sf-background: var(--color-sf-surface);
|
|
14
|
+
--color-sf-on-primary: 255, 255, 255;
|
|
15
|
+
--color-sf-on-primary-container: 33, 0, 94;
|
|
16
|
+
--color-sf-on-secondary: 255, 255, 255;
|
|
17
|
+
--color-sf-on-secondary-container: 30, 25, 43;
|
|
18
|
+
--color-sf-on-tertiary: 255, 255, 255;
|
|
19
|
+
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
20
|
+
--color-sf-on-surface: 28, 27, 31;
|
|
21
|
+
--color-sf-on-surface-variant: 73, 69, 78;
|
|
22
|
+
--color-sf-on-background: 28, 27, 31;
|
|
23
|
+
--color-sf-outline: 121, 116, 126;
|
|
24
|
+
--color-sf-outline-variant: 196, 199, 197;
|
|
25
|
+
--color-sf-shadow: 0, 0, 0;
|
|
26
|
+
--color-sf-surface-tint-color: 103, 80, 164;
|
|
27
|
+
--color-sf-inverse-surface: 49, 48, 51;
|
|
28
|
+
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
29
|
+
--color-sf-inverse-primary: 208, 188, 255;
|
|
30
|
+
--color-sf-scrim: 0, 0, 0;
|
|
31
|
+
--color-sf-error: 179, 38, 30;
|
|
32
|
+
--color-sf-error-container: 249, 222, 220;
|
|
33
|
+
--color-sf-on-error: 255, 250, 250;
|
|
34
|
+
--color-sf-on-error-container: 65, 14, 11;
|
|
35
|
+
--color-sf-success: 32, 81, 7;
|
|
36
|
+
--color-sf-success-container: 209, 255, 186;
|
|
37
|
+
--color-sf-on-success: 244, 255, 239;
|
|
38
|
+
--color-sf-on-success-container: 13, 39, 0;
|
|
39
|
+
--color-sf-info: 1, 87, 155;
|
|
40
|
+
--color-sf-info-container: 233, 245, 255;
|
|
41
|
+
--color-sf-on-info: 250, 253, 255;
|
|
42
|
+
--color-sf-on-info-container: 0, 51, 91;
|
|
43
|
+
--color-sf-warning: 145, 76, 0;
|
|
44
|
+
--color-sf-warning-container: 254, 236, 222;
|
|
45
|
+
--color-sf-on-warning: 255, 255, 255;
|
|
46
|
+
--color-sf-on-warning-container: 47, 21, 0;
|
|
47
|
+
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
48
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
49
|
+
--color-sf-diagram-palette-background: --color-sf-white;
|
|
50
|
+
--color-sf-success-text: 255, 255, 255;
|
|
51
|
+
--color-sf-warning-text: 255, 255, 255;
|
|
52
|
+
--color-sf-danger-text: 255, 255, 255;
|
|
53
|
+
--color-sf-info-text: 255, 255, 255;
|
|
54
|
+
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
55
|
+
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-dark-mode {
|
|
59
|
+
--color-sf-black: 0, 0, 0;
|
|
60
|
+
--color-sf-white: 255, 255, 255;
|
|
61
|
+
--color-sf-primary: 208, 188, 255;
|
|
62
|
+
--color-sf-primary-container: 79, 55, 139;
|
|
63
|
+
--color-sf-secondary: 204, 194, 220;
|
|
64
|
+
--color-sf-secondary-container: 74, 68, 88;
|
|
65
|
+
--color-sf-tertiary: 239, 184, 200;
|
|
66
|
+
--color-sf-tertiary-container: 99, 59, 72;
|
|
67
|
+
--color-sf-surface: 28, 27, 31;
|
|
68
|
+
--color-sf-surface-variant: 28, 27, 31;
|
|
69
|
+
--color-sf-background: var(--color-sf-surface);
|
|
70
|
+
--color-sf-on-primary: 55, 30, 115;
|
|
71
|
+
--color-sf-on-primary-container: 234, 221, 255;
|
|
72
|
+
--color-sf-on-secondary: 51, 45, 65;
|
|
73
|
+
--color-sf-on-secondary-container: 232, 222, 248;
|
|
74
|
+
--color-sf-on-tertiary: 73, 37, 50;
|
|
75
|
+
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
76
|
+
--color-sf-on-surface: 230, 225, 229;
|
|
77
|
+
--color-sf-on-surface-variant: 202, 196, 208;
|
|
78
|
+
--color-sf-on-background: 230, 225, 229;
|
|
79
|
+
--color-sf-outline: 147, 143, 153;
|
|
80
|
+
--color-sf-outline-variant: 68, 71, 70;
|
|
81
|
+
--color-sf-shadow: 0, 0, 0;
|
|
82
|
+
--color-sf-surface-tint-color: 208, 188, 255;
|
|
83
|
+
--color-sf-inverse-surface: 230, 225, 229;
|
|
84
|
+
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
85
|
+
--color-sf-inverse-primary: 103, 80, 164;
|
|
86
|
+
--color-sf-scrim: 0, 0, 0;
|
|
87
|
+
--color-sf-error: 242, 184, 181;
|
|
88
|
+
--color-sf-error-container: 140, 29, 24;
|
|
89
|
+
--color-sf-on-error: 96, 20, 16;
|
|
90
|
+
--color-sf-on-error-container: 249, 222, 220;
|
|
91
|
+
--color-sf-success: 83, 202, 23;
|
|
92
|
+
--color-sf-success-container: 22, 62, 2;
|
|
93
|
+
--color-sf-on-success: 13, 39, 0;
|
|
94
|
+
--color-sf-on-success-container: 183, 250, 150;
|
|
95
|
+
--color-sf-info: 71, 172, 251;
|
|
96
|
+
--color-sf-info-container: 0, 67, 120;
|
|
97
|
+
--color-sf-on-info: 0, 51, 91;
|
|
98
|
+
--color-sf-on-info-container: 173, 219, 255;
|
|
99
|
+
--color-sf-warning: 245, 180, 130;
|
|
100
|
+
--color-sf-warning-container: 123, 65, 0;
|
|
101
|
+
--color-sf-on-warning: 99, 52, 0;
|
|
102
|
+
--color-sf-on-warning-container: 255, 220, 193;
|
|
103
|
+
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
104
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
105
|
+
--color-sf-success-text: 0, 0, 0;
|
|
106
|
+
--color-sf-warning-text: 0, 0, 0;
|
|
107
|
+
--color-sf-info-text: 0, 0, 0;
|
|
108
|
+
--color-sf-danger-text: 0, 0, 0;
|
|
109
|
+
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
110
|
+
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-dropdownbase .e-list-item .e-list-icon {
|
|
114
|
+
padding: 0 16px 0 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
118
|
+
padding: 0 12px 0 0;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
122
|
+
padding: 0 16px 0 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.e-bigger .e-dropdownbase,
|
|
126
|
+
.e-dropdownbase.e-bigger {
|
|
127
|
+
min-height: 45px;
|
|
128
|
+
}
|
|
129
|
+
.e-bigger .e-dropdownbase .e-list-item,
|
|
130
|
+
.e-dropdownbase.e-bigger .e-list-item {
|
|
131
|
+
line-height: 40px;
|
|
132
|
+
text-indent: 16px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-bigger .e-dropdownbase .e-list-group-item, .e-bigger .e-dropdownbase .e-fixed-head,
|
|
136
|
+
.e-dropdownbase.e-bigger .e-list-group-item,
|
|
137
|
+
.e-dropdownbase.e-bigger .e-fixed-head {
|
|
138
|
+
line-height: 40px;
|
|
139
|
+
text-indent: 16px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-bigger .e-dropdownbase .e-list-item .e-list-icon,
|
|
143
|
+
.e-dropdownbase.e-bigger .e-list-item .e-list-icon {
|
|
144
|
+
font-size: 20px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-dropdownbase {
|
|
148
|
+
display: block;
|
|
149
|
+
height: 100%;
|
|
150
|
+
min-height: 36px;
|
|
151
|
+
position: relative;
|
|
152
|
+
width: 100%;
|
|
153
|
+
}
|
|
154
|
+
.e-dropdownbase .e-list-parent {
|
|
155
|
+
margin: 0;
|
|
156
|
+
padding: 0;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-dropdownbase .e-list-group-item, .e-dropdownbase .e-fixed-head {
|
|
160
|
+
cursor: default;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-dropdownbase .e-list-item {
|
|
164
|
+
cursor: pointer;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
position: relative;
|
|
167
|
+
text-overflow: ellipsis;
|
|
168
|
+
vertical-align: middle;
|
|
169
|
+
white-space: nowrap;
|
|
170
|
+
width: 100%;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.e-dropdownbase .e-list-item .e-list-icon {
|
|
174
|
+
font-size: 16px;
|
|
175
|
+
vertical-align: middle;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-dropdownbase .e-fixed-head {
|
|
179
|
+
position: absolute;
|
|
180
|
+
top: 0;
|
|
181
|
+
}
|
|
182
|
+
.e-rtl .e-dropdownbase .e-fixed-head {
|
|
183
|
+
left: 33px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-dropdownbase.e-content {
|
|
187
|
+
overflow: auto;
|
|
188
|
+
position: relative;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
192
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
193
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
194
|
+
cursor: default;
|
|
195
|
+
font-family: inherit;
|
|
196
|
+
font-size: 14px;
|
|
197
|
+
padding: 14px 16px;
|
|
198
|
+
text-align: center;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-mention.e-popup {
|
|
202
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
203
|
+
border: 0;
|
|
204
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
205
|
+
margin-top: 2px;
|
|
206
|
+
position: absolute;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
210
|
+
display: inline;
|
|
211
|
+
font-weight: bold;
|
|
212
|
+
vertical-align: baseline;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-mention .e-mention-chip,
|
|
216
|
+
.e-mention .e-mention-chip:hover {
|
|
217
|
+
border-radius: 2px;
|
|
218
|
+
border: none;
|
|
219
|
+
color: rgba(var(--color-sf-primary));
|
|
220
|
+
cursor: default;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.e-mention .e-mention-chip::selection {
|
|
224
|
+
color: rgba(var(--color-sf-surface));
|
|
225
|
+
background: rgba(var(--color-sf-primary));
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.e-mention.e-editable-element {
|
|
229
|
+
border: 2px solid #e0e0e0;
|
|
230
|
+
height: auto;
|
|
231
|
+
min-height: 120px;
|
|
232
|
+
width: 100%;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.e-form-mirror-div {
|
|
236
|
+
white-space: pre-wrap;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
240
|
+
padding-right: 2em;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.e-dropdownbase.e-dd-group .e-list-item {
|
|
244
|
+
padding-left: 2em;
|
|
245
|
+
text-indent: 0;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-small .e-dropdownbase.e-dd-group .e-list-item {
|
|
249
|
+
padding-left: 2em;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.e-bigger .e-dropdownbase.e-dd-group .e-list-item {
|
|
253
|
+
padding-left: 2em;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.e-small.e-bigger .e-dropdownbase.e-dd-group .e-list-item {
|
|
257
|
+
padding-left: 2em;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-group-item {
|
|
261
|
+
text-indent: 0;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-group-item {
|
|
265
|
+
cursor: pointer;
|
|
266
|
+
font-weight: normal;
|
|
267
|
+
overflow: hidden;
|
|
268
|
+
position: relative;
|
|
269
|
+
text-overflow: ellipsis;
|
|
270
|
+
vertical-align: middle;
|
|
271
|
+
white-space: nowrap;
|
|
272
|
+
width: 100%;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.e-rtl.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-item {
|
|
276
|
+
padding-right: 2em;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.e-rtl .e-dropdownbase .e-list-item {
|
|
280
|
+
padding-left: 16px;
|
|
281
|
+
padding-right: 0;
|
|
282
|
+
}
|
|
283
|
+
.e-small.e-rtl .e-dropdownbase .e-list-item,
|
|
284
|
+
.e-small .e-rtl .e-dropdownbase .e-list-item,
|
|
285
|
+
.e-rtl .e-small .e-dropdownbase .e-list-item {
|
|
286
|
+
padding-left: 16px;
|
|
287
|
+
padding-right: 0;
|
|
288
|
+
}
|
|
289
|
+
.e-small.e-bigger.e-rtl .e-dropdownbase .e-list-item,
|
|
290
|
+
.e-small.e-bigger .e-rtl .e-dropdownbase .e-list-item,
|
|
291
|
+
.e-rtl .e-small.e-bigger .e-dropdownbase .e-list-item,
|
|
292
|
+
.e-small .e-rtl.e-bigger .e-dropdownbase .e-list-item,
|
|
293
|
+
.e-bigger .e-rtl.e-small .e-dropdownbase .e-list-item {
|
|
294
|
+
padding-left: 16px;
|
|
295
|
+
padding-right: 0;
|
|
296
|
+
}
|
|
297
|
+
.e-dropdownbase {
|
|
298
|
+
border-color: #e0e0e0;
|
|
299
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
300
|
+
}
|
|
301
|
+
.e-dropdownbase .e-list-item {
|
|
302
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
303
|
+
-webkit-tap-highlight-color: transparent;
|
|
304
|
+
border-bottom: 0;
|
|
305
|
+
border-color: rgba(var(--color-sf-surface));
|
|
306
|
+
color: rgba(var(--color-sf-on-surface));
|
|
307
|
+
font-family: inherit;
|
|
308
|
+
font-size: 13px;
|
|
309
|
+
line-height: 32px;
|
|
310
|
+
min-height: 32px;
|
|
311
|
+
padding-right: 16px;
|
|
312
|
+
text-indent: 16px;
|
|
313
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.e-dropdownbase .e-list-group-item,
|
|
317
|
+
.e-fixed-head {
|
|
318
|
+
border-color: rgba(var(--color-sf-surface));
|
|
319
|
+
color: rgba(var(--color-sf-on-surface));
|
|
320
|
+
font-family: inherit;
|
|
321
|
+
font-size: 13px;
|
|
322
|
+
font-weight: 600;
|
|
323
|
+
line-height: 32px;
|
|
324
|
+
min-height: 32px;
|
|
325
|
+
padding-left: 16px;
|
|
326
|
+
padding-right: 16px;
|
|
327
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.e-dropdownbase .e-list-item.e-active, .e-dropdownbase .e-list-item.e-active.e-hover {
|
|
331
|
+
background: rgba(var(--color-sf-primary-container));
|
|
332
|
+
border-color: #e0e0e0;
|
|
333
|
+
color: rgba(var(--color-sf-on-surface));
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.e-dropdownbase .e-list-item.e-hover {
|
|
337
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
338
|
+
border-color: #e0e0e0;
|
|
339
|
+
color: rgba(var(--color-sf-on-surface));
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.e-dropdownbase .e-list-item:active {
|
|
343
|
+
background: rgba(var(--color-sf-on-surface), 0.08);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.e-dropdownbase .e-list-item:last-child {
|
|
347
|
+
border-bottom: 0;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.e-dropdownbase .e-list-item.e-item-focus {
|
|
351
|
+
background: rgba(var(--color-sf-on-surface), 0.04);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.e-bigger .e-dropdownbase .e-list-group-item, .e-bigger .e-dropdownbase .e-fixed-head {
|
|
355
|
+
font-size: 14px;
|
|
356
|
+
padding-left: 16px;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open table {
|
|
360
|
+
border-collapse: collapse;
|
|
361
|
+
table-layout: fixed;
|
|
362
|
+
width: 100%;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open th,
|
|
366
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open td {
|
|
367
|
+
display: table-cell;
|
|
368
|
+
overflow: hidden;
|
|
369
|
+
padding-right: 16px;
|
|
370
|
+
text-indent: 10px;
|
|
371
|
+
text-overflow: ellipsis;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open th {
|
|
375
|
+
line-height: 36px;
|
|
376
|
+
text-align: left;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-ddl-header {
|
|
380
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
381
|
+
border-color: #e0e0e0;
|
|
382
|
+
border-style: solid;
|
|
383
|
+
border-width: 0 0 1px 0;
|
|
384
|
+
color: rgba(var(--color-sf-on-surface));
|
|
385
|
+
font-family: inherit;
|
|
386
|
+
font-size: 13px;
|
|
387
|
+
font-weight: 600;
|
|
388
|
+
text-indent: 10px;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-dropdownbase .e-list-item {
|
|
392
|
+
padding-right: 0;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open.e-scroller .e-ddl-header {
|
|
396
|
+
padding-right: 16px;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-ddl-header,
|
|
400
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open.e-ddl-device .e-ddl-header {
|
|
401
|
+
padding-right: 0;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-text-center {
|
|
405
|
+
text-align: center;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-text-right {
|
|
409
|
+
text-align: right;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.e-multi-column.e-ddl.e-popup.e-popup-open .e-text-left {
|
|
413
|
+
text-align: left;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.e-small .e-dropdownbase .e-list-item,
|
|
417
|
+
.e-dropdownbase.e-small .e-list-item {
|
|
418
|
+
color: rgba(var(--color-sf-on-surface));
|
|
419
|
+
line-height: 26px;
|
|
420
|
+
min-height: 26px;
|
|
421
|
+
text-indent: 12px;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.e-small .e-dropdownbase .e-list-group-item, .e-small .e-dropdownbase .e-fixed-head,
|
|
425
|
+
.e-dropdownbase.e-small .e-list-group-item,
|
|
426
|
+
.e-dropdownbase.e-small .e-fixed-head {
|
|
427
|
+
font-size: 13px;
|
|
428
|
+
line-height: 26px;
|
|
429
|
+
min-height: 26px;
|
|
430
|
+
padding-left: 16px;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.e-small .e-dropdownbase .e-list-item .e-list-icon,
|
|
434
|
+
.e-dropdownbase.e-small .e-list-item .e-list-icon {
|
|
435
|
+
font-size: 14px;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item,
|
|
439
|
+
.e-dropdownbase.e-small.e-bigger .e-list-item {
|
|
440
|
+
color: rgba(var(--color-sf-on-surface));
|
|
441
|
+
line-height: 36px;
|
|
442
|
+
min-height: 36px;
|
|
443
|
+
text-indent: 16px;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.e-bigger.e-small .e-dropdownbase .e-list-group-item, .e-bigger.e-small .e-dropdownbase .e-fixed-head,
|
|
447
|
+
.e-dropdownbase.e-small.e-bigger .e-list-group-item,
|
|
448
|
+
.e-dropdownbase.e-small.e-bigger .e-fixed-head {
|
|
449
|
+
line-height: 36px;
|
|
450
|
+
min-height: 36px;
|
|
451
|
+
padding-left: 16px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon,
|
|
455
|
+
.e-dropdownbase.e-small.e-bigger .e-list-item .e-list-icon {
|
|
456
|
+
font-size: 18px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.e-bigger.e-small .e-dropdownbase .e-list-group-item, .e-bigger.e-small .e-dropdownbase .e-fixed-head,
|
|
460
|
+
.e-dropdownbase.e-bigger.e-small .e-list-group-item,
|
|
461
|
+
.e-dropdownbase.e-bigger.e-small .e-fixed-head {
|
|
462
|
+
font-size: 13px;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item {
|
|
466
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
467
|
+
border-bottom: 0;
|
|
468
|
+
border-color: rgba(var(--color-sf-surface));
|
|
469
|
+
color: rgba(var(--color-sf-on-surface));
|
|
470
|
+
font-family: inherit;
|
|
471
|
+
text-indent: 16px;
|
|
472
|
+
font-size: 13px;
|
|
473
|
+
padding-right: 16px;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
|
|
477
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
|
|
481
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
|
|
482
|
+
background: rgba(var(--color-sf-primary-container));
|
|
483
|
+
border-color: #e0e0e0;
|
|
484
|
+
color: rgba(var(--color-sf-on-surface));
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
|
|
488
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
489
|
+
border-color: #e0e0e0;
|
|
490
|
+
color: rgba(var(--color-sf-on-surface));
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.e-selectall-parent.e-item-focus {
|
|
494
|
+
background-color: rgba(var(--color-sf-on-surface), 0.05);
|
|
495
|
+
}
|
|
@@ -6,6 +6,14 @@
|
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
.e-ddl#{&}.e-popup {
|
|
10
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
11
|
+
@if ($skin-name == 'Material3') {
|
|
12
|
+
margin-top: 4px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
9
17
|
.e-bigger .e-ddl#{&}.e-popup {
|
|
10
18
|
#{if(&, '&', '*')} .e-list-item {
|
|
11
19
|
font-size: $ddl-bigger-list-font-size;
|
|
@@ -18,9 +26,12 @@
|
|
|
18
26
|
}
|
|
19
27
|
|
|
20
28
|
#{if(&, '&', '*')} .e-input-group {
|
|
21
|
-
@if ($skin-name != 'bootstrap5' and $skin-name != 'tailwind' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark') {
|
|
29
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'tailwind' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark' and $skin-name != 'Material3') {
|
|
22
30
|
padding: 4px 0;
|
|
23
31
|
}
|
|
32
|
+
@if ($skin-name == 'Material3') {
|
|
33
|
+
margin-top: 8px;
|
|
34
|
+
}
|
|
24
35
|
}
|
|
25
36
|
}
|
|
26
37
|
|
|
@@ -107,6 +118,9 @@
|
|
|
107
118
|
@if $skin-name != 'material' and $skin-name != 'Material3' {
|
|
108
119
|
border: 1px solid $ddl-default-border-color;
|
|
109
120
|
}
|
|
121
|
+
@if $skin-name == 'Material3' {
|
|
122
|
+
border-radius: 4px;
|
|
123
|
+
}
|
|
110
124
|
position: absolute;
|
|
111
125
|
@at-root {
|
|
112
126
|
#{if(&, '&', '*')} .e-search-icon {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|