@kne/system-layout 0.2.0-alpha.14 → 0.2.0-alpha.16
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/{index-b610bc5a.js → index-b1c94af4.js} +1 -1
- package/dist/{index-b610bc5a.js.map → index-b1c94af4.js.map} +1 -1
- package/dist/index.css +408 -163
- package/dist/index.css.map +1 -1
- package/dist/index.js +240 -79
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +181 -34
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -248,35 +248,36 @@
|
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
@media (max-width: 768px) {
|
|
251
|
-
.
|
|
251
|
+
.kne-system-layout_sK89O {
|
|
252
252
|
width: 100%;
|
|
253
253
|
padding: 0;
|
|
254
254
|
overflow: hidden;
|
|
255
255
|
height: unset;
|
|
256
256
|
min-height: var(--window-height);
|
|
257
|
-
--page-height:
|
|
257
|
+
--page-height: 100dvh;
|
|
258
258
|
--page-content-height: var(--page-height);
|
|
259
259
|
--page-inner-height: calc(var(--page-height) - var(--nav-height) - var(--toolbar-height));
|
|
260
260
|
}
|
|
261
|
-
.
|
|
262
|
-
--toolbar-height:
|
|
261
|
+
.kne-system-layout_sK89O.kne-system-layout_gyKfI {
|
|
262
|
+
--toolbar-height: 72px;
|
|
263
263
|
}
|
|
264
|
-
.
|
|
264
|
+
.kne-system-layout_sK89O.kne-system-layout_X1wZG {
|
|
265
265
|
--nav-height: 48px;
|
|
266
266
|
}
|
|
267
|
-
.
|
|
268
|
-
position:
|
|
267
|
+
.kne-system-layout_sK89O .kne-system-layout_-LpWn {
|
|
268
|
+
position: fixed;
|
|
269
|
+
top: 0;
|
|
269
270
|
left: calc(var(--menu-min-width) * -1);
|
|
270
271
|
z-index: 900;
|
|
271
272
|
background: var(--background);
|
|
272
273
|
height: 100%;
|
|
273
274
|
}
|
|
274
|
-
.
|
|
275
|
+
.kne-system-layout_sK89O .kne-system-layout_-LpWn.kne-system-layout_G-zuN {
|
|
275
276
|
left: 0;
|
|
276
277
|
box-shadow: 0 -2px 22.9px 0 rgba(78, 96, 139, 0.13);
|
|
277
278
|
}
|
|
278
|
-
.
|
|
279
|
-
position:
|
|
279
|
+
.kne-system-layout_sK89O .kne-system-layout_6TCwG {
|
|
280
|
+
position: fixed;
|
|
280
281
|
top: 0;
|
|
281
282
|
left: 0;
|
|
282
283
|
right: 0;
|
|
@@ -287,29 +288,31 @@
|
|
|
287
288
|
pointer-events: none;
|
|
288
289
|
transition: opacity 300ms;
|
|
289
290
|
}
|
|
290
|
-
.
|
|
291
|
+
.kne-system-layout_sK89O .kne-system-layout_6TCwG.kne-system-layout_G-zuN {
|
|
291
292
|
opacity: 1;
|
|
292
293
|
pointer-events: auto;
|
|
293
294
|
}
|
|
294
|
-
.
|
|
295
|
+
.kne-system-layout_sK89O .kne-system-layout_5qnw5 {
|
|
295
296
|
display: none;
|
|
296
297
|
}
|
|
297
|
-
.
|
|
298
|
+
.kne-system-layout_sK89O .kne-system-layout_HnwkM {
|
|
298
299
|
border-radius: 0;
|
|
299
300
|
border: 0;
|
|
301
|
+
backdrop-filter: none;
|
|
302
|
+
-webkit-backdrop-filter: none;
|
|
300
303
|
}
|
|
301
|
-
.
|
|
304
|
+
.kne-system-layout_sK89O .kne-system-layout_h8PAW {
|
|
302
305
|
display: block;
|
|
303
306
|
}
|
|
304
|
-
.
|
|
307
|
+
.kne-system-layout_sK89O .kne-system-layout_OM1Q2 {
|
|
305
308
|
padding: 0;
|
|
306
309
|
overflow: visible !important;
|
|
307
310
|
height: unset;
|
|
308
311
|
}
|
|
309
312
|
}
|
|
310
|
-
.
|
|
313
|
+
.kne-system-layout_sK89O {
|
|
311
314
|
--window-width: 100vw;
|
|
312
|
-
--window-height:
|
|
315
|
+
--window-height: 100dvh;
|
|
313
316
|
--multiple: var(--safe-area-multiple, 1);
|
|
314
317
|
--safe-area-inset-top: calc(env(safe-area-inset-top) * var(--multiple));
|
|
315
318
|
--safe-area-inset-bottom: calc(env(safe-area-inset-bottom) * var(--multiple));
|
|
@@ -326,135 +329,136 @@
|
|
|
326
329
|
position: relative;
|
|
327
330
|
line-height: 1.4;
|
|
328
331
|
}
|
|
329
|
-
.
|
|
332
|
+
.kne-system-layout_sK89O .system-max-width-900 {
|
|
330
333
|
max-width: 900px;
|
|
331
334
|
width: 100%;
|
|
332
335
|
margin: 0 auto;
|
|
333
336
|
}
|
|
334
|
-
.
|
|
337
|
+
.kne-system-layout_sK89O .system-font-title {
|
|
335
338
|
font-size: 16px;
|
|
336
339
|
font-weight: bold;
|
|
337
340
|
}
|
|
338
|
-
.
|
|
341
|
+
.kne-system-layout_sK89O .system-font-title-primary {
|
|
339
342
|
font-size: 16px;
|
|
340
343
|
font-weight: bold;
|
|
341
344
|
color: var(--primary-color);
|
|
342
345
|
}
|
|
343
|
-
.
|
|
346
|
+
.kne-system-layout_sK89O .system-font-sub-title {
|
|
344
347
|
font-weight: bold;
|
|
345
348
|
}
|
|
346
|
-
.
|
|
349
|
+
.kne-system-layout_sK89O .system-font-bold {
|
|
347
350
|
font-weight: bold;
|
|
348
351
|
}
|
|
349
|
-
.
|
|
352
|
+
.kne-system-layout_sK89O .system-font-description {
|
|
350
353
|
color: var(--font-color-grey);
|
|
351
354
|
}
|
|
352
|
-
.
|
|
355
|
+
.kne-system-layout_sK89O .scroller-bar {
|
|
353
356
|
background: transparent !important;
|
|
354
357
|
border-color: transparent !important;
|
|
355
358
|
}
|
|
356
|
-
.
|
|
359
|
+
.kne-system-layout_sK89O .scroller-bar .scroller-bar-inner {
|
|
357
360
|
background: #999 !important;
|
|
358
361
|
height: 40%;
|
|
359
362
|
}
|
|
360
|
-
.
|
|
363
|
+
.kne-system-layout_sK89O .ant-tag {
|
|
361
364
|
background: var(--primary-color-1);
|
|
362
365
|
border-radius: 11px;
|
|
363
366
|
color: var(--font-color-grey);
|
|
364
367
|
}
|
|
365
|
-
.
|
|
368
|
+
.kne-system-layout_sK89O .ant-segmented {
|
|
366
369
|
border: 1px solid #d1d5db;
|
|
367
370
|
border-radius: 17px;
|
|
368
371
|
background: transparent !important;
|
|
369
372
|
}
|
|
370
|
-
.
|
|
371
|
-
.
|
|
373
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-item,
|
|
374
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-thumb {
|
|
372
375
|
border-radius: 14px;
|
|
373
376
|
}
|
|
374
|
-
.
|
|
375
|
-
.
|
|
377
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-item.ant-segmented-item-selected,
|
|
378
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-thumb {
|
|
376
379
|
background: var(--primary-color) !important;
|
|
377
380
|
color: #fff !important;
|
|
378
381
|
}
|
|
379
|
-
.
|
|
382
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-item:after {
|
|
380
383
|
background: transparent !important;
|
|
381
384
|
}
|
|
382
|
-
.
|
|
385
|
+
.kne-system-layout_sK89O .filter .filter-title {
|
|
383
386
|
border-bottom: none;
|
|
384
387
|
}
|
|
385
|
-
.
|
|
388
|
+
.kne-system-layout_sK89O .react-form .ant-card {
|
|
386
389
|
max-width: 900px;
|
|
387
390
|
margin: 0 auto;
|
|
388
391
|
width: 100%;
|
|
389
392
|
}
|
|
390
|
-
.
|
|
393
|
+
.kne-system-layout_sK89O .max-width-info-page {
|
|
391
394
|
max-width: 900px;
|
|
392
395
|
margin: 0 auto;
|
|
393
396
|
width: 100%;
|
|
394
397
|
}
|
|
395
|
-
.
|
|
398
|
+
.kne-system-layout_sK89O .part.bordered {
|
|
396
399
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
397
400
|
}
|
|
398
|
-
.
|
|
401
|
+
.kne-system-layout_sK89O .part.bordered .part-title {
|
|
399
402
|
font-size: 16px;
|
|
400
403
|
}
|
|
401
|
-
.
|
|
404
|
+
.kne-system-layout_sK89O .ant-pagination-options-size-changer {
|
|
402
405
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
403
406
|
}
|
|
404
|
-
.
|
|
407
|
+
.kne-system-layout_sK89O .ant-tree {
|
|
405
408
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
406
409
|
}
|
|
407
|
-
.
|
|
408
|
-
.
|
|
410
|
+
.kne-system-layout_sK89O .ant-table,
|
|
411
|
+
.kne-system-layout_sK89O .ant-table-placeholder {
|
|
409
412
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
410
413
|
}
|
|
411
|
-
.
|
|
412
|
-
.
|
|
414
|
+
.kne-system-layout_sK89O .ant-table-cell,
|
|
415
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-tbody > tr > td.ant-table-cell {
|
|
413
416
|
padding: 4px 8px;
|
|
414
417
|
}
|
|
415
|
-
.
|
|
418
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-thead > tr > th.ant-table-cell {
|
|
416
419
|
padding: 6px 16px;
|
|
417
420
|
font-weight: 400 !important;
|
|
418
421
|
color: var(--font-color-grey);
|
|
419
422
|
}
|
|
420
|
-
.
|
|
423
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-cell-fix {
|
|
421
424
|
background: transparent;
|
|
422
425
|
}
|
|
423
|
-
.
|
|
426
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-cell-fix.ant-table-cell-fix-end-shadow-show, .kne-system-layout_sK89O .ant-table-wrapper .ant-table-cell-fix.ant-table-cell-fix-start-shadow-show {
|
|
424
427
|
background: var(--bg-color-grey);
|
|
425
428
|
}
|
|
426
|
-
.
|
|
429
|
+
.kne-system-layout_sK89O .ant-tooltip-container {
|
|
427
430
|
max-width: 400px;
|
|
428
431
|
}
|
|
429
|
-
.
|
|
432
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ {
|
|
430
433
|
width: 100%;
|
|
431
434
|
padding: 0;
|
|
432
435
|
overflow: hidden;
|
|
433
436
|
height: unset;
|
|
434
437
|
min-height: var(--window-height);
|
|
435
|
-
--page-height:
|
|
438
|
+
--page-height: 100dvh;
|
|
436
439
|
--page-content-height: var(--page-height);
|
|
437
440
|
--page-inner-height: calc(var(--page-height) - var(--nav-height) - var(--toolbar-height));
|
|
438
441
|
}
|
|
439
|
-
.
|
|
440
|
-
--toolbar-height:
|
|
442
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ.kne-system-layout_gyKfI {
|
|
443
|
+
--toolbar-height: 72px;
|
|
441
444
|
}
|
|
442
|
-
.
|
|
445
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ.kne-system-layout_X1wZG {
|
|
443
446
|
--nav-height: 48px;
|
|
444
447
|
}
|
|
445
|
-
.
|
|
446
|
-
position:
|
|
448
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_-LpWn {
|
|
449
|
+
position: fixed;
|
|
450
|
+
top: 0;
|
|
447
451
|
left: calc(var(--menu-min-width) * -1);
|
|
448
452
|
z-index: 900;
|
|
449
453
|
background: var(--background);
|
|
450
454
|
height: 100%;
|
|
451
455
|
}
|
|
452
|
-
.
|
|
456
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_-LpWn.kne-system-layout_G-zuN {
|
|
453
457
|
left: 0;
|
|
454
458
|
box-shadow: 0 -2px 22.9px 0 rgba(78, 96, 139, 0.13);
|
|
455
459
|
}
|
|
456
|
-
.
|
|
457
|
-
position:
|
|
460
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_6TCwG {
|
|
461
|
+
position: fixed;
|
|
458
462
|
top: 0;
|
|
459
463
|
left: 0;
|
|
460
464
|
right: 0;
|
|
@@ -465,105 +469,107 @@
|
|
|
465
469
|
pointer-events: none;
|
|
466
470
|
transition: opacity 300ms;
|
|
467
471
|
}
|
|
468
|
-
.
|
|
472
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_6TCwG.kne-system-layout_G-zuN {
|
|
469
473
|
opacity: 1;
|
|
470
474
|
pointer-events: auto;
|
|
471
475
|
}
|
|
472
|
-
.
|
|
476
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_5qnw5 {
|
|
473
477
|
display: none;
|
|
474
478
|
}
|
|
475
|
-
.
|
|
479
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_HnwkM {
|
|
476
480
|
border-radius: 0;
|
|
477
481
|
border: 0;
|
|
482
|
+
backdrop-filter: none;
|
|
483
|
+
-webkit-backdrop-filter: none;
|
|
478
484
|
}
|
|
479
|
-
.
|
|
485
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_h8PAW {
|
|
480
486
|
display: block;
|
|
481
487
|
}
|
|
482
|
-
.
|
|
488
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_OM1Q2 {
|
|
483
489
|
padding: 0;
|
|
484
490
|
overflow: visible !important;
|
|
485
491
|
height: unset;
|
|
486
492
|
}
|
|
487
|
-
.
|
|
493
|
+
.kne-system-layout_sK89O .kne-system-layout_h8PAW {
|
|
488
494
|
display: none;
|
|
489
495
|
}
|
|
490
|
-
.
|
|
496
|
+
.kne-system-layout_sK89O .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.ant-btn-link):not(.ant-btn-dashed):not(.ant-btn-text):not(:disabled) {
|
|
491
497
|
background: var(--primary-color-2);
|
|
492
498
|
color: var(--primary-color);
|
|
493
499
|
}
|
|
494
|
-
.
|
|
500
|
+
.kne-system-layout_sK89O .ant-btn:not(.ant-btn-link):not(.ant-btn-dashed):not(.ant-btn-text):not(:disabled) {
|
|
495
501
|
border: 1px solid rgba(255, 255, 255, 0.1) !important;
|
|
496
502
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08);
|
|
497
503
|
backdrop-filter: blur(10px);
|
|
498
504
|
}
|
|
499
|
-
.
|
|
505
|
+
.kne-system-layout_sK89O .ant-btn:not(.ant-btn-link):not(.ant-btn-dashed):not(.ant-btn-text):not(:disabled):hover:not(:disabled):not(.ant-btn-loading) {
|
|
500
506
|
backdrop-filter: blur(40px) saturate(1.5) brightness(1.2);
|
|
501
507
|
transform: scale(1.04);
|
|
502
508
|
}
|
|
503
|
-
.
|
|
509
|
+
.kne-system-layout_sK89O .ant-btn:active:not(.ant-btn-loading) {
|
|
504
510
|
box-shadow: none !important;
|
|
505
511
|
transform: scale(1);
|
|
506
512
|
}
|
|
507
|
-
.
|
|
513
|
+
.kne-system-layout_sK89O .ant-btn:disabled {
|
|
508
514
|
box-shadow: none;
|
|
509
515
|
color: var(--font-color-disabled);
|
|
510
516
|
background: rgba(17, 24, 39, 0.2);
|
|
511
517
|
}
|
|
512
|
-
.
|
|
518
|
+
.kne-system-layout_sK89O .ant-btn.ant-btn-primary:not(:disabled) {
|
|
513
519
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08);
|
|
514
520
|
}
|
|
515
|
-
.
|
|
521
|
+
.kne-system-layout_sK89O .ant-btn.ant-btn-loading {
|
|
516
522
|
opacity: 0.6;
|
|
517
523
|
}
|
|
518
|
-
.
|
|
524
|
+
.kne-system-layout_sK89O .ant-btn {
|
|
519
525
|
position: relative;
|
|
520
526
|
}
|
|
521
|
-
.
|
|
527
|
+
.kne-system-layout_sK89O .ant-btn .ant-btn-loading-icon {
|
|
522
528
|
position: absolute;
|
|
523
529
|
}
|
|
524
530
|
|
|
525
|
-
.
|
|
531
|
+
.kne-system-layout_-LpWn {
|
|
526
532
|
flex: none;
|
|
527
533
|
transition: width 0.3s;
|
|
528
534
|
position: relative;
|
|
529
535
|
}
|
|
530
|
-
.
|
|
536
|
+
.kne-system-layout_-LpWn.kne-system-layout_G-zuN {
|
|
531
537
|
width: var(--menu-max-width);
|
|
532
538
|
}
|
|
533
|
-
.
|
|
539
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) {
|
|
534
540
|
width: var(--menu-min-width);
|
|
535
541
|
}
|
|
536
|
-
.
|
|
542
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) .kne-system-layout_7wq3X {
|
|
537
543
|
padding: 0 16px;
|
|
538
544
|
}
|
|
539
|
-
.
|
|
545
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) .kne-system-layout_-T-Dc {
|
|
540
546
|
padding: 8px 16px;
|
|
541
547
|
justify-content: center;
|
|
542
548
|
}
|
|
543
|
-
.
|
|
549
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) .kne-system-layout_LOrmu {
|
|
544
550
|
padding: 12px 0;
|
|
545
551
|
border: none;
|
|
546
552
|
background: none;
|
|
547
553
|
justify-content: center;
|
|
548
554
|
}
|
|
549
555
|
|
|
550
|
-
.
|
|
556
|
+
.kne-system-layout_-T-Dc {
|
|
551
557
|
padding: 8px 24px;
|
|
552
558
|
display: flex;
|
|
553
559
|
justify-content: flex-start;
|
|
554
560
|
}
|
|
555
|
-
.
|
|
561
|
+
.kne-system-layout_-T-Dc img {
|
|
556
562
|
height: 24px !important;
|
|
557
563
|
object-fit: contain;
|
|
558
564
|
max-width: 100%;
|
|
559
565
|
}
|
|
560
566
|
|
|
561
|
-
.
|
|
567
|
+
.kne-system-layout_2cRWf {
|
|
562
568
|
display: flex;
|
|
563
569
|
align-items: center;
|
|
564
570
|
}
|
|
565
571
|
|
|
566
|
-
.
|
|
572
|
+
.kne-system-layout_5D-Oq {
|
|
567
573
|
position: absolute;
|
|
568
574
|
right: -10px;
|
|
569
575
|
top: 20px;
|
|
@@ -576,11 +582,11 @@
|
|
|
576
582
|
justify-content: center;
|
|
577
583
|
transition: transform 0.3s;
|
|
578
584
|
}
|
|
579
|
-
.
|
|
585
|
+
.kne-system-layout_5D-Oq:hover {
|
|
580
586
|
transform: scale(1.2);
|
|
581
587
|
}
|
|
582
588
|
|
|
583
|
-
.
|
|
589
|
+
.kne-system-layout_p4eOE {
|
|
584
590
|
position: absolute;
|
|
585
591
|
width: 100%;
|
|
586
592
|
height: 100%;
|
|
@@ -589,19 +595,19 @@
|
|
|
589
595
|
transition: opacity 0.5s;
|
|
590
596
|
}
|
|
591
597
|
|
|
592
|
-
.
|
|
598
|
+
.kne-system-layout_8dzE7 {
|
|
593
599
|
transition: transform 0.3s;
|
|
594
600
|
}
|
|
595
|
-
.
|
|
601
|
+
.kne-system-layout_8dzE7.is-closed {
|
|
596
602
|
transform: scaleX(-1);
|
|
597
603
|
}
|
|
598
604
|
|
|
599
|
-
.
|
|
605
|
+
.kne-system-layout_7wq3X {
|
|
600
606
|
padding: 0 8px 0 16px;
|
|
601
607
|
margin-top: 12px;
|
|
602
608
|
}
|
|
603
609
|
|
|
604
|
-
.
|
|
610
|
+
.kne-system-layout_LOrmu {
|
|
605
611
|
border-radius: 8px;
|
|
606
612
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
607
613
|
background: rgba(255, 255, 255, 0.12);
|
|
@@ -613,16 +619,16 @@
|
|
|
613
619
|
overflow: hidden;
|
|
614
620
|
}
|
|
615
621
|
|
|
616
|
-
.
|
|
622
|
+
.kne-system-layout_b7XeQ {
|
|
617
623
|
font-weight: 500;
|
|
618
624
|
}
|
|
619
625
|
|
|
620
|
-
.
|
|
626
|
+
.kne-system-layout_U0YTk {
|
|
621
627
|
font-size: 12px;
|
|
622
628
|
color: var(--font-color-grey);
|
|
623
629
|
}
|
|
624
630
|
|
|
625
|
-
.
|
|
631
|
+
.kne-system-layout_HnwkM {
|
|
626
632
|
border-radius: 12px;
|
|
627
633
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
628
634
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.72) 100%);
|
|
@@ -631,11 +637,11 @@
|
|
|
631
637
|
min-width: 0;
|
|
632
638
|
}
|
|
633
639
|
|
|
634
|
-
.
|
|
640
|
+
.kne-system-layout_8gqbZ {
|
|
635
641
|
margin-top: 16px;
|
|
636
642
|
}
|
|
637
643
|
|
|
638
|
-
.
|
|
644
|
+
.kne-system-layout_5qnw5 {
|
|
639
645
|
display: flex;
|
|
640
646
|
justify-content: center;
|
|
641
647
|
align-items: center;
|
|
@@ -651,13 +657,13 @@
|
|
|
651
657
|
cursor: pointer;
|
|
652
658
|
transition: all 0.3s;
|
|
653
659
|
}
|
|
654
|
-
.
|
|
660
|
+
.kne-system-layout_5qnw5:hover {
|
|
655
661
|
background: rgba(255, 255, 255, 0.6);
|
|
656
662
|
backdrop-filter: blur(40px) saturate(1.5);
|
|
657
663
|
transform: scale(1.1);
|
|
658
664
|
}
|
|
659
665
|
|
|
660
|
-
.
|
|
666
|
+
.kne-system-layout_UAJc- {
|
|
661
667
|
--container-width: 400px;
|
|
662
668
|
--container-height: 400px;
|
|
663
669
|
--container-base-width: var(--container-width);
|
|
@@ -673,7 +679,7 @@
|
|
|
673
679
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08);
|
|
674
680
|
transition: box-shadow 0.3s;
|
|
675
681
|
}
|
|
676
|
-
@keyframes
|
|
682
|
+
@keyframes kne-system-layout_VjIWn {
|
|
677
683
|
0%, 100% {
|
|
678
684
|
transform: scale(1);
|
|
679
685
|
}
|
|
@@ -681,24 +687,24 @@
|
|
|
681
687
|
transform: scale(1.02, 0.98);
|
|
682
688
|
}
|
|
683
689
|
}
|
|
684
|
-
.
|
|
685
|
-
animation:
|
|
690
|
+
.kne-system-layout_UAJc-:hover {
|
|
691
|
+
animation: kne-system-layout_VjIWn 0.4s ease-out;
|
|
686
692
|
background: rgba(255, 255, 255, 0.6);
|
|
687
693
|
backdrop-filter: blur(10px) saturate(1.5);
|
|
688
694
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08), 0 20px 40px 0 rgba(0, 0, 0, 0.08);
|
|
689
695
|
}
|
|
690
696
|
|
|
691
|
-
.
|
|
697
|
+
.kne-system-layout_I7Anv {
|
|
692
698
|
padding: 24px 0 24px 24px;
|
|
693
699
|
}
|
|
694
700
|
|
|
695
|
-
.
|
|
701
|
+
.kne-system-layout_UhsFd {
|
|
696
702
|
background: rgba(255, 255, 255, 0.4);
|
|
697
703
|
border-radius: 8px;
|
|
698
704
|
height: 100%;
|
|
699
705
|
transition: box-shadow 0.3s;
|
|
700
706
|
}
|
|
701
|
-
@keyframes
|
|
707
|
+
@keyframes kne-system-layout_H7slV {
|
|
702
708
|
0%, 100% {
|
|
703
709
|
transform: scale(1, 1);
|
|
704
710
|
}
|
|
@@ -706,59 +712,59 @@
|
|
|
706
712
|
transform: scale(1.01, 0.99);
|
|
707
713
|
}
|
|
708
714
|
}
|
|
709
|
-
.
|
|
715
|
+
.kne-system-layout_UhsFd:hover {
|
|
710
716
|
backdrop-filter: blur(40px) saturate(1.2);
|
|
711
|
-
animation:
|
|
717
|
+
animation: kne-system-layout_H7slV 0.4s ease-out;
|
|
712
718
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08), 0 20px 40px 0 rgba(0, 0, 0, 0.08);
|
|
713
719
|
}
|
|
714
720
|
|
|
715
|
-
.
|
|
721
|
+
.kne-system-layout_2mdNn {
|
|
716
722
|
--container-height: calc(var(--page-content-height) - 58px);
|
|
717
723
|
height: var(--container-height);
|
|
718
724
|
}
|
|
719
725
|
|
|
720
|
-
.
|
|
726
|
+
.kne-system-layout_OM1Q2 {
|
|
721
727
|
--container-height: calc(var(--page-content-height) - 48px);
|
|
722
728
|
padding: 24px;
|
|
723
729
|
box-sizing: border-box;
|
|
724
730
|
height: var(--page-height);
|
|
725
731
|
}
|
|
726
|
-
.
|
|
732
|
+
.kne-system-layout_OM1Q2.kne-system-layout_6gjkS {
|
|
727
733
|
overflow-y: auto;
|
|
728
734
|
}
|
|
729
735
|
|
|
730
|
-
.
|
|
736
|
+
.kne-system-layout_nyAa2 {
|
|
731
737
|
width: 100%;
|
|
732
738
|
}
|
|
733
739
|
|
|
734
|
-
.
|
|
740
|
+
.kne-system-layout_33Tja {
|
|
735
741
|
height: 58px;
|
|
736
742
|
align-items: center;
|
|
737
743
|
justify-content: space-between;
|
|
738
744
|
padding: 0 16px;
|
|
739
745
|
}
|
|
740
|
-
.
|
|
746
|
+
.kne-system-layout_33Tja .btn {
|
|
741
747
|
font-size: 24px;
|
|
742
748
|
color: var(--font-color-grey);
|
|
743
749
|
cursor: pointer;
|
|
744
750
|
}
|
|
745
751
|
|
|
746
|
-
.
|
|
752
|
+
.kne-system-layout_YmBhl {
|
|
747
753
|
--container-height: calc(var(--container-base-height) - 58px);
|
|
748
754
|
height: var(--container-height);
|
|
749
755
|
}
|
|
750
|
-
.
|
|
756
|
+
.kne-system-layout_Rfzv4 {
|
|
751
757
|
font-size: 12px;
|
|
752
758
|
color: var(--font-color-grey);
|
|
753
759
|
line-height: 24px;
|
|
754
760
|
padding: 12px;
|
|
755
761
|
}
|
|
756
762
|
|
|
757
|
-
.
|
|
763
|
+
.kne-system-layout_qoDtD {
|
|
758
764
|
color: var(--font-color-grey);
|
|
759
765
|
}
|
|
760
766
|
|
|
761
|
-
.
|
|
767
|
+
.kne-system-layout_socoO {
|
|
762
768
|
opacity: 0.6;
|
|
763
769
|
background: var(--font-color-grey-3);
|
|
764
770
|
height: 1px;
|
|
@@ -766,7 +772,7 @@
|
|
|
766
772
|
margin: 8px auto;
|
|
767
773
|
}
|
|
768
774
|
|
|
769
|
-
.
|
|
775
|
+
.kne-system-layout_Xa-2h {
|
|
770
776
|
line-height: 24px;
|
|
771
777
|
padding: 12px;
|
|
772
778
|
margin: 2px 0;
|
|
@@ -777,145 +783,384 @@
|
|
|
777
783
|
overflow: hidden;
|
|
778
784
|
text-overflow: ellipsis;
|
|
779
785
|
}
|
|
780
|
-
.
|
|
786
|
+
.kne-system-layout_Xa-2h:hover {
|
|
781
787
|
backdrop-filter: brightness(1.1);
|
|
782
788
|
transform: scale(1.02);
|
|
783
789
|
}
|
|
784
|
-
.
|
|
790
|
+
.kne-system-layout_Xa-2h.is-active {
|
|
785
791
|
background: linear-gradient(270deg, rgba(255, 255, 255, 0) -4%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0.3) 100%);
|
|
786
792
|
box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.05);
|
|
787
793
|
}
|
|
788
|
-
.
|
|
794
|
+
.kne-system-layout_Xa-2h.is-active .kne-system-layout_qoDtD {
|
|
789
795
|
color: var(--primary-color);
|
|
790
796
|
}
|
|
791
|
-
.
|
|
797
|
+
.kne-system-layout_Xa-2h.is-closed {
|
|
792
798
|
display: flex;
|
|
793
799
|
justify-content: center;
|
|
794
800
|
}
|
|
795
|
-
.
|
|
801
|
+
.kne-system-layout_Xa-2h.is-closed.is-active {
|
|
796
802
|
background: rgba(255, 255, 255, 0.6);
|
|
797
803
|
backdrop-filter: blur(40px) saturate(1.5);
|
|
798
804
|
}
|
|
799
|
-
.
|
|
805
|
+
.kne-system-layout_Xa-2h.is-closed .kne-system-layout_qoDtD {
|
|
800
806
|
font-size: 24px;
|
|
801
807
|
}
|
|
802
|
-
.
|
|
803
|
-
background:
|
|
804
|
-
backdrop-filter: blur(10px);
|
|
805
|
-
padding-bottom: var(--safe-area-inset-bottom);
|
|
808
|
+
.kne-system-layout_SLK-0 {
|
|
809
|
+
background: transparent;
|
|
806
810
|
}
|
|
807
811
|
|
|
808
|
-
.
|
|
809
|
-
height:
|
|
812
|
+
.kne-system-layout_GTQvM {
|
|
813
|
+
height: 72px;
|
|
810
814
|
position: fixed;
|
|
811
815
|
z-index: 600;
|
|
812
|
-
bottom:
|
|
813
|
-
left:
|
|
814
|
-
right:
|
|
815
|
-
border-radius:
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
816
|
+
bottom: calc(16px + var(--safe-area-inset-bottom, 0px));
|
|
817
|
+
left: 16px;
|
|
818
|
+
right: 16px;
|
|
819
|
+
border-radius: 999px;
|
|
820
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
821
|
+
box-shadow: 0 4px 16px 0 rgba(78, 96, 139, 0.18), 0 2px 6px 0 rgba(78, 96, 139, 0.1), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
|
|
822
|
+
background: rgba(255, 255, 255, 0.25);
|
|
823
|
+
backdrop-filter: blur(20px);
|
|
824
|
+
-webkit-backdrop-filter: blur(20px);
|
|
825
|
+
padding: 6px 8px;
|
|
826
|
+
box-sizing: border-box;
|
|
827
|
+
transition: transform 0.3s ease, width 0.3s ease, background 0.3s ease, padding 0.3s ease;
|
|
828
|
+
}
|
|
829
|
+
.kne-system-layout_GTQvM.is-scrolling {
|
|
830
|
+
width: calc((100vw - 32px) / var(--toolbar-count, 4));
|
|
831
|
+
right: auto;
|
|
832
|
+
transform: scale(0.65);
|
|
833
|
+
transform-origin: left bottom;
|
|
834
|
+
padding: 8px;
|
|
835
|
+
backdrop-filter: blur(2px);
|
|
836
|
+
-webkit-backdrop-filter: blur(2px);
|
|
837
|
+
background: rgba(255, 255, 255, 0.1);
|
|
838
|
+
}
|
|
839
|
+
.kne-system-layout_GTQvM.is-scrolling .kne-system-layout_fAZ3n {
|
|
840
|
+
padding: 0 !important;
|
|
841
|
+
flex: none !important;
|
|
842
|
+
width: 100%;
|
|
843
|
+
height: 100%;
|
|
844
|
+
gap: 0 !important;
|
|
845
|
+
order: 2;
|
|
846
|
+
}
|
|
847
|
+
.kne-system-layout_GTQvM.is-scrolling .kne-system-layout_fAZ3n .kne-system-layout_qOB9o {
|
|
848
|
+
line-height: 1;
|
|
849
|
+
display: flex;
|
|
850
|
+
align-items: center;
|
|
851
|
+
justify-content: center;
|
|
852
|
+
}
|
|
853
|
+
.kne-system-layout_GTQvM.is-scrolling .kne-system-layout_fAZ3n:not(.kne-system-layout_ss5zk) {
|
|
854
|
+
order: 1;
|
|
855
|
+
}
|
|
856
|
+
.kne-system-layout_GTQvM.is-scrolling .kne-system-layout_h48es {
|
|
857
|
+
display: none;
|
|
858
|
+
}
|
|
859
|
+
.kne-system-layout_GTQvM.is-scrolling .kne-system-layout_1s-bc {
|
|
860
|
+
left: 8px !important;
|
|
861
|
+
right: 8px;
|
|
862
|
+
width: auto !important;
|
|
863
|
+
}
|
|
864
|
+
.kne-system-layout_GTQvM.is-clicked {
|
|
865
|
+
animation: kne-system-layout_Ys3yu 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
819
866
|
}
|
|
820
867
|
|
|
821
|
-
|
|
868
|
+
@keyframes kne-system-layout_Ys3yu {
|
|
869
|
+
0% {
|
|
870
|
+
transform: scaleX(1) scaleY(1);
|
|
871
|
+
filter: brightness(1);
|
|
872
|
+
}
|
|
873
|
+
25% {
|
|
874
|
+
transform: scaleX(0.98) scaleY(1.015);
|
|
875
|
+
filter: brightness(1.15);
|
|
876
|
+
}
|
|
877
|
+
55% {
|
|
878
|
+
transform: scaleX(1.008) scaleY(0.995);
|
|
879
|
+
filter: brightness(1.05);
|
|
880
|
+
}
|
|
881
|
+
100% {
|
|
882
|
+
transform: scale(1);
|
|
883
|
+
filter: brightness(1);
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
.kne-system-layout_fAZ3n {
|
|
822
887
|
cursor: pointer;
|
|
888
|
+
border-radius: 999px;
|
|
889
|
+
padding: 4px 12px;
|
|
890
|
+
box-sizing: border-box;
|
|
891
|
+
min-width: 0;
|
|
892
|
+
position: relative;
|
|
893
|
+
z-index: 1;
|
|
894
|
+
transition: opacity 0.2s ease;
|
|
895
|
+
overflow: hidden;
|
|
823
896
|
}
|
|
824
|
-
.
|
|
825
|
-
.
|
|
897
|
+
.kne-system-layout_fAZ3n .kne-system-layout_qOB9o,
|
|
898
|
+
.kne-system-layout_fAZ3n .kne-system-layout_h48es {
|
|
899
|
+
color: #333;
|
|
900
|
+
transition: color 0.5s ease;
|
|
901
|
+
}
|
|
902
|
+
.kne-system-layout_fAZ3n.is-active .kne-system-layout_qOB9o,
|
|
903
|
+
.kne-system-layout_fAZ3n.is-active .kne-system-layout_h48es {
|
|
826
904
|
color: var(--primary-color);
|
|
827
905
|
}
|
|
906
|
+
.kne-system-layout_fAZ3n.kne-system-layout_ss5zk {
|
|
907
|
+
opacity: 0;
|
|
908
|
+
pointer-events: none;
|
|
909
|
+
flex: 0 !important;
|
|
910
|
+
width: 0;
|
|
911
|
+
overflow: hidden;
|
|
912
|
+
padding: 0;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.kne-system-layout_1s-bc {
|
|
916
|
+
position: absolute;
|
|
917
|
+
top: 6px;
|
|
918
|
+
bottom: 6px;
|
|
919
|
+
border-radius: 999px;
|
|
920
|
+
background: rgba(120, 120, 120, 0.22);
|
|
921
|
+
transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
|
|
922
|
+
z-index: 0;
|
|
923
|
+
pointer-events: none;
|
|
924
|
+
will-change: left, width, transform;
|
|
925
|
+
}
|
|
828
926
|
|
|
829
|
-
.
|
|
927
|
+
.kne-system-layout_fAZ3n .kne-system-layout_qOB9o {
|
|
830
928
|
width: 24px;
|
|
831
929
|
height: 24px;
|
|
832
930
|
font-size: 24px;
|
|
931
|
+
line-height: 1;
|
|
833
932
|
}
|
|
834
933
|
|
|
835
|
-
.
|
|
934
|
+
.kne-system-layout_h48es {
|
|
836
935
|
font-size: 12px;
|
|
936
|
+
white-space: nowrap;
|
|
937
|
+
overflow: hidden;
|
|
938
|
+
text-overflow: ellipsis;
|
|
939
|
+
max-width: 100%;
|
|
837
940
|
}
|
|
838
941
|
@media (max-width: 768px) {
|
|
839
|
-
.
|
|
942
|
+
.kne-system-layout_c1kXt {
|
|
840
943
|
gap: 0 !important;
|
|
841
944
|
}
|
|
842
|
-
.
|
|
945
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH {
|
|
843
946
|
height: 48px;
|
|
844
947
|
padding: 0 16px;
|
|
845
948
|
background: #ffffff;
|
|
846
949
|
margin-bottom: 0;
|
|
950
|
+
position: fixed;
|
|
951
|
+
top: var(--safe-area-inset-top, 0px);
|
|
952
|
+
left: 0;
|
|
953
|
+
right: 0;
|
|
954
|
+
z-index: 600;
|
|
955
|
+
transition: height 0.3s ease, padding 0.3s ease, background 0.3s ease, margin 0.3s ease, top 0.3s ease;
|
|
956
|
+
}
|
|
957
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy {
|
|
958
|
+
height: 36px;
|
|
959
|
+
padding: 0;
|
|
960
|
+
background: transparent;
|
|
961
|
+
margin: 8px 16px;
|
|
962
|
+
top: calc(8px + var(--safe-area-inset-top, 0px));
|
|
963
|
+
}
|
|
964
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_jhcGo {
|
|
965
|
+
border-radius: 999px;
|
|
966
|
+
padding: 0 12px;
|
|
967
|
+
height: 36px;
|
|
968
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
969
|
+
box-shadow: 0 8px 32px 0 rgba(78, 96, 139, 0.18), 0 2px 8px 0 rgba(78, 96, 139, 0.1), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
|
|
970
|
+
background: rgba(255, 255, 255, 0.25);
|
|
971
|
+
backdrop-filter: blur(10px);
|
|
972
|
+
-webkit-backdrop-filter: blur(10px);
|
|
847
973
|
}
|
|
848
|
-
.
|
|
974
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_jhcGo:active {
|
|
975
|
+
animation: kne-system-layout_Ps1FA 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
976
|
+
}
|
|
977
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_mKsLu {
|
|
978
|
+
border-radius: 999px;
|
|
979
|
+
padding: 0 8px;
|
|
980
|
+
height: 36px;
|
|
981
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
982
|
+
box-shadow: 0 8px 32px 0 rgba(78, 96, 139, 0.18), 0 2px 8px 0 rgba(78, 96, 139, 0.1), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
|
|
983
|
+
background: rgba(255, 255, 255, 0.25);
|
|
984
|
+
backdrop-filter: blur(10px);
|
|
985
|
+
-webkit-backdrop-filter: blur(10px);
|
|
986
|
+
}
|
|
987
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_mKsLu:active {
|
|
988
|
+
animation: kne-system-layout_Ps1FA 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
989
|
+
}
|
|
990
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_IOVGr {
|
|
991
|
+
font-size: 14px;
|
|
992
|
+
color: #333;
|
|
993
|
+
}
|
|
994
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .ant-btn {
|
|
995
|
+
color: #333 !important;
|
|
996
|
+
}
|
|
997
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH.kne-system-layout_dEXMy .ant-btn:hover {
|
|
998
|
+
color: #555 !important;
|
|
999
|
+
}
|
|
1000
|
+
@keyframes kne-system-layout_Ps1FA {
|
|
1001
|
+
0% {
|
|
1002
|
+
transform: scaleX(1) scaleY(1);
|
|
1003
|
+
filter: brightness(1);
|
|
1004
|
+
}
|
|
1005
|
+
25% {
|
|
1006
|
+
transform: scaleX(0.97) scaleY(1.03);
|
|
1007
|
+
filter: brightness(1.2);
|
|
1008
|
+
}
|
|
1009
|
+
55% {
|
|
1010
|
+
transform: scaleX(1.015) scaleY(0.99);
|
|
1011
|
+
filter: brightness(1.08);
|
|
1012
|
+
}
|
|
1013
|
+
100% {
|
|
1014
|
+
transform: scale(1);
|
|
1015
|
+
filter: brightness(1);
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
.kne-system-layout_c1kXt .kne-system-layout_IOVGr {
|
|
849
1019
|
font-size: 16px;
|
|
850
1020
|
flex: 1;
|
|
851
1021
|
color: var(--primary-color);
|
|
1022
|
+
transition: font-size 0.3s ease, color 0.3s ease;
|
|
852
1023
|
}
|
|
853
|
-
.
|
|
1024
|
+
.kne-system-layout_c1kXt .kne-system-layout_mKsLu {
|
|
854
1025
|
flex: none;
|
|
855
1026
|
}
|
|
856
|
-
.
|
|
1027
|
+
.kne-system-layout_c1kXt .kne-system-layout_Y1y7o {
|
|
1028
|
+
padding-top: calc(52px + var(--safe-area-inset-top, 0px));
|
|
1029
|
+
}
|
|
1030
|
+
.kne-system-layout_c1kXt .kne-system-layout_wHWje {
|
|
857
1031
|
box-sizing: border-box;
|
|
858
1032
|
--content-height: calc(var(--page-inner-height) - 24px);
|
|
859
1033
|
padding: 12px;
|
|
860
1034
|
}
|
|
861
|
-
.
|
|
1035
|
+
.kne-system-layout_c1kXt .kne-system-layout_wHWje:after {
|
|
862
1036
|
content: "";
|
|
863
1037
|
display: block;
|
|
864
|
-
height: var(--toolbar-height);
|
|
1038
|
+
height: calc(var(--toolbar-height) + 48px + var(--safe-area-inset-bottom));
|
|
865
1039
|
}
|
|
866
|
-
.
|
|
1040
|
+
.kne-system-layout_c1kXt .kne-system-layout_wHWje.kne-system-layout_tBnAD {
|
|
867
1041
|
--content-height: var(--page-inner-height);
|
|
868
1042
|
padding: 0;
|
|
869
1043
|
}
|
|
870
1044
|
}
|
|
871
|
-
.
|
|
1045
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx {
|
|
872
1046
|
gap: 0 !important;
|
|
873
1047
|
}
|
|
874
|
-
.
|
|
1048
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH {
|
|
875
1049
|
height: 48px;
|
|
876
1050
|
padding: 0 16px;
|
|
877
1051
|
background: #ffffff;
|
|
878
1052
|
margin-bottom: 0;
|
|
1053
|
+
position: fixed;
|
|
1054
|
+
top: var(--safe-area-inset-top, 0px);
|
|
1055
|
+
left: 0;
|
|
1056
|
+
right: 0;
|
|
1057
|
+
z-index: 600;
|
|
1058
|
+
transition: height 0.3s ease, padding 0.3s ease, background 0.3s ease, margin 0.3s ease, top 0.3s ease;
|
|
1059
|
+
}
|
|
1060
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy {
|
|
1061
|
+
height: 36px;
|
|
1062
|
+
padding: 0;
|
|
1063
|
+
background: transparent;
|
|
1064
|
+
margin: 8px 16px;
|
|
1065
|
+
top: calc(8px + var(--safe-area-inset-top, 0px));
|
|
1066
|
+
}
|
|
1067
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_jhcGo {
|
|
1068
|
+
border-radius: 999px;
|
|
1069
|
+
padding: 0 12px;
|
|
1070
|
+
height: 36px;
|
|
1071
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
1072
|
+
box-shadow: 0 8px 32px 0 rgba(78, 96, 139, 0.18), 0 2px 8px 0 rgba(78, 96, 139, 0.1), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
|
|
1073
|
+
background: rgba(255, 255, 255, 0.25);
|
|
1074
|
+
backdrop-filter: blur(10px);
|
|
1075
|
+
-webkit-backdrop-filter: blur(10px);
|
|
1076
|
+
}
|
|
1077
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_jhcGo:active {
|
|
1078
|
+
animation: kne-system-layout_Ps1FA 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
1079
|
+
}
|
|
1080
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_mKsLu {
|
|
1081
|
+
border-radius: 999px;
|
|
1082
|
+
padding: 0 8px;
|
|
1083
|
+
height: 36px;
|
|
1084
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
1085
|
+
box-shadow: 0 8px 32px 0 rgba(78, 96, 139, 0.18), 0 2px 8px 0 rgba(78, 96, 139, 0.1), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
|
|
1086
|
+
background: rgba(255, 255, 255, 0.25);
|
|
1087
|
+
backdrop-filter: blur(10px);
|
|
1088
|
+
-webkit-backdrop-filter: blur(10px);
|
|
879
1089
|
}
|
|
880
|
-
.
|
|
1090
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_mKsLu:active {
|
|
1091
|
+
animation: kne-system-layout_Ps1FA 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
1092
|
+
}
|
|
1093
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .kne-system-layout_IOVGr {
|
|
1094
|
+
font-size: 14px;
|
|
1095
|
+
color: #333;
|
|
1096
|
+
}
|
|
1097
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .ant-btn {
|
|
1098
|
+
color: #333 !important;
|
|
1099
|
+
}
|
|
1100
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH.kne-system-layout_dEXMy .ant-btn:hover {
|
|
1101
|
+
color: #555 !important;
|
|
1102
|
+
}
|
|
1103
|
+
@keyframes kne-system-layout_Ps1FA {
|
|
1104
|
+
0% {
|
|
1105
|
+
transform: scaleX(1) scaleY(1);
|
|
1106
|
+
filter: brightness(1);
|
|
1107
|
+
}
|
|
1108
|
+
25% {
|
|
1109
|
+
transform: scaleX(0.97) scaleY(1.03);
|
|
1110
|
+
filter: brightness(1.2);
|
|
1111
|
+
}
|
|
1112
|
+
55% {
|
|
1113
|
+
transform: scaleX(1.015) scaleY(0.99);
|
|
1114
|
+
filter: brightness(1.08);
|
|
1115
|
+
}
|
|
1116
|
+
100% {
|
|
1117
|
+
transform: scale(1);
|
|
1118
|
+
filter: brightness(1);
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_IOVGr {
|
|
881
1122
|
font-size: 16px;
|
|
882
1123
|
flex: 1;
|
|
883
1124
|
color: var(--primary-color);
|
|
1125
|
+
transition: font-size 0.3s ease, color 0.3s ease;
|
|
884
1126
|
}
|
|
885
|
-
.
|
|
1127
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_mKsLu {
|
|
886
1128
|
flex: none;
|
|
887
1129
|
}
|
|
888
|
-
.
|
|
1130
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_Y1y7o {
|
|
1131
|
+
padding-top: calc(52px + var(--safe-area-inset-top, 0px));
|
|
1132
|
+
}
|
|
1133
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_wHWje {
|
|
889
1134
|
box-sizing: border-box;
|
|
890
1135
|
--content-height: calc(var(--page-inner-height) - 24px);
|
|
891
1136
|
padding: 12px;
|
|
892
1137
|
}
|
|
893
|
-
.
|
|
1138
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_wHWje:after {
|
|
894
1139
|
content: "";
|
|
895
1140
|
display: block;
|
|
896
|
-
height: var(--toolbar-height);
|
|
1141
|
+
height: calc(var(--toolbar-height) + 48px + var(--safe-area-inset-bottom));
|
|
897
1142
|
}
|
|
898
|
-
.
|
|
1143
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_wHWje.kne-system-layout_tBnAD {
|
|
899
1144
|
--content-height: var(--page-inner-height);
|
|
900
1145
|
padding: 0;
|
|
901
1146
|
}
|
|
902
1147
|
|
|
903
|
-
.
|
|
1148
|
+
.kne-system-layout_jhcGo {
|
|
904
1149
|
white-space: nowrap;
|
|
905
1150
|
overflow: hidden;
|
|
906
1151
|
text-overflow: ellipsis;
|
|
907
1152
|
}
|
|
908
1153
|
|
|
909
|
-
.
|
|
1154
|
+
.kne-system-layout_h-YXH {
|
|
910
1155
|
margin-bottom: 12px;
|
|
911
1156
|
}
|
|
912
1157
|
|
|
913
|
-
.
|
|
1158
|
+
.kne-system-layout_IOVGr {
|
|
914
1159
|
font-size: 20px;
|
|
915
1160
|
font-weight: 500;
|
|
916
1161
|
}
|
|
917
1162
|
|
|
918
|
-
.
|
|
1163
|
+
.kne-system-layout_wHWje {
|
|
919
1164
|
--content-height: var(--page-inner-height);
|
|
920
1165
|
min-height: calc(var(--page-inner-height) + var(--toolbar-height));
|
|
921
1166
|
display: flex;
|
|
@@ -923,33 +1168,33 @@
|
|
|
923
1168
|
flex: 1;
|
|
924
1169
|
}
|
|
925
1170
|
|
|
926
|
-
.
|
|
1171
|
+
.kne-system-layout_mKsLu {
|
|
927
1172
|
display: flex;
|
|
928
1173
|
justify-content: flex-end;
|
|
929
1174
|
flex: 1;
|
|
930
1175
|
max-width: 50%;
|
|
931
1176
|
}
|
|
932
1177
|
|
|
933
|
-
.
|
|
1178
|
+
.kne-system-layout_vcf3J {
|
|
934
1179
|
width: 100%;
|
|
935
1180
|
background: #fff;
|
|
936
1181
|
padding: 12px;
|
|
937
1182
|
border-radius: 12px;
|
|
938
1183
|
}
|
|
939
1184
|
|
|
940
|
-
.
|
|
1185
|
+
.kne-system-layout_Y1y7o {
|
|
941
1186
|
display: block;
|
|
942
1187
|
width: 100%;
|
|
943
1188
|
padding-top: var(--safe-area-inset-top);
|
|
944
1189
|
}
|
|
945
1190
|
|
|
946
|
-
.
|
|
1191
|
+
.kne-system-layout_vXk1s {
|
|
947
1192
|
display: block;
|
|
948
1193
|
width: 100%;
|
|
949
1194
|
padding-bottom: var(--safe-area-inset-bottom);
|
|
950
1195
|
}
|
|
951
1196
|
|
|
952
|
-
.
|
|
1197
|
+
.kne-system-layout_07Mna {
|
|
953
1198
|
display: block;
|
|
954
1199
|
transform: rotate(180deg);
|
|
955
1200
|
}
|