@open-condo/ui 2.5.0 → 2.6.0
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/dist/components/Button/button.d.ts +1 -0
- package/dist/components/Button/button.d.ts.map +1 -1
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/Button/index.d.ts.map +1 -1
- package/dist/components/Dropdown/button/extendedButton.d.ts +10 -0
- package/dist/components/Dropdown/button/extendedButton.d.ts.map +1 -0
- package/dist/components/Dropdown/button/index.d.ts +30 -0
- package/dist/components/Dropdown/button/index.d.ts.map +1 -0
- package/dist/components/Dropdown/dropdown.d.ts +7 -0
- package/dist/components/Dropdown/dropdown.d.ts.map +1 -0
- package/dist/components/Dropdown/hooks/useItems.d.ts +6 -0
- package/dist/components/Dropdown/hooks/useItems.d.ts.map +1 -0
- package/dist/components/Dropdown/index.d.ts +11 -0
- package/dist/components/Dropdown/index.d.ts.map +1 -0
- package/dist/components/_utils/analytics.d.ts +7 -1
- package/dist/components/_utils/analytics.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1623 -434
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +884 -0
- package/dist/styles.min.css +2 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -54,6 +54,370 @@
|
|
|
54
54
|
font-display: swap;
|
|
55
55
|
src: url(https://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49o.ttf) format('truetype');
|
|
56
56
|
}
|
|
57
|
+
.ant-slide-up-enter,
|
|
58
|
+
.ant-slide-up-appear {
|
|
59
|
+
-webkit-animation-duration: 0.15s;
|
|
60
|
+
animation-duration: 0.15s;
|
|
61
|
+
-webkit-animation-fill-mode: both;
|
|
62
|
+
animation-fill-mode: both;
|
|
63
|
+
-webkit-animation-play-state: paused;
|
|
64
|
+
animation-play-state: paused;
|
|
65
|
+
}
|
|
66
|
+
.ant-slide-up-leave {
|
|
67
|
+
-webkit-animation-duration: 0.15s;
|
|
68
|
+
animation-duration: 0.15s;
|
|
69
|
+
-webkit-animation-fill-mode: both;
|
|
70
|
+
animation-fill-mode: both;
|
|
71
|
+
-webkit-animation-play-state: paused;
|
|
72
|
+
animation-play-state: paused;
|
|
73
|
+
}
|
|
74
|
+
.ant-slide-up-enter.ant-slide-up-enter-active,
|
|
75
|
+
.ant-slide-up-appear.ant-slide-up-appear-active {
|
|
76
|
+
-webkit-animation-name: ant-slide-up-in;
|
|
77
|
+
animation-name: ant-slide-up-in;
|
|
78
|
+
-webkit-animation-play-state: running;
|
|
79
|
+
animation-play-state: running;
|
|
80
|
+
}
|
|
81
|
+
.ant-slide-up-leave.ant-slide-up-leave-active {
|
|
82
|
+
-webkit-animation-name: ant-slide-up-out;
|
|
83
|
+
animation-name: ant-slide-up-out;
|
|
84
|
+
-webkit-animation-play-state: running;
|
|
85
|
+
animation-play-state: running;
|
|
86
|
+
pointer-events: none;
|
|
87
|
+
}
|
|
88
|
+
.ant-slide-up-enter,
|
|
89
|
+
.ant-slide-up-appear {
|
|
90
|
+
transform: scale(0);
|
|
91
|
+
transform-origin: 0 0;
|
|
92
|
+
opacity: 0;
|
|
93
|
+
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
94
|
+
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
95
|
+
}
|
|
96
|
+
.ant-slide-up-leave {
|
|
97
|
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
98
|
+
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
99
|
+
}
|
|
100
|
+
.ant-slide-down-enter,
|
|
101
|
+
.ant-slide-down-appear {
|
|
102
|
+
-webkit-animation-duration: 0.15s;
|
|
103
|
+
animation-duration: 0.15s;
|
|
104
|
+
-webkit-animation-fill-mode: both;
|
|
105
|
+
animation-fill-mode: both;
|
|
106
|
+
-webkit-animation-play-state: paused;
|
|
107
|
+
animation-play-state: paused;
|
|
108
|
+
}
|
|
109
|
+
.ant-slide-down-leave {
|
|
110
|
+
-webkit-animation-duration: 0.15s;
|
|
111
|
+
animation-duration: 0.15s;
|
|
112
|
+
-webkit-animation-fill-mode: both;
|
|
113
|
+
animation-fill-mode: both;
|
|
114
|
+
-webkit-animation-play-state: paused;
|
|
115
|
+
animation-play-state: paused;
|
|
116
|
+
}
|
|
117
|
+
.ant-slide-down-enter.ant-slide-down-enter-active,
|
|
118
|
+
.ant-slide-down-appear.ant-slide-down-appear-active {
|
|
119
|
+
-webkit-animation-name: ant-slide-down-in;
|
|
120
|
+
animation-name: ant-slide-down-in;
|
|
121
|
+
-webkit-animation-play-state: running;
|
|
122
|
+
animation-play-state: running;
|
|
123
|
+
}
|
|
124
|
+
.ant-slide-down-leave.ant-slide-down-leave-active {
|
|
125
|
+
-webkit-animation-name: ant-slide-down-out;
|
|
126
|
+
animation-name: ant-slide-down-out;
|
|
127
|
+
-webkit-animation-play-state: running;
|
|
128
|
+
animation-play-state: running;
|
|
129
|
+
pointer-events: none;
|
|
130
|
+
}
|
|
131
|
+
.ant-slide-down-enter,
|
|
132
|
+
.ant-slide-down-appear {
|
|
133
|
+
transform: scale(0);
|
|
134
|
+
transform-origin: 0 0;
|
|
135
|
+
opacity: 0;
|
|
136
|
+
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
137
|
+
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
138
|
+
}
|
|
139
|
+
.ant-slide-down-leave {
|
|
140
|
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
141
|
+
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
142
|
+
}
|
|
143
|
+
.ant-slide-left-enter,
|
|
144
|
+
.ant-slide-left-appear {
|
|
145
|
+
-webkit-animation-duration: 0.15s;
|
|
146
|
+
animation-duration: 0.15s;
|
|
147
|
+
-webkit-animation-fill-mode: both;
|
|
148
|
+
animation-fill-mode: both;
|
|
149
|
+
-webkit-animation-play-state: paused;
|
|
150
|
+
animation-play-state: paused;
|
|
151
|
+
}
|
|
152
|
+
.ant-slide-left-leave {
|
|
153
|
+
-webkit-animation-duration: 0.15s;
|
|
154
|
+
animation-duration: 0.15s;
|
|
155
|
+
-webkit-animation-fill-mode: both;
|
|
156
|
+
animation-fill-mode: both;
|
|
157
|
+
-webkit-animation-play-state: paused;
|
|
158
|
+
animation-play-state: paused;
|
|
159
|
+
}
|
|
160
|
+
.ant-slide-left-enter.ant-slide-left-enter-active,
|
|
161
|
+
.ant-slide-left-appear.ant-slide-left-appear-active {
|
|
162
|
+
-webkit-animation-name: ant-slide-left-in;
|
|
163
|
+
animation-name: ant-slide-left-in;
|
|
164
|
+
-webkit-animation-play-state: running;
|
|
165
|
+
animation-play-state: running;
|
|
166
|
+
}
|
|
167
|
+
.ant-slide-left-leave.ant-slide-left-leave-active {
|
|
168
|
+
-webkit-animation-name: ant-slide-left-out;
|
|
169
|
+
animation-name: ant-slide-left-out;
|
|
170
|
+
-webkit-animation-play-state: running;
|
|
171
|
+
animation-play-state: running;
|
|
172
|
+
pointer-events: none;
|
|
173
|
+
}
|
|
174
|
+
.ant-slide-left-enter,
|
|
175
|
+
.ant-slide-left-appear {
|
|
176
|
+
transform: scale(0);
|
|
177
|
+
transform-origin: 0 0;
|
|
178
|
+
opacity: 0;
|
|
179
|
+
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
180
|
+
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
181
|
+
}
|
|
182
|
+
.ant-slide-left-leave {
|
|
183
|
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
184
|
+
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
185
|
+
}
|
|
186
|
+
.ant-slide-right-enter,
|
|
187
|
+
.ant-slide-right-appear {
|
|
188
|
+
-webkit-animation-duration: 0.15s;
|
|
189
|
+
animation-duration: 0.15s;
|
|
190
|
+
-webkit-animation-fill-mode: both;
|
|
191
|
+
animation-fill-mode: both;
|
|
192
|
+
-webkit-animation-play-state: paused;
|
|
193
|
+
animation-play-state: paused;
|
|
194
|
+
}
|
|
195
|
+
.ant-slide-right-leave {
|
|
196
|
+
-webkit-animation-duration: 0.15s;
|
|
197
|
+
animation-duration: 0.15s;
|
|
198
|
+
-webkit-animation-fill-mode: both;
|
|
199
|
+
animation-fill-mode: both;
|
|
200
|
+
-webkit-animation-play-state: paused;
|
|
201
|
+
animation-play-state: paused;
|
|
202
|
+
}
|
|
203
|
+
.ant-slide-right-enter.ant-slide-right-enter-active,
|
|
204
|
+
.ant-slide-right-appear.ant-slide-right-appear-active {
|
|
205
|
+
-webkit-animation-name: ant-slide-right-in;
|
|
206
|
+
animation-name: ant-slide-right-in;
|
|
207
|
+
-webkit-animation-play-state: running;
|
|
208
|
+
animation-play-state: running;
|
|
209
|
+
}
|
|
210
|
+
.ant-slide-right-leave.ant-slide-right-leave-active {
|
|
211
|
+
-webkit-animation-name: ant-slide-right-out;
|
|
212
|
+
animation-name: ant-slide-right-out;
|
|
213
|
+
-webkit-animation-play-state: running;
|
|
214
|
+
animation-play-state: running;
|
|
215
|
+
pointer-events: none;
|
|
216
|
+
}
|
|
217
|
+
.ant-slide-right-enter,
|
|
218
|
+
.ant-slide-right-appear {
|
|
219
|
+
transform: scale(0);
|
|
220
|
+
transform-origin: 0 0;
|
|
221
|
+
opacity: 0;
|
|
222
|
+
-webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
223
|
+
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
224
|
+
}
|
|
225
|
+
.ant-slide-right-leave {
|
|
226
|
+
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
227
|
+
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
228
|
+
}
|
|
229
|
+
@-webkit-keyframes ant-slide-up-in {
|
|
230
|
+
0% {
|
|
231
|
+
transform: scaleY(0.8);
|
|
232
|
+
transform-origin: 0 0;
|
|
233
|
+
opacity: 0;
|
|
234
|
+
}
|
|
235
|
+
100% {
|
|
236
|
+
transform: scaleY(1);
|
|
237
|
+
transform-origin: 0 0;
|
|
238
|
+
opacity: 1;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
@keyframes ant-slide-up-in {
|
|
242
|
+
0% {
|
|
243
|
+
transform: scaleY(0.8);
|
|
244
|
+
transform-origin: 0 0;
|
|
245
|
+
opacity: 0;
|
|
246
|
+
}
|
|
247
|
+
100% {
|
|
248
|
+
transform: scaleY(1);
|
|
249
|
+
transform-origin: 0 0;
|
|
250
|
+
opacity: 1;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
@-webkit-keyframes ant-slide-up-out {
|
|
254
|
+
0% {
|
|
255
|
+
transform: scaleY(1);
|
|
256
|
+
transform-origin: 0 0;
|
|
257
|
+
opacity: 1;
|
|
258
|
+
}
|
|
259
|
+
100% {
|
|
260
|
+
transform: scaleY(0.8);
|
|
261
|
+
transform-origin: 0 0;
|
|
262
|
+
opacity: 0;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
@keyframes ant-slide-up-out {
|
|
266
|
+
0% {
|
|
267
|
+
transform: scaleY(1);
|
|
268
|
+
transform-origin: 0 0;
|
|
269
|
+
opacity: 1;
|
|
270
|
+
}
|
|
271
|
+
100% {
|
|
272
|
+
transform: scaleY(0.8);
|
|
273
|
+
transform-origin: 0 0;
|
|
274
|
+
opacity: 0;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
@-webkit-keyframes ant-slide-down-in {
|
|
278
|
+
0% {
|
|
279
|
+
transform: scaleY(0.8);
|
|
280
|
+
transform-origin: 100% 100%;
|
|
281
|
+
opacity: 0;
|
|
282
|
+
}
|
|
283
|
+
100% {
|
|
284
|
+
transform: scaleY(1);
|
|
285
|
+
transform-origin: 100% 100%;
|
|
286
|
+
opacity: 1;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
@keyframes ant-slide-down-in {
|
|
290
|
+
0% {
|
|
291
|
+
transform: scaleY(0.8);
|
|
292
|
+
transform-origin: 100% 100%;
|
|
293
|
+
opacity: 0;
|
|
294
|
+
}
|
|
295
|
+
100% {
|
|
296
|
+
transform: scaleY(1);
|
|
297
|
+
transform-origin: 100% 100%;
|
|
298
|
+
opacity: 1;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
@-webkit-keyframes ant-slide-down-out {
|
|
302
|
+
0% {
|
|
303
|
+
transform: scaleY(1);
|
|
304
|
+
transform-origin: 100% 100%;
|
|
305
|
+
opacity: 1;
|
|
306
|
+
}
|
|
307
|
+
100% {
|
|
308
|
+
transform: scaleY(0.8);
|
|
309
|
+
transform-origin: 100% 100%;
|
|
310
|
+
opacity: 0;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
@keyframes ant-slide-down-out {
|
|
314
|
+
0% {
|
|
315
|
+
transform: scaleY(1);
|
|
316
|
+
transform-origin: 100% 100%;
|
|
317
|
+
opacity: 1;
|
|
318
|
+
}
|
|
319
|
+
100% {
|
|
320
|
+
transform: scaleY(0.8);
|
|
321
|
+
transform-origin: 100% 100%;
|
|
322
|
+
opacity: 0;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
@-webkit-keyframes ant-slide-left-in {
|
|
326
|
+
0% {
|
|
327
|
+
transform: scaleX(0.8);
|
|
328
|
+
transform-origin: 0 0;
|
|
329
|
+
opacity: 0;
|
|
330
|
+
}
|
|
331
|
+
100% {
|
|
332
|
+
transform: scaleX(1);
|
|
333
|
+
transform-origin: 0 0;
|
|
334
|
+
opacity: 1;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
@keyframes ant-slide-left-in {
|
|
338
|
+
0% {
|
|
339
|
+
transform: scaleX(0.8);
|
|
340
|
+
transform-origin: 0 0;
|
|
341
|
+
opacity: 0;
|
|
342
|
+
}
|
|
343
|
+
100% {
|
|
344
|
+
transform: scaleX(1);
|
|
345
|
+
transform-origin: 0 0;
|
|
346
|
+
opacity: 1;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
@-webkit-keyframes ant-slide-left-out {
|
|
350
|
+
0% {
|
|
351
|
+
transform: scaleX(1);
|
|
352
|
+
transform-origin: 0 0;
|
|
353
|
+
opacity: 1;
|
|
354
|
+
}
|
|
355
|
+
100% {
|
|
356
|
+
transform: scaleX(0.8);
|
|
357
|
+
transform-origin: 0 0;
|
|
358
|
+
opacity: 0;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
@keyframes ant-slide-left-out {
|
|
362
|
+
0% {
|
|
363
|
+
transform: scaleX(1);
|
|
364
|
+
transform-origin: 0 0;
|
|
365
|
+
opacity: 1;
|
|
366
|
+
}
|
|
367
|
+
100% {
|
|
368
|
+
transform: scaleX(0.8);
|
|
369
|
+
transform-origin: 0 0;
|
|
370
|
+
opacity: 0;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
@-webkit-keyframes ant-slide-right-in {
|
|
374
|
+
0% {
|
|
375
|
+
transform: scaleX(0.8);
|
|
376
|
+
transform-origin: 100% 0;
|
|
377
|
+
opacity: 0;
|
|
378
|
+
}
|
|
379
|
+
100% {
|
|
380
|
+
transform: scaleX(1);
|
|
381
|
+
transform-origin: 100% 0;
|
|
382
|
+
opacity: 1;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
@keyframes ant-slide-right-in {
|
|
386
|
+
0% {
|
|
387
|
+
transform: scaleX(0.8);
|
|
388
|
+
transform-origin: 100% 0;
|
|
389
|
+
opacity: 0;
|
|
390
|
+
}
|
|
391
|
+
100% {
|
|
392
|
+
transform: scaleX(1);
|
|
393
|
+
transform-origin: 100% 0;
|
|
394
|
+
opacity: 1;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
@-webkit-keyframes ant-slide-right-out {
|
|
398
|
+
0% {
|
|
399
|
+
transform: scaleX(1);
|
|
400
|
+
transform-origin: 100% 0;
|
|
401
|
+
opacity: 1;
|
|
402
|
+
}
|
|
403
|
+
100% {
|
|
404
|
+
transform: scaleX(0.8);
|
|
405
|
+
transform-origin: 100% 0;
|
|
406
|
+
opacity: 0;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
@keyframes ant-slide-right-out {
|
|
410
|
+
0% {
|
|
411
|
+
transform: scaleX(1);
|
|
412
|
+
transform-origin: 100% 0;
|
|
413
|
+
opacity: 1;
|
|
414
|
+
}
|
|
415
|
+
100% {
|
|
416
|
+
transform: scaleX(0.8);
|
|
417
|
+
transform-origin: 100% 0;
|
|
418
|
+
opacity: 0;
|
|
419
|
+
}
|
|
420
|
+
}
|
|
57
421
|
:root {
|
|
58
422
|
--condo-font-fallback: sans-serif;
|
|
59
423
|
--condo-font-fallback-mono: consolas, monaco, "Andale Mono", "Ubuntu Mono", monospace;
|
|
@@ -4581,6 +4945,526 @@ a.condo-btn-secondary {
|
|
|
4581
4945
|
visibility: visible;
|
|
4582
4946
|
}
|
|
4583
4947
|
|
|
4948
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
4949
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
4950
|
+
/* stylelint-disable */
|
|
4951
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
4952
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-item-danger {
|
|
4953
|
+
color: #ff4d4f;
|
|
4954
|
+
}
|
|
4955
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-item-danger:hover {
|
|
4956
|
+
color: #fff;
|
|
4957
|
+
background-color: #ff4d4f;
|
|
4958
|
+
}
|
|
4959
|
+
.condo-dropdown {
|
|
4960
|
+
box-sizing: border-box;
|
|
4961
|
+
margin: 0;
|
|
4962
|
+
padding: 0;
|
|
4963
|
+
color: #222222;
|
|
4964
|
+
font-size: 14px;
|
|
4965
|
+
font-variant: tabular-nums;
|
|
4966
|
+
line-height: 1.5715;
|
|
4967
|
+
list-style: none;
|
|
4968
|
+
font-feature-settings: 'tnum', "tnum";
|
|
4969
|
+
position: absolute;
|
|
4970
|
+
top: -9999px;
|
|
4971
|
+
left: -9999px;
|
|
4972
|
+
z-index: 1050;
|
|
4973
|
+
display: block;
|
|
4974
|
+
}
|
|
4975
|
+
.condo-dropdown::before {
|
|
4976
|
+
position: absolute;
|
|
4977
|
+
top: -4px;
|
|
4978
|
+
right: 0;
|
|
4979
|
+
bottom: -4px;
|
|
4980
|
+
left: -7px;
|
|
4981
|
+
z-index: -9999;
|
|
4982
|
+
opacity: 0.0001;
|
|
4983
|
+
content: ' ';
|
|
4984
|
+
}
|
|
4985
|
+
.condo-dropdown-wrap {
|
|
4986
|
+
position: relative;
|
|
4987
|
+
}
|
|
4988
|
+
.condo-dropdown-wrap .condo-btn > .anticon-down {
|
|
4989
|
+
font-size: 10px;
|
|
4990
|
+
}
|
|
4991
|
+
.condo-dropdown-wrap .anticon-down::before {
|
|
4992
|
+
transition: transform 0.2s;
|
|
4993
|
+
}
|
|
4994
|
+
.condo-dropdown-wrap-open .anticon-down::before {
|
|
4995
|
+
transform: rotate(180deg);
|
|
4996
|
+
}
|
|
4997
|
+
.condo-dropdown-hidden,
|
|
4998
|
+
.condo-dropdown-menu-hidden,
|
|
4999
|
+
.condo-dropdown-menu-submenu-hidden {
|
|
5000
|
+
display: none;
|
|
5001
|
+
}
|
|
5002
|
+
.condo-dropdown-show-arrow.condo-dropdown-placement-topLeft,
|
|
5003
|
+
.condo-dropdown-show-arrow.condo-dropdown-placement-top,
|
|
5004
|
+
.condo-dropdown-show-arrow.condo-dropdown-placement-topRight {
|
|
5005
|
+
padding-bottom: 15.3137085px;
|
|
5006
|
+
}
|
|
5007
|
+
.condo-dropdown-show-arrow.condo-dropdown-placement-bottomLeft,
|
|
5008
|
+
.condo-dropdown-show-arrow.condo-dropdown-placement-bottom,
|
|
5009
|
+
.condo-dropdown-show-arrow.condo-dropdown-placement-bottomRight {
|
|
5010
|
+
padding-top: 15.3137085px;
|
|
5011
|
+
}
|
|
5012
|
+
.condo-dropdown-arrow {
|
|
5013
|
+
position: absolute;
|
|
5014
|
+
z-index: 1;
|
|
5015
|
+
display: block;
|
|
5016
|
+
width: 11.3137085px;
|
|
5017
|
+
height: 11.3137085px;
|
|
5018
|
+
border-radius: 0 0 2px;
|
|
5019
|
+
pointer-events: none;
|
|
5020
|
+
}
|
|
5021
|
+
.condo-dropdown-arrow::before {
|
|
5022
|
+
position: absolute;
|
|
5023
|
+
top: -11.3137085px;
|
|
5024
|
+
left: -11.3137085px;
|
|
5025
|
+
width: 33.9411255px;
|
|
5026
|
+
height: 33.9411255px;
|
|
5027
|
+
background: #fff;
|
|
5028
|
+
background-repeat: no-repeat;
|
|
5029
|
+
background-position: -10px -10px;
|
|
5030
|
+
content: '';
|
|
5031
|
+
-webkit-clip-path: inset(33% 33%);
|
|
5032
|
+
clip-path: inset(33% 33%);
|
|
5033
|
+
-webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
|
|
5034
|
+
clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
|
|
5035
|
+
}
|
|
5036
|
+
.condo-dropdown-placement-top > .condo-dropdown-arrow,
|
|
5037
|
+
.condo-dropdown-placement-topLeft > .condo-dropdown-arrow,
|
|
5038
|
+
.condo-dropdown-placement-topRight > .condo-dropdown-arrow {
|
|
5039
|
+
bottom: 10px;
|
|
5040
|
+
box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.1);
|
|
5041
|
+
transform: rotate(45deg);
|
|
5042
|
+
}
|
|
5043
|
+
.condo-dropdown-placement-top > .condo-dropdown-arrow {
|
|
5044
|
+
left: 50%;
|
|
5045
|
+
transform: translateX(-50%) rotate(45deg);
|
|
5046
|
+
}
|
|
5047
|
+
.condo-dropdown-placement-topLeft > .condo-dropdown-arrow {
|
|
5048
|
+
left: 16px;
|
|
5049
|
+
}
|
|
5050
|
+
.condo-dropdown-placement-topRight > .condo-dropdown-arrow {
|
|
5051
|
+
right: 16px;
|
|
5052
|
+
}
|
|
5053
|
+
.condo-dropdown-placement-bottom > .condo-dropdown-arrow,
|
|
5054
|
+
.condo-dropdown-placement-bottomLeft > .condo-dropdown-arrow,
|
|
5055
|
+
.condo-dropdown-placement-bottomRight > .condo-dropdown-arrow {
|
|
5056
|
+
top: 9.41421356px;
|
|
5057
|
+
box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.1);
|
|
5058
|
+
transform: rotate(-135deg) translateY(-0.5px);
|
|
5059
|
+
}
|
|
5060
|
+
.condo-dropdown-placement-bottom > .condo-dropdown-arrow {
|
|
5061
|
+
left: 50%;
|
|
5062
|
+
transform: translateX(-50%) rotate(-135deg) translateY(-0.5px);
|
|
5063
|
+
}
|
|
5064
|
+
.condo-dropdown-placement-bottomLeft > .condo-dropdown-arrow {
|
|
5065
|
+
left: 16px;
|
|
5066
|
+
}
|
|
5067
|
+
.condo-dropdown-placement-bottomRight > .condo-dropdown-arrow {
|
|
5068
|
+
right: 16px;
|
|
5069
|
+
}
|
|
5070
|
+
.condo-dropdown-menu {
|
|
5071
|
+
position: relative;
|
|
5072
|
+
margin: 0;
|
|
5073
|
+
padding: 4px 0;
|
|
5074
|
+
text-align: left;
|
|
5075
|
+
list-style-type: none;
|
|
5076
|
+
background-color: #fff;
|
|
5077
|
+
background-clip: padding-box;
|
|
5078
|
+
border-radius: 2px;
|
|
5079
|
+
outline: none;
|
|
5080
|
+
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
5081
|
+
}
|
|
5082
|
+
.condo-dropdown-menu-item-group-title {
|
|
5083
|
+
padding: 5px 12px;
|
|
5084
|
+
color: rgba(0, 0, 0, 0.45);
|
|
5085
|
+
transition: all 0.3s;
|
|
5086
|
+
}
|
|
5087
|
+
.condo-dropdown-menu-submenu-popup {
|
|
5088
|
+
position: absolute;
|
|
5089
|
+
z-index: 1050;
|
|
5090
|
+
background: transparent;
|
|
5091
|
+
box-shadow: none;
|
|
5092
|
+
transform-origin: 0 0;
|
|
5093
|
+
}
|
|
5094
|
+
.condo-dropdown-menu-submenu-popup ul,
|
|
5095
|
+
.condo-dropdown-menu-submenu-popup li {
|
|
5096
|
+
list-style: none;
|
|
5097
|
+
}
|
|
5098
|
+
.condo-dropdown-menu-submenu-popup ul {
|
|
5099
|
+
margin-right: 0.3em;
|
|
5100
|
+
margin-left: 0.3em;
|
|
5101
|
+
}
|
|
5102
|
+
.condo-dropdown-menu-item {
|
|
5103
|
+
position: relative;
|
|
5104
|
+
display: flex;
|
|
5105
|
+
align-items: center;
|
|
5106
|
+
}
|
|
5107
|
+
.condo-dropdown-menu-item-icon {
|
|
5108
|
+
min-width: 12px;
|
|
5109
|
+
margin-right: 8px;
|
|
5110
|
+
font-size: 12px;
|
|
5111
|
+
}
|
|
5112
|
+
.condo-dropdown-menu-title-content {
|
|
5113
|
+
flex: auto;
|
|
5114
|
+
}
|
|
5115
|
+
.condo-dropdown-menu-title-content > a {
|
|
5116
|
+
color: inherit;
|
|
5117
|
+
transition: all 0.3s;
|
|
5118
|
+
}
|
|
5119
|
+
.condo-dropdown-menu-title-content > a:hover {
|
|
5120
|
+
color: inherit;
|
|
5121
|
+
}
|
|
5122
|
+
.condo-dropdown-menu-title-content > a::after {
|
|
5123
|
+
position: absolute;
|
|
5124
|
+
top: 0;
|
|
5125
|
+
right: 0;
|
|
5126
|
+
bottom: 0;
|
|
5127
|
+
left: 0;
|
|
5128
|
+
content: '';
|
|
5129
|
+
}
|
|
5130
|
+
.condo-dropdown-menu-item,
|
|
5131
|
+
.condo-dropdown-menu-submenu-title {
|
|
5132
|
+
clear: both;
|
|
5133
|
+
margin: 0;
|
|
5134
|
+
padding: 5px 12px;
|
|
5135
|
+
color: #222222;
|
|
5136
|
+
font-weight: normal;
|
|
5137
|
+
font-size: 14px;
|
|
5138
|
+
line-height: 22px;
|
|
5139
|
+
cursor: pointer;
|
|
5140
|
+
transition: all 0.3s;
|
|
5141
|
+
}
|
|
5142
|
+
.condo-dropdown-menu-item-selected,
|
|
5143
|
+
.condo-dropdown-menu-submenu-title-selected {
|
|
5144
|
+
color: #1890ff;
|
|
5145
|
+
background-color: #e6f7ff;
|
|
5146
|
+
}
|
|
5147
|
+
.condo-dropdown-menu-item:hover,
|
|
5148
|
+
.condo-dropdown-menu-submenu-title:hover,
|
|
5149
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-item-active,
|
|
5150
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-submenu-title-active,
|
|
5151
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-item-active,
|
|
5152
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-submenu-title-active {
|
|
5153
|
+
background-color: #f5f5f5;
|
|
5154
|
+
}
|
|
5155
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-item-disabled,
|
|
5156
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-submenu-title-disabled,
|
|
5157
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-item-disabled,
|
|
5158
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-submenu-title-disabled {
|
|
5159
|
+
color: rgba(0, 0, 0, 0.25);
|
|
5160
|
+
cursor: not-allowed;
|
|
5161
|
+
}
|
|
5162
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-item-disabled:hover,
|
|
5163
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-submenu-title-disabled:hover,
|
|
5164
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-item-disabled:hover,
|
|
5165
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-submenu-title-disabled:hover {
|
|
5166
|
+
color: rgba(0, 0, 0, 0.25);
|
|
5167
|
+
background-color: #fff;
|
|
5168
|
+
cursor: not-allowed;
|
|
5169
|
+
}
|
|
5170
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-item-disabled a,
|
|
5171
|
+
.condo-dropdown-menu-item.condo-dropdown-menu-submenu-title-disabled a,
|
|
5172
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-item-disabled a,
|
|
5173
|
+
.condo-dropdown-menu-submenu-title.condo-dropdown-menu-submenu-title-disabled a {
|
|
5174
|
+
pointer-events: none;
|
|
5175
|
+
}
|
|
5176
|
+
.condo-dropdown-menu-item-divider,
|
|
5177
|
+
.condo-dropdown-menu-submenu-title-divider {
|
|
5178
|
+
height: 1px;
|
|
5179
|
+
margin: 4px 0;
|
|
5180
|
+
overflow: hidden;
|
|
5181
|
+
line-height: 0;
|
|
5182
|
+
background-color: #f0f0f0;
|
|
5183
|
+
}
|
|
5184
|
+
.condo-dropdown-menu-item .condo-dropdown-menu-submenu-expand-icon,
|
|
5185
|
+
.condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-expand-icon {
|
|
5186
|
+
position: absolute;
|
|
5187
|
+
right: 8px;
|
|
5188
|
+
}
|
|
5189
|
+
.condo-dropdown-menu-item .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon,
|
|
5190
|
+
.condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon {
|
|
5191
|
+
margin-right: 0 !important;
|
|
5192
|
+
}
|
|
5193
|
+
.condo-dropdown-menu-item .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon,
|
|
5194
|
+
.condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon {
|
|
5195
|
+
color: rgba(0, 0, 0, 0.45);
|
|
5196
|
+
font-size: 10px;
|
|
5197
|
+
font-style: normal;
|
|
5198
|
+
}
|
|
5199
|
+
.condo-dropdown-menu-item-group-list {
|
|
5200
|
+
margin: 0 8px;
|
|
5201
|
+
padding: 0;
|
|
5202
|
+
list-style: none;
|
|
5203
|
+
}
|
|
5204
|
+
.condo-dropdown-menu-submenu-title {
|
|
5205
|
+
padding-right: 24px;
|
|
5206
|
+
}
|
|
5207
|
+
.condo-dropdown-menu-submenu-vertical {
|
|
5208
|
+
position: relative;
|
|
5209
|
+
}
|
|
5210
|
+
.condo-dropdown-menu-submenu-vertical > .condo-dropdown-menu {
|
|
5211
|
+
position: absolute;
|
|
5212
|
+
top: 0;
|
|
5213
|
+
left: 100%;
|
|
5214
|
+
min-width: 100%;
|
|
5215
|
+
margin-left: 4px;
|
|
5216
|
+
transform-origin: 0 0;
|
|
5217
|
+
}
|
|
5218
|
+
.condo-dropdown-menu-submenu.condo-dropdown-menu-submenu-disabled .condo-dropdown-menu-submenu-title,
|
|
5219
|
+
.condo-dropdown-menu-submenu.condo-dropdown-menu-submenu-disabled .condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-arrow-icon {
|
|
5220
|
+
color: rgba(0, 0, 0, 0.25);
|
|
5221
|
+
background-color: #fff;
|
|
5222
|
+
cursor: not-allowed;
|
|
5223
|
+
}
|
|
5224
|
+
.condo-dropdown-menu-submenu-selected .condo-dropdown-menu-submenu-title {
|
|
5225
|
+
color: #1890ff;
|
|
5226
|
+
}
|
|
5227
|
+
.condo-dropdown.condo-slide-down-enter.condo-slide-down-enter-active.condo-dropdown-placement-bottomLeft,
|
|
5228
|
+
.condo-dropdown.condo-slide-down-appear.condo-slide-down-appear-active.condo-dropdown-placement-bottomLeft,
|
|
5229
|
+
.condo-dropdown.condo-slide-down-enter.condo-slide-down-enter-active.condo-dropdown-placement-bottom,
|
|
5230
|
+
.condo-dropdown.condo-slide-down-appear.condo-slide-down-appear-active.condo-dropdown-placement-bottom,
|
|
5231
|
+
.condo-dropdown.condo-slide-down-enter.condo-slide-down-enter-active.condo-dropdown-placement-bottomRight,
|
|
5232
|
+
.condo-dropdown.condo-slide-down-appear.condo-slide-down-appear-active.condo-dropdown-placement-bottomRight {
|
|
5233
|
+
-webkit-animation-name: antSlideUpIn;
|
|
5234
|
+
animation-name: antSlideUpIn;
|
|
5235
|
+
}
|
|
5236
|
+
.condo-dropdown.condo-slide-up-enter.condo-slide-up-enter-active.condo-dropdown-placement-topLeft,
|
|
5237
|
+
.condo-dropdown.condo-slide-up-appear.condo-slide-up-appear-active.condo-dropdown-placement-topLeft,
|
|
5238
|
+
.condo-dropdown.condo-slide-up-enter.condo-slide-up-enter-active.condo-dropdown-placement-top,
|
|
5239
|
+
.condo-dropdown.condo-slide-up-appear.condo-slide-up-appear-active.condo-dropdown-placement-top,
|
|
5240
|
+
.condo-dropdown.condo-slide-up-enter.condo-slide-up-enter-active.condo-dropdown-placement-topRight,
|
|
5241
|
+
.condo-dropdown.condo-slide-up-appear.condo-slide-up-appear-active.condo-dropdown-placement-topRight {
|
|
5242
|
+
-webkit-animation-name: antSlideDownIn;
|
|
5243
|
+
animation-name: antSlideDownIn;
|
|
5244
|
+
}
|
|
5245
|
+
.condo-dropdown.condo-slide-down-leave.condo-slide-down-leave-active.condo-dropdown-placement-bottomLeft,
|
|
5246
|
+
.condo-dropdown.condo-slide-down-leave.condo-slide-down-leave-active.condo-dropdown-placement-bottom,
|
|
5247
|
+
.condo-dropdown.condo-slide-down-leave.condo-slide-down-leave-active.condo-dropdown-placement-bottomRight {
|
|
5248
|
+
-webkit-animation-name: antSlideUpOut;
|
|
5249
|
+
animation-name: antSlideUpOut;
|
|
5250
|
+
}
|
|
5251
|
+
.condo-dropdown.condo-slide-up-leave.condo-slide-up-leave-active.condo-dropdown-placement-topLeft,
|
|
5252
|
+
.condo-dropdown.condo-slide-up-leave.condo-slide-up-leave-active.condo-dropdown-placement-top,
|
|
5253
|
+
.condo-dropdown.condo-slide-up-leave.condo-slide-up-leave-active.condo-dropdown-placement-topRight {
|
|
5254
|
+
-webkit-animation-name: antSlideDownOut;
|
|
5255
|
+
animation-name: antSlideDownOut;
|
|
5256
|
+
}
|
|
5257
|
+
.condo-dropdown-trigger > .anticon.anticon-down,
|
|
5258
|
+
.condo-dropdown-link > .anticon.anticon-down,
|
|
5259
|
+
.condo-dropdown-button > .anticon.anticon-down {
|
|
5260
|
+
font-size: 10px;
|
|
5261
|
+
vertical-align: baseline;
|
|
5262
|
+
}
|
|
5263
|
+
.condo-dropdown-button {
|
|
5264
|
+
white-space: nowrap;
|
|
5265
|
+
}
|
|
5266
|
+
.condo-dropdown-button.condo-btn-group > .condo-btn-loading,
|
|
5267
|
+
.condo-dropdown-button.condo-btn-group > .condo-btn-loading + .condo-btn {
|
|
5268
|
+
cursor: default;
|
|
5269
|
+
pointer-events: none;
|
|
5270
|
+
}
|
|
5271
|
+
.condo-dropdown-button.condo-btn-group > .condo-btn-loading + .condo-btn::before {
|
|
5272
|
+
display: block;
|
|
5273
|
+
}
|
|
5274
|
+
.condo-dropdown-button.condo-btn-group > .condo-btn:last-child:not(:first-child):not(.condo-btn-icon-only) {
|
|
5275
|
+
padding-right: 8px;
|
|
5276
|
+
padding-left: 8px;
|
|
5277
|
+
}
|
|
5278
|
+
.condo-dropdown-menu-dark,
|
|
5279
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu {
|
|
5280
|
+
background: #001529;
|
|
5281
|
+
}
|
|
5282
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item,
|
|
5283
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-submenu-title,
|
|
5284
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item > a,
|
|
5285
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item > .anticon + span > a {
|
|
5286
|
+
color: rgba(255, 255, 255, 0.65);
|
|
5287
|
+
}
|
|
5288
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item .condo-dropdown-menu-submenu-arrow::after,
|
|
5289
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-arrow::after,
|
|
5290
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item > a .condo-dropdown-menu-submenu-arrow::after,
|
|
5291
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item > .anticon + span > a .condo-dropdown-menu-submenu-arrow::after {
|
|
5292
|
+
color: rgba(255, 255, 255, 0.65);
|
|
5293
|
+
}
|
|
5294
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item:hover,
|
|
5295
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-submenu-title:hover,
|
|
5296
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item > a:hover,
|
|
5297
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item > .anticon + span > a:hover {
|
|
5298
|
+
color: #fff;
|
|
5299
|
+
background: transparent;
|
|
5300
|
+
}
|
|
5301
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item-selected,
|
|
5302
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item-selected:hover,
|
|
5303
|
+
.condo-dropdown-menu-dark .condo-dropdown-menu-item-selected > a {
|
|
5304
|
+
color: #fff;
|
|
5305
|
+
background: #1890ff;
|
|
5306
|
+
}
|
|
5307
|
+
.condo-dropdown-rtl {
|
|
5308
|
+
direction: rtl;
|
|
5309
|
+
}
|
|
5310
|
+
.condo-dropdown-rtl.condo-dropdown::before {
|
|
5311
|
+
right: -7px;
|
|
5312
|
+
left: 0;
|
|
5313
|
+
}
|
|
5314
|
+
.condo-dropdown-menu.condo-dropdown-menu-rtl {
|
|
5315
|
+
direction: rtl;
|
|
5316
|
+
text-align: right;
|
|
5317
|
+
}
|
|
5318
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item-group-title,
|
|
5319
|
+
.condo-dropdown-menu-submenu-rtl .condo-dropdown-menu-item-group-title {
|
|
5320
|
+
direction: rtl;
|
|
5321
|
+
text-align: right;
|
|
5322
|
+
}
|
|
5323
|
+
.condo-dropdown-menu-submenu-popup.condo-dropdown-menu-submenu-rtl {
|
|
5324
|
+
transform-origin: 100% 0;
|
|
5325
|
+
}
|
|
5326
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-popup ul,
|
|
5327
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-popup li {
|
|
5328
|
+
text-align: right;
|
|
5329
|
+
}
|
|
5330
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item,
|
|
5331
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title {
|
|
5332
|
+
text-align: right;
|
|
5333
|
+
}
|
|
5334
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item > .anticon:first-child,
|
|
5335
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title > .anticon:first-child,
|
|
5336
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item > span > .anticon:first-child,
|
|
5337
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title > span > .anticon:first-child {
|
|
5338
|
+
margin-right: 0;
|
|
5339
|
+
margin-left: 8px;
|
|
5340
|
+
}
|
|
5341
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item .condo-dropdown-menu-submenu-expand-icon,
|
|
5342
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-expand-icon {
|
|
5343
|
+
right: auto;
|
|
5344
|
+
left: 8px;
|
|
5345
|
+
}
|
|
5346
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon,
|
|
5347
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon {
|
|
5348
|
+
margin-left: 0 !important;
|
|
5349
|
+
}
|
|
5350
|
+
.condo-dropdown-rtl .condo-dropdown-menu-item .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon,
|
|
5351
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title .condo-dropdown-menu-submenu-expand-icon .condo-dropdown-menu-submenu-arrow-icon {
|
|
5352
|
+
transform: scaleX(-1);
|
|
5353
|
+
}
|
|
5354
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-title {
|
|
5355
|
+
padding-right: 12px;
|
|
5356
|
+
padding-left: 24px;
|
|
5357
|
+
}
|
|
5358
|
+
.condo-dropdown-rtl .condo-dropdown-menu-submenu-vertical > .condo-dropdown-menu {
|
|
5359
|
+
right: 100%;
|
|
5360
|
+
left: 0;
|
|
5361
|
+
margin-right: 4px;
|
|
5362
|
+
margin-left: 0;
|
|
5363
|
+
}
|
|
5364
|
+
.condo-dropdown {
|
|
5365
|
+
font-weight: 600;
|
|
5366
|
+
font-size: 14px;
|
|
5367
|
+
font-family: "Open Sans", var(--condo-font-fallback);
|
|
5368
|
+
line-height: 22px;
|
|
5369
|
+
letter-spacing: -0.01em;
|
|
5370
|
+
margin: 0;
|
|
5371
|
+
}
|
|
5372
|
+
.condo-dropdown .condo-dropdown-menu {
|
|
5373
|
+
max-height: min(100vh, 360px);
|
|
5374
|
+
padding: 4px 0;
|
|
5375
|
+
overflow: auto;
|
|
5376
|
+
border-radius: 8px;
|
|
5377
|
+
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
5378
|
+
}
|
|
5379
|
+
.condo-dropdown .condo-dropdown-menu .condo-dropdown-menu-item {
|
|
5380
|
+
padding: 8px 16px;
|
|
5381
|
+
}
|
|
5382
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item-divider {
|
|
5383
|
+
margin: 0;
|
|
5384
|
+
}
|
|
5385
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item {
|
|
5386
|
+
padding: 20px;
|
|
5387
|
+
}
|
|
5388
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item:hover {
|
|
5389
|
+
background-color: #fff;
|
|
5390
|
+
}
|
|
5391
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item .condo-dropdown-item-icon {
|
|
5392
|
+
position: relative;
|
|
5393
|
+
top: 1px;
|
|
5394
|
+
display: inline-flex;
|
|
5395
|
+
}
|
|
5396
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item .condo-typography {
|
|
5397
|
+
/* stylelint-disable-next-line value-no-vendor-prefix */
|
|
5398
|
+
display: -webkit-box;
|
|
5399
|
+
overflow: hidden;
|
|
5400
|
+
-webkit-line-clamp: 2;
|
|
5401
|
+
line-clamp: 2;
|
|
5402
|
+
-webkit-box-orient: vertical;
|
|
5403
|
+
transition: color 0.15s ease-out;
|
|
5404
|
+
}
|
|
5405
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item.condo-dropdown-menu-item-disabled {
|
|
5406
|
+
color: #707695;
|
|
5407
|
+
}
|
|
5408
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item.condo-dropdown-menu-item-disabled .condo-typography {
|
|
5409
|
+
color: #707695;
|
|
5410
|
+
}
|
|
5411
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item:not(.condo-dropdown-menu-item-disabled):hover {
|
|
5412
|
+
color: #2bc359;
|
|
5413
|
+
}
|
|
5414
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item:not(.condo-dropdown-menu-item-disabled):hover .condo-typography {
|
|
5415
|
+
color: #2bc359;
|
|
5416
|
+
}
|
|
5417
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item:not(.condo-dropdown-menu-item-disabled):active {
|
|
5418
|
+
color: #00b538;
|
|
5419
|
+
}
|
|
5420
|
+
.condo-dropdown.condo-dropdown-wrapper .condo-dropdown-menu .condo-dropdown-menu-item:not(.condo-dropdown-menu-item-disabled):active .condo-typography {
|
|
5421
|
+
color: #00b538;
|
|
5422
|
+
}
|
|
5423
|
+
|
|
5424
|
+
.condo-dropdown-trigger.condo-btn-extended {
|
|
5425
|
+
padding: 0;
|
|
5426
|
+
cursor: default;
|
|
5427
|
+
}
|
|
5428
|
+
.condo-dropdown-trigger.condo-btn-extended .condo-btn-ellipsis {
|
|
5429
|
+
z-index: 1;
|
|
5430
|
+
display: inline-flex;
|
|
5431
|
+
padding: 12px 20px 12px 0;
|
|
5432
|
+
}
|
|
5433
|
+
.condo-dropdown-trigger.condo-btn-extended .condo-btn-label {
|
|
5434
|
+
max-width: calc(100% - 20px - 20px);
|
|
5435
|
+
margin-right: auto;
|
|
5436
|
+
margin-left: auto;
|
|
5437
|
+
padding: 12px 0 12px 20px;
|
|
5438
|
+
overflow: hidden;
|
|
5439
|
+
text-overflow: ellipsis;
|
|
5440
|
+
}
|
|
5441
|
+
.condo-dropdown-trigger.condo-btn-extended .condo-btn-text {
|
|
5442
|
+
display: inline-flex;
|
|
5443
|
+
align-items: center;
|
|
5444
|
+
width: 100%;
|
|
5445
|
+
height: 100%;
|
|
5446
|
+
}
|
|
5447
|
+
.condo-dropdown-trigger.condo-btn-extended .condo-btn-vertical-divider {
|
|
5448
|
+
width: 1px;
|
|
5449
|
+
height: 100%;
|
|
5450
|
+
margin-right: 16px;
|
|
5451
|
+
margin-left: 20px;
|
|
5452
|
+
background-color: #fff;
|
|
5453
|
+
opacity: 0.1;
|
|
5454
|
+
}
|
|
5455
|
+
.condo-dropdown-trigger.condo-btn-extended.condo-btn-secondary > .condo-btn-text .condo-btn-vertical-divider {
|
|
5456
|
+
background-color: #222;
|
|
5457
|
+
}
|
|
5458
|
+
.condo-dropdown-trigger.condo-btn-extended.condo-btn-secondary.condo-btn-dangerous > .condo-btn-text .condo-btn-vertical-divider {
|
|
5459
|
+
background-color: #ff3b30;
|
|
5460
|
+
}
|
|
5461
|
+
.condo-dropdown-trigger.condo-btn-extended.condo-btn-secondary:not(.condo-btn-dangerous):hover > .condo-btn-text .condo-btn-vertical-divider {
|
|
5462
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
5463
|
+
}
|
|
5464
|
+
.condo-dropdown-trigger.condo-btn-extended:hover.condo-btn-secondary.condo-btn-dangerous > .condo-btn-text .condo-btn-vertical-divider {
|
|
5465
|
+
background-color: #ec0000;
|
|
5466
|
+
}
|
|
5467
|
+
|
|
4584
5468
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
4585
5469
|
/* stylelint-disable no-duplicate-selectors */
|
|
4586
5470
|
/* stylelint-disable */
|