@open-condo/ui 2.4.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/colors/index.js +1 -1
- 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 +1624 -435
- package/dist/style-vars/variables.css +3 -3
- package/dist/style-vars/variables.less +3 -3
- package/dist/styles.css +931 -36
- 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;
|
|
@@ -423,7 +787,7 @@
|
|
|
423
787
|
color: #2696f3;
|
|
424
788
|
}
|
|
425
789
|
.condo-typography-success {
|
|
426
|
-
color: #
|
|
790
|
+
color: #2bc359;
|
|
427
791
|
}
|
|
428
792
|
.condo-typography-warning {
|
|
429
793
|
color: #ff9500;
|
|
@@ -572,24 +936,24 @@ a.condo-typography.focus-visible,
|
|
|
572
936
|
.condo-typography a.focus-visible,
|
|
573
937
|
a.condo-typography:hover,
|
|
574
938
|
.condo-typography a:hover {
|
|
575
|
-
color: #
|
|
576
|
-
-webkit-text-decoration-color: #
|
|
577
|
-
text-decoration-color: #
|
|
939
|
+
color: #2bc359;
|
|
940
|
+
-webkit-text-decoration-color: #2bc359;
|
|
941
|
+
text-decoration-color: #2bc359;
|
|
578
942
|
}
|
|
579
943
|
a.condo-typography:focus-visible,
|
|
580
944
|
.condo-typography a:focus-visible,
|
|
581
945
|
a.condo-typography:hover,
|
|
582
946
|
.condo-typography a:hover {
|
|
583
|
-
color: #
|
|
584
|
-
-webkit-text-decoration-color: #
|
|
585
|
-
text-decoration-color: #
|
|
947
|
+
color: #2bc359;
|
|
948
|
+
-webkit-text-decoration-color: #2bc359;
|
|
949
|
+
text-decoration-color: #2bc359;
|
|
586
950
|
}
|
|
587
951
|
a.condo-typography:active,
|
|
588
952
|
.condo-typography a:active {
|
|
589
|
-
color: #
|
|
953
|
+
color: #2bc359;
|
|
590
954
|
opacity: 0.8;
|
|
591
|
-
-webkit-text-decoration-color: #
|
|
592
|
-
text-decoration-color: #
|
|
955
|
+
-webkit-text-decoration-color: #2bc359;
|
|
956
|
+
text-decoration-color: #2bc359;
|
|
593
957
|
}
|
|
594
958
|
a.condo-typography:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small),
|
|
595
959
|
.condo-typography a:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small) {
|
|
@@ -783,7 +1147,7 @@ span.condo-typography-ellipsis-single-line {
|
|
|
783
1147
|
border: 1px solid #b7eb8f;
|
|
784
1148
|
}
|
|
785
1149
|
.condo-alert-success .condo-alert-icon {
|
|
786
|
-
color: #
|
|
1150
|
+
color: #2bc359;
|
|
787
1151
|
}
|
|
788
1152
|
.condo-alert-info {
|
|
789
1153
|
background-color: #e7f4ff;
|
|
@@ -2956,7 +3320,7 @@ a.condo-btn-sm {
|
|
|
2956
3320
|
}
|
|
2957
3321
|
.condo-btn.focus-visible::after {
|
|
2958
3322
|
box-sizing: border-box;
|
|
2959
|
-
background: linear-gradient(90deg, #
|
|
3323
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
2960
3324
|
border: 2px solid transparent;
|
|
2961
3325
|
opacity: 1;
|
|
2962
3326
|
-webkit-mask: linear-gradient(#111 0, #111 0) padding-box, linear-gradient(#fff 0, #fff 0);
|
|
@@ -2968,7 +3332,7 @@ a.condo-btn-sm {
|
|
|
2968
3332
|
}
|
|
2969
3333
|
.condo-btn.focus-visible::after {
|
|
2970
3334
|
box-sizing: border-box;
|
|
2971
|
-
background: linear-gradient(90deg, #
|
|
3335
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
2972
3336
|
border: 2px solid transparent;
|
|
2973
3337
|
opacity: 1;
|
|
2974
3338
|
-webkit-mask: linear-gradient(#111 0, #111 0) padding-box, linear-gradient(#fff 0, #fff 0);
|
|
@@ -2982,7 +3346,7 @@ a.condo-btn-sm {
|
|
|
2982
3346
|
}
|
|
2983
3347
|
.condo-btn:focus-visible::after {
|
|
2984
3348
|
box-sizing: border-box;
|
|
2985
|
-
background: linear-gradient(90deg, #
|
|
3349
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
2986
3350
|
border: 2px solid transparent;
|
|
2987
3351
|
opacity: 1;
|
|
2988
3352
|
-webkit-mask: linear-gradient(#111 0, #111 0) padding-box, linear-gradient(#fff 0, #fff 0);
|
|
@@ -3036,7 +3400,7 @@ a.condo-btn-sm {
|
|
|
3036
3400
|
display: block;
|
|
3037
3401
|
border-radius: inherit;
|
|
3038
3402
|
content: "";
|
|
3039
|
-
background: linear-gradient(90deg, #
|
|
3403
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%);
|
|
3040
3404
|
opacity: 0;
|
|
3041
3405
|
transition: opacity 0.15s ease-in-out;
|
|
3042
3406
|
}
|
|
@@ -3116,6 +3480,7 @@ a.condo-btn-sm {
|
|
|
3116
3480
|
padding: 11px 19px;
|
|
3117
3481
|
color: #222;
|
|
3118
3482
|
border: 1px solid #707695;
|
|
3483
|
+
transition: background-color 0.15s ease-in-out;
|
|
3119
3484
|
}
|
|
3120
3485
|
.condo-btn-secondary > span {
|
|
3121
3486
|
color: #222;
|
|
@@ -3133,17 +3498,17 @@ a.condo-btn-sm {
|
|
|
3133
3498
|
border: 1px solid #707695;
|
|
3134
3499
|
}
|
|
3135
3500
|
.condo-btn-secondary:hover {
|
|
3136
|
-
background:
|
|
3501
|
+
background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%);
|
|
3137
3502
|
}
|
|
3138
3503
|
.condo-btn-secondary:hover > span {
|
|
3139
|
-
color: #
|
|
3504
|
+
color: #2bc359;
|
|
3140
3505
|
transition: color 0.15s ease-out;
|
|
3141
3506
|
}
|
|
3142
3507
|
.condo-btn-secondary:hover > span svg {
|
|
3143
3508
|
fill: currentcolor;
|
|
3144
3509
|
}
|
|
3145
3510
|
.condo-btn-secondary:active {
|
|
3146
|
-
background:
|
|
3511
|
+
background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%);
|
|
3147
3512
|
}
|
|
3148
3513
|
.condo-btn-secondary:active > span {
|
|
3149
3514
|
color: #00b538;
|
|
@@ -3166,6 +3531,9 @@ a.condo-btn-sm {
|
|
|
3166
3531
|
color: #ff3b30;
|
|
3167
3532
|
transition: color 0.15s ease-out;
|
|
3168
3533
|
}
|
|
3534
|
+
.condo-btn-secondary.condo-btn-dangerous:hover {
|
|
3535
|
+
background: #ffeceb;
|
|
3536
|
+
}
|
|
3169
3537
|
.condo-btn-secondary.condo-btn-dangerous:hover > span {
|
|
3170
3538
|
color: #ec0000;
|
|
3171
3539
|
transition: color 0.15s ease-out;
|
|
@@ -3177,6 +3545,9 @@ a.condo-btn-sm {
|
|
|
3177
3545
|
color: #ec0000;
|
|
3178
3546
|
transition: color 0.15s ease-out;
|
|
3179
3547
|
}
|
|
3548
|
+
.condo-btn-secondary.condo-btn-dangerous:active {
|
|
3549
|
+
background: #ffeceb;
|
|
3550
|
+
}
|
|
3180
3551
|
.condo-btn-secondary.condo-btn-dangerous:active > span {
|
|
3181
3552
|
color: #ff3b30;
|
|
3182
3553
|
transition: color 0.15s ease-out;
|
|
@@ -3231,7 +3602,7 @@ a.condo-btn-sm {
|
|
|
3231
3602
|
border-radius: inherit;
|
|
3232
3603
|
content: "";
|
|
3233
3604
|
box-sizing: border-box;
|
|
3234
|
-
background: linear-gradient(90deg, #
|
|
3605
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
3235
3606
|
border: 1px solid transparent;
|
|
3236
3607
|
opacity: 0;
|
|
3237
3608
|
transition: opacity 0.15s ease-out;
|
|
@@ -3244,14 +3615,14 @@ a.condo-btn-sm {
|
|
|
3244
3615
|
}
|
|
3245
3616
|
.condo-btn-secondary::before,
|
|
3246
3617
|
.condo-btn-secondary:focus::before {
|
|
3247
|
-
background: linear-gradient(90deg, #
|
|
3618
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
3248
3619
|
}
|
|
3249
3620
|
.condo-btn-secondary:hover::before {
|
|
3250
|
-
background: linear-gradient(90deg, #
|
|
3621
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
3251
3622
|
opacity: 1;
|
|
3252
3623
|
}
|
|
3253
3624
|
.condo-btn-secondary:active::before {
|
|
3254
|
-
background: linear-gradient(90deg, #
|
|
3625
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
3255
3626
|
opacity: 0.9;
|
|
3256
3627
|
}
|
|
3257
3628
|
.condo-btn-secondary:disabled {
|
|
@@ -3280,6 +3651,10 @@ a.condo-btn-sm {
|
|
|
3280
3651
|
.condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous) > span svg {
|
|
3281
3652
|
fill: currentcolor;
|
|
3282
3653
|
}
|
|
3654
|
+
.condo-btn-secondary.condo-btn-stateless:hover,
|
|
3655
|
+
.condo-btn-secondary.condo-btn-stateless:active {
|
|
3656
|
+
background: transparent;
|
|
3657
|
+
}
|
|
3283
3658
|
.condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous):hover {
|
|
3284
3659
|
border: 1px solid #707695;
|
|
3285
3660
|
}
|
|
@@ -3770,7 +4145,7 @@ a.condo-btn-secondary {
|
|
|
3770
4145
|
transition-property: border-color;
|
|
3771
4146
|
}
|
|
3772
4147
|
.condo-card-active {
|
|
3773
|
-
background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #
|
|
4148
|
+
background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
3774
4149
|
border: 1px solid transparent;
|
|
3775
4150
|
box-shadow: 0 4px 14px 0 rgba(76,209,117,0.30196);
|
|
3776
4151
|
}
|
|
@@ -4440,7 +4815,7 @@ a.condo-btn-secondary {
|
|
|
4440
4815
|
.condo-checkbox-wrapper .condo-checkbox-indeterminate > .condo-checkbox-inner::after {
|
|
4441
4816
|
width: 12px;
|
|
4442
4817
|
height: 4px;
|
|
4443
|
-
background: linear-gradient(90deg, #
|
|
4818
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4444
4819
|
border-radius: 1px;
|
|
4445
4820
|
}
|
|
4446
4821
|
.condo-checkbox-wrapper .condo-checkbox-indeterminate > .condo-checkbox-inner::before {
|
|
@@ -4495,7 +4870,7 @@ a.condo-btn-secondary {
|
|
|
4495
4870
|
border-image-source: none;
|
|
4496
4871
|
}
|
|
4497
4872
|
.condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner {
|
|
4498
|
-
background: linear-gradient(90deg, #
|
|
4873
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4499
4874
|
border-color: transparent;
|
|
4500
4875
|
}
|
|
4501
4876
|
.condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner::before {
|
|
@@ -4546,7 +4921,7 @@ a.condo-btn-secondary {
|
|
|
4546
4921
|
content: "";
|
|
4547
4922
|
}
|
|
4548
4923
|
.condo-checkbox-wrapper:hover > .condo-checkbox-checked > .condo-checkbox-inner {
|
|
4549
|
-
background: linear-gradient(90deg, #
|
|
4924
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4550
4925
|
border-color: transparent;
|
|
4551
4926
|
}
|
|
4552
4927
|
.condo-checkbox-wrapper:hover > .condo-checkbox-disabled > .condo-checkbox-inner {
|
|
@@ -4554,7 +4929,7 @@ a.condo-btn-secondary {
|
|
|
4554
4929
|
border-color: transparent;
|
|
4555
4930
|
}
|
|
4556
4931
|
.condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-input:focus + .condo-checkbox-inner {
|
|
4557
|
-
background: linear-gradient(90deg, #
|
|
4932
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4558
4933
|
border-color: transparent;
|
|
4559
4934
|
}
|
|
4560
4935
|
.condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-input:focus + .condo-checkbox-inner::before {
|
|
@@ -4570,6 +4945,526 @@ a.condo-btn-secondary {
|
|
|
4570
4945
|
visibility: visible;
|
|
4571
4946
|
}
|
|
4572
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
|
+
|
|
4573
5468
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
4574
5469
|
/* stylelint-disable no-duplicate-selectors */
|
|
4575
5470
|
/* stylelint-disable */
|
|
@@ -6203,7 +7098,7 @@ span.condo-radio + * {
|
|
|
6203
7098
|
margin-top: initial;
|
|
6204
7099
|
margin-left: 0;
|
|
6205
7100
|
margin-left: initial;
|
|
6206
|
-
background: linear-gradient(90deg, #
|
|
7101
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%);
|
|
6207
7102
|
border-radius: 100%;
|
|
6208
7103
|
transform: translate(-50%, -50%);
|
|
6209
7104
|
}
|
|
@@ -6229,7 +7124,7 @@ span.condo-radio + * {
|
|
|
6229
7124
|
border-color: #d0d3e5;
|
|
6230
7125
|
}
|
|
6231
7126
|
.condo-radio-wrapper .condo-radio-input:focus + .condo-radio-inner {
|
|
6232
|
-
background-image: linear-gradient(white, white), linear-gradient(90deg, #
|
|
7127
|
+
background-image: linear-gradient(white, white), linear-gradient(90deg, #26c756 0%, #4ba2e4 100%);
|
|
6233
7128
|
background-clip: content-box, border-box;
|
|
6234
7129
|
background-origin: border-box;
|
|
6235
7130
|
border: double 1px transparent;
|
|
@@ -6330,11 +7225,11 @@ span.condo-radio + * {
|
|
|
6330
7225
|
color: #707695;
|
|
6331
7226
|
}
|
|
6332
7227
|
.condo-radio-group.condo-radio-button > .condo-radio-button-wrapper:not(.condo-radio-button-wrapper-disabled):not(.condo-radio-button-wrapper-checked):hover .condo-radio-icon {
|
|
6333
|
-
color: #
|
|
7228
|
+
color: #2bc359;
|
|
6334
7229
|
}
|
|
6335
7230
|
.condo-radio-group.condo-radio-button > .condo-radio-button-wrapper:not(.condo-radio-button-wrapper-disabled):not(.condo-radio-button-wrapper-checked):hover .condo-typography {
|
|
6336
7231
|
background-color: #222;
|
|
6337
|
-
background-image: linear-gradient(90deg, #
|
|
7232
|
+
background-image: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%);
|
|
6338
7233
|
background-size: 100%;
|
|
6339
7234
|
-webkit-background-clip: text;
|
|
6340
7235
|
-webkit-text-fill-color: transparent;
|
|
@@ -7226,7 +8121,7 @@ span.condo-radio + * {
|
|
|
7226
8121
|
border-color: transparent;
|
|
7227
8122
|
}
|
|
7228
8123
|
.condo-select-success:not(.condo-select-customize-input) .condo-select-selector {
|
|
7229
|
-
background: #
|
|
8124
|
+
background: #2bc359;
|
|
7230
8125
|
border-color: transparent;
|
|
7231
8126
|
}
|
|
7232
8127
|
.condo-select-warning:not(.condo-select-customize-input) .condo-select-selector {
|
|
@@ -7269,7 +8164,7 @@ span.condo-radio + * {
|
|
|
7269
8164
|
background-color: #707695;
|
|
7270
8165
|
}
|
|
7271
8166
|
.condo-select-success .condo-select-clear {
|
|
7272
|
-
background-color: #
|
|
8167
|
+
background-color: #2bc359;
|
|
7273
8168
|
}
|
|
7274
8169
|
.condo-select-danger:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-placeholder,
|
|
7275
8170
|
.condo-select-warning:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-placeholder,
|
|
@@ -7363,7 +8258,7 @@ span.condo-radio + * {
|
|
|
7363
8258
|
background-color: #ff3b30;
|
|
7364
8259
|
}
|
|
7365
8260
|
.condo-select-success.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
|
|
7366
|
-
background-color: #
|
|
8261
|
+
background-color: #2bc359;
|
|
7367
8262
|
}
|
|
7368
8263
|
.condo-select-warning.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
|
|
7369
8264
|
background-color: #ff9500;
|
|
@@ -7412,7 +8307,7 @@ span.condo-radio + * {
|
|
|
7412
8307
|
background-color: #ebfaef;
|
|
7413
8308
|
}
|
|
7414
8309
|
.condo-select-dropdown .condo-select-item-option-selected:not(.condo-select-item-option-disabled) .condo-select-item-option-state {
|
|
7415
|
-
color: #
|
|
8310
|
+
color: #2bc359;
|
|
7416
8311
|
}
|
|
7417
8312
|
.condo-select-dropdown .condo-select-item-option-active:not(.condo-select-item-option-disabled) {
|
|
7418
8313
|
background-color: #f2f4f6;
|
|
@@ -7494,7 +8389,7 @@ span.condo-radio + * {
|
|
|
7494
8389
|
}
|
|
7495
8390
|
.condo-steps-step-done .condo-steps-step-index {
|
|
7496
8391
|
color: #fff;
|
|
7497
|
-
background: linear-gradient(90deg, #
|
|
8392
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%);
|
|
7498
8393
|
}
|
|
7499
8394
|
|
|
7500
8395
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|