@kne/system-layout 0.2.0-alpha.13 → 0.2.0-alpha.15
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-a597c424.js → index-e5de73c3.js} +1 -1
- package/dist/{index-a597c424.js.map → index-e5de73c3.js.map} +1 -1
- package/dist/index.css +193 -130
- package/dist/index.css.map +1 -1
- package/dist/index.js +80 -60
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +28 -15
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -248,34 +248,34 @@
|
|
|
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
|
-
.
|
|
261
|
+
.kne-system-layout_sK89O.kne-system-layout_gyKfI {
|
|
262
262
|
--toolbar-height: 60px;
|
|
263
263
|
}
|
|
264
|
-
.
|
|
264
|
+
.kne-system-layout_sK89O.kne-system-layout_X1wZG {
|
|
265
265
|
--nav-height: 48px;
|
|
266
266
|
}
|
|
267
|
-
.
|
|
267
|
+
.kne-system-layout_sK89O .kne-system-layout_-LpWn {
|
|
268
268
|
position: absolute;
|
|
269
269
|
left: calc(var(--menu-min-width) * -1);
|
|
270
270
|
z-index: 900;
|
|
271
271
|
background: var(--background);
|
|
272
272
|
height: 100%;
|
|
273
273
|
}
|
|
274
|
-
.
|
|
274
|
+
.kne-system-layout_sK89O .kne-system-layout_-LpWn.kne-system-layout_G-zuN {
|
|
275
275
|
left: 0;
|
|
276
276
|
box-shadow: 0 -2px 22.9px 0 rgba(78, 96, 139, 0.13);
|
|
277
277
|
}
|
|
278
|
-
.
|
|
278
|
+
.kne-system-layout_sK89O .kne-system-layout_6TCwG {
|
|
279
279
|
position: absolute;
|
|
280
280
|
top: 0;
|
|
281
281
|
left: 0;
|
|
@@ -287,29 +287,32 @@
|
|
|
287
287
|
pointer-events: none;
|
|
288
288
|
transition: opacity 300ms;
|
|
289
289
|
}
|
|
290
|
-
.
|
|
290
|
+
.kne-system-layout_sK89O .kne-system-layout_6TCwG.kne-system-layout_G-zuN {
|
|
291
291
|
opacity: 1;
|
|
292
292
|
pointer-events: auto;
|
|
293
293
|
}
|
|
294
|
-
.
|
|
294
|
+
.kne-system-layout_sK89O .kne-system-layout_5qnw5 {
|
|
295
295
|
display: none;
|
|
296
296
|
}
|
|
297
|
-
.
|
|
297
|
+
.kne-system-layout_sK89O .kne-system-layout_HnwkM {
|
|
298
298
|
border-radius: 0;
|
|
299
299
|
border: 0;
|
|
300
300
|
}
|
|
301
|
-
.
|
|
301
|
+
.kne-system-layout_sK89O .kne-system-layout_h8PAW {
|
|
302
302
|
display: block;
|
|
303
303
|
}
|
|
304
|
-
.
|
|
304
|
+
.kne-system-layout_sK89O .kne-system-layout_OM1Q2 {
|
|
305
305
|
padding: 0;
|
|
306
306
|
overflow: visible !important;
|
|
307
307
|
height: unset;
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
|
-
.
|
|
310
|
+
.kne-system-layout_sK89O {
|
|
311
311
|
--window-width: 100vw;
|
|
312
|
-
--window-height:
|
|
312
|
+
--window-height: 100dvh;
|
|
313
|
+
--multiple: var(--safe-area-multiple, 1);
|
|
314
|
+
--safe-area-inset-top: calc(env(safe-area-inset-top) * var(--multiple));
|
|
315
|
+
--safe-area-inset-bottom: calc(env(safe-area-inset-bottom) * var(--multiple));
|
|
313
316
|
--nav-height: 0px;
|
|
314
317
|
--toolbar-height: 0px;
|
|
315
318
|
--page-height: calc(var(--window-height) - 48px);
|
|
@@ -321,95 +324,136 @@
|
|
|
321
324
|
box-sizing: border-box;
|
|
322
325
|
padding: 24px 24px 24px 0;
|
|
323
326
|
position: relative;
|
|
327
|
+
line-height: 1.4;
|
|
324
328
|
}
|
|
325
|
-
.
|
|
329
|
+
.kne-system-layout_sK89O .system-max-width-900 {
|
|
330
|
+
max-width: 900px;
|
|
331
|
+
width: 100%;
|
|
332
|
+
margin: 0 auto;
|
|
333
|
+
}
|
|
334
|
+
.kne-system-layout_sK89O .system-font-title {
|
|
335
|
+
font-size: 16px;
|
|
336
|
+
font-weight: bold;
|
|
337
|
+
}
|
|
338
|
+
.kne-system-layout_sK89O .system-font-title-primary {
|
|
339
|
+
font-size: 16px;
|
|
340
|
+
font-weight: bold;
|
|
341
|
+
color: var(--primary-color);
|
|
342
|
+
}
|
|
343
|
+
.kne-system-layout_sK89O .system-font-sub-title {
|
|
344
|
+
font-weight: bold;
|
|
345
|
+
}
|
|
346
|
+
.kne-system-layout_sK89O .system-font-bold {
|
|
347
|
+
font-weight: bold;
|
|
348
|
+
}
|
|
349
|
+
.kne-system-layout_sK89O .system-font-description {
|
|
350
|
+
color: var(--font-color-grey);
|
|
351
|
+
}
|
|
352
|
+
.kne-system-layout_sK89O .scroller-bar {
|
|
353
|
+
background: transparent !important;
|
|
354
|
+
border-color: transparent !important;
|
|
355
|
+
}
|
|
356
|
+
.kne-system-layout_sK89O .scroller-bar .scroller-bar-inner {
|
|
357
|
+
background: #999 !important;
|
|
358
|
+
height: 40%;
|
|
359
|
+
}
|
|
360
|
+
.kne-system-layout_sK89O .ant-tag {
|
|
326
361
|
background: var(--primary-color-1);
|
|
327
362
|
border-radius: 11px;
|
|
328
363
|
color: var(--font-color-grey);
|
|
329
364
|
}
|
|
330
|
-
.
|
|
365
|
+
.kne-system-layout_sK89O .ant-segmented {
|
|
331
366
|
border: 1px solid #d1d5db;
|
|
332
367
|
border-radius: 17px;
|
|
333
368
|
background: transparent !important;
|
|
334
369
|
}
|
|
335
|
-
.
|
|
336
|
-
.
|
|
370
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-item,
|
|
371
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-thumb {
|
|
337
372
|
border-radius: 14px;
|
|
338
373
|
}
|
|
339
|
-
.
|
|
340
|
-
.
|
|
374
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-item.ant-segmented-item-selected,
|
|
375
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-thumb {
|
|
341
376
|
background: var(--primary-color) !important;
|
|
342
377
|
color: #fff !important;
|
|
343
378
|
}
|
|
344
|
-
.
|
|
379
|
+
.kne-system-layout_sK89O .ant-segmented .ant-segmented-item:after {
|
|
345
380
|
background: transparent !important;
|
|
346
381
|
}
|
|
347
|
-
.
|
|
382
|
+
.kne-system-layout_sK89O .filter .filter-title {
|
|
348
383
|
border-bottom: none;
|
|
349
384
|
}
|
|
350
|
-
.
|
|
385
|
+
.kne-system-layout_sK89O .react-form .ant-card {
|
|
351
386
|
max-width: 900px;
|
|
352
387
|
margin: 0 auto;
|
|
353
388
|
width: 100%;
|
|
354
389
|
}
|
|
355
|
-
.
|
|
390
|
+
.kne-system-layout_sK89O .max-width-info-page {
|
|
356
391
|
max-width: 900px;
|
|
357
392
|
margin: 0 auto;
|
|
358
393
|
width: 100%;
|
|
359
394
|
}
|
|
360
|
-
.
|
|
395
|
+
.kne-system-layout_sK89O .part.bordered {
|
|
361
396
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
362
397
|
}
|
|
363
|
-
.
|
|
398
|
+
.kne-system-layout_sK89O .part.bordered .part-title {
|
|
364
399
|
font-size: 16px;
|
|
365
400
|
}
|
|
366
|
-
.
|
|
401
|
+
.kne-system-layout_sK89O .ant-pagination-options-size-changer {
|
|
367
402
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
368
403
|
}
|
|
369
|
-
.
|
|
404
|
+
.kne-system-layout_sK89O .ant-tree {
|
|
370
405
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
371
406
|
}
|
|
372
|
-
.
|
|
373
|
-
.
|
|
407
|
+
.kne-system-layout_sK89O .ant-table,
|
|
408
|
+
.kne-system-layout_sK89O .ant-table-placeholder {
|
|
374
409
|
background: rgba(255, 255, 255, 0.4392156863) !important;
|
|
375
410
|
}
|
|
376
|
-
.
|
|
377
|
-
.
|
|
411
|
+
.kne-system-layout_sK89O .ant-table-cell,
|
|
412
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-tbody > tr > td.ant-table-cell {
|
|
378
413
|
padding: 4px 8px;
|
|
379
414
|
}
|
|
380
|
-
.
|
|
415
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-thead > tr > th.ant-table-cell {
|
|
381
416
|
padding: 6px 16px;
|
|
382
417
|
font-weight: 400 !important;
|
|
383
418
|
color: var(--font-color-grey);
|
|
384
419
|
}
|
|
385
|
-
.
|
|
420
|
+
.kne-system-layout_sK89O .ant-table-wrapper .ant-table-cell-fix {
|
|
421
|
+
background: transparent;
|
|
422
|
+
}
|
|
423
|
+
.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
|
+
background: var(--bg-color-grey);
|
|
425
|
+
}
|
|
426
|
+
.kne-system-layout_sK89O .ant-tooltip-container {
|
|
427
|
+
max-width: 400px;
|
|
428
|
+
}
|
|
429
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ {
|
|
386
430
|
width: 100%;
|
|
387
431
|
padding: 0;
|
|
388
432
|
overflow: hidden;
|
|
389
433
|
height: unset;
|
|
390
434
|
min-height: var(--window-height);
|
|
391
|
-
--page-height:
|
|
435
|
+
--page-height: 100dvh;
|
|
392
436
|
--page-content-height: var(--page-height);
|
|
393
437
|
--page-inner-height: calc(var(--page-height) - var(--nav-height) - var(--toolbar-height));
|
|
394
438
|
}
|
|
395
|
-
.
|
|
439
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ.kne-system-layout_gyKfI {
|
|
396
440
|
--toolbar-height: 60px;
|
|
397
441
|
}
|
|
398
|
-
.
|
|
442
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ.kne-system-layout_X1wZG {
|
|
399
443
|
--nav-height: 48px;
|
|
400
444
|
}
|
|
401
|
-
.
|
|
445
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_-LpWn {
|
|
402
446
|
position: absolute;
|
|
403
447
|
left: calc(var(--menu-min-width) * -1);
|
|
404
448
|
z-index: 900;
|
|
405
449
|
background: var(--background);
|
|
406
450
|
height: 100%;
|
|
407
451
|
}
|
|
408
|
-
.
|
|
452
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_-LpWn.kne-system-layout_G-zuN {
|
|
409
453
|
left: 0;
|
|
410
454
|
box-shadow: 0 -2px 22.9px 0 rgba(78, 96, 139, 0.13);
|
|
411
455
|
}
|
|
412
|
-
.
|
|
456
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_6TCwG {
|
|
413
457
|
position: absolute;
|
|
414
458
|
top: 0;
|
|
415
459
|
left: 0;
|
|
@@ -421,105 +465,105 @@
|
|
|
421
465
|
pointer-events: none;
|
|
422
466
|
transition: opacity 300ms;
|
|
423
467
|
}
|
|
424
|
-
.
|
|
468
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_6TCwG.kne-system-layout_G-zuN {
|
|
425
469
|
opacity: 1;
|
|
426
470
|
pointer-events: auto;
|
|
427
471
|
}
|
|
428
|
-
.
|
|
472
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_5qnw5 {
|
|
429
473
|
display: none;
|
|
430
474
|
}
|
|
431
|
-
.
|
|
475
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_HnwkM {
|
|
432
476
|
border-radius: 0;
|
|
433
477
|
border: 0;
|
|
434
478
|
}
|
|
435
|
-
.
|
|
479
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_h8PAW {
|
|
436
480
|
display: block;
|
|
437
481
|
}
|
|
438
|
-
.
|
|
482
|
+
.kne-system-layout_sK89O.kne-system-layout_udBgQ .kne-system-layout_OM1Q2 {
|
|
439
483
|
padding: 0;
|
|
440
484
|
overflow: visible !important;
|
|
441
485
|
height: unset;
|
|
442
486
|
}
|
|
443
|
-
.
|
|
487
|
+
.kne-system-layout_sK89O .kne-system-layout_h8PAW {
|
|
444
488
|
display: none;
|
|
445
489
|
}
|
|
446
|
-
.
|
|
490
|
+
.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) {
|
|
447
491
|
background: var(--primary-color-2);
|
|
448
492
|
color: var(--primary-color);
|
|
449
493
|
}
|
|
450
|
-
.
|
|
494
|
+
.kne-system-layout_sK89O .ant-btn:not(.ant-btn-link):not(.ant-btn-dashed):not(.ant-btn-text):not(:disabled) {
|
|
451
495
|
border: 1px solid rgba(255, 255, 255, 0.1) !important;
|
|
452
496
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08);
|
|
453
497
|
backdrop-filter: blur(10px);
|
|
454
498
|
}
|
|
455
|
-
.
|
|
499
|
+
.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) {
|
|
456
500
|
backdrop-filter: blur(40px) saturate(1.5) brightness(1.2);
|
|
457
501
|
transform: scale(1.04);
|
|
458
502
|
}
|
|
459
|
-
.
|
|
503
|
+
.kne-system-layout_sK89O .ant-btn:active:not(.ant-btn-loading) {
|
|
460
504
|
box-shadow: none !important;
|
|
461
505
|
transform: scale(1);
|
|
462
506
|
}
|
|
463
|
-
.
|
|
507
|
+
.kne-system-layout_sK89O .ant-btn:disabled {
|
|
464
508
|
box-shadow: none;
|
|
465
509
|
color: var(--font-color-disabled);
|
|
466
510
|
background: rgba(17, 24, 39, 0.2);
|
|
467
511
|
}
|
|
468
|
-
.
|
|
512
|
+
.kne-system-layout_sK89O .ant-btn.ant-btn-primary:not(:disabled) {
|
|
469
513
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08);
|
|
470
514
|
}
|
|
471
|
-
.
|
|
515
|
+
.kne-system-layout_sK89O .ant-btn.ant-btn-loading {
|
|
472
516
|
opacity: 0.6;
|
|
473
517
|
}
|
|
474
|
-
.
|
|
518
|
+
.kne-system-layout_sK89O .ant-btn {
|
|
475
519
|
position: relative;
|
|
476
520
|
}
|
|
477
|
-
.
|
|
521
|
+
.kne-system-layout_sK89O .ant-btn .ant-btn-loading-icon {
|
|
478
522
|
position: absolute;
|
|
479
523
|
}
|
|
480
524
|
|
|
481
|
-
.
|
|
525
|
+
.kne-system-layout_-LpWn {
|
|
482
526
|
flex: none;
|
|
483
527
|
transition: width 0.3s;
|
|
484
528
|
position: relative;
|
|
485
529
|
}
|
|
486
|
-
.
|
|
530
|
+
.kne-system-layout_-LpWn.kne-system-layout_G-zuN {
|
|
487
531
|
width: var(--menu-max-width);
|
|
488
532
|
}
|
|
489
|
-
.
|
|
533
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) {
|
|
490
534
|
width: var(--menu-min-width);
|
|
491
535
|
}
|
|
492
|
-
.
|
|
536
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) .kne-system-layout_7wq3X {
|
|
493
537
|
padding: 0 16px;
|
|
494
538
|
}
|
|
495
|
-
.
|
|
539
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) .kne-system-layout_-T-Dc {
|
|
496
540
|
padding: 8px 16px;
|
|
497
541
|
justify-content: center;
|
|
498
542
|
}
|
|
499
|
-
.
|
|
543
|
+
.kne-system-layout_-LpWn:not(.kne-system-layout_G-zuN) .kne-system-layout_LOrmu {
|
|
500
544
|
padding: 12px 0;
|
|
501
545
|
border: none;
|
|
502
546
|
background: none;
|
|
503
547
|
justify-content: center;
|
|
504
548
|
}
|
|
505
549
|
|
|
506
|
-
.
|
|
550
|
+
.kne-system-layout_-T-Dc {
|
|
507
551
|
padding: 8px 24px;
|
|
508
552
|
display: flex;
|
|
509
553
|
justify-content: flex-start;
|
|
510
554
|
}
|
|
511
|
-
.
|
|
555
|
+
.kne-system-layout_-T-Dc img {
|
|
512
556
|
height: 24px !important;
|
|
513
557
|
object-fit: contain;
|
|
514
558
|
max-width: 100%;
|
|
515
559
|
}
|
|
516
560
|
|
|
517
|
-
.
|
|
561
|
+
.kne-system-layout_2cRWf {
|
|
518
562
|
display: flex;
|
|
519
563
|
align-items: center;
|
|
520
564
|
}
|
|
521
565
|
|
|
522
|
-
.
|
|
566
|
+
.kne-system-layout_5D-Oq {
|
|
523
567
|
position: absolute;
|
|
524
568
|
right: -10px;
|
|
525
569
|
top: 20px;
|
|
@@ -532,11 +576,11 @@
|
|
|
532
576
|
justify-content: center;
|
|
533
577
|
transition: transform 0.3s;
|
|
534
578
|
}
|
|
535
|
-
.
|
|
579
|
+
.kne-system-layout_5D-Oq:hover {
|
|
536
580
|
transform: scale(1.2);
|
|
537
581
|
}
|
|
538
582
|
|
|
539
|
-
.
|
|
583
|
+
.kne-system-layout_p4eOE {
|
|
540
584
|
position: absolute;
|
|
541
585
|
width: 100%;
|
|
542
586
|
height: 100%;
|
|
@@ -545,19 +589,19 @@
|
|
|
545
589
|
transition: opacity 0.5s;
|
|
546
590
|
}
|
|
547
591
|
|
|
548
|
-
.
|
|
592
|
+
.kne-system-layout_8dzE7 {
|
|
549
593
|
transition: transform 0.3s;
|
|
550
594
|
}
|
|
551
|
-
.
|
|
595
|
+
.kne-system-layout_8dzE7.is-closed {
|
|
552
596
|
transform: scaleX(-1);
|
|
553
597
|
}
|
|
554
598
|
|
|
555
|
-
.
|
|
599
|
+
.kne-system-layout_7wq3X {
|
|
556
600
|
padding: 0 8px 0 16px;
|
|
557
601
|
margin-top: 12px;
|
|
558
602
|
}
|
|
559
603
|
|
|
560
|
-
.
|
|
604
|
+
.kne-system-layout_LOrmu {
|
|
561
605
|
border-radius: 8px;
|
|
562
606
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
563
607
|
background: rgba(255, 255, 255, 0.12);
|
|
@@ -569,16 +613,16 @@
|
|
|
569
613
|
overflow: hidden;
|
|
570
614
|
}
|
|
571
615
|
|
|
572
|
-
.
|
|
616
|
+
.kne-system-layout_b7XeQ {
|
|
573
617
|
font-weight: 500;
|
|
574
618
|
}
|
|
575
619
|
|
|
576
|
-
.
|
|
620
|
+
.kne-system-layout_U0YTk {
|
|
577
621
|
font-size: 12px;
|
|
578
622
|
color: var(--font-color-grey);
|
|
579
623
|
}
|
|
580
624
|
|
|
581
|
-
.
|
|
625
|
+
.kne-system-layout_HnwkM {
|
|
582
626
|
border-radius: 12px;
|
|
583
627
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
584
628
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.72) 100%);
|
|
@@ -587,11 +631,11 @@
|
|
|
587
631
|
min-width: 0;
|
|
588
632
|
}
|
|
589
633
|
|
|
590
|
-
.
|
|
634
|
+
.kne-system-layout_8gqbZ {
|
|
591
635
|
margin-top: 16px;
|
|
592
636
|
}
|
|
593
637
|
|
|
594
|
-
.
|
|
638
|
+
.kne-system-layout_5qnw5 {
|
|
595
639
|
display: flex;
|
|
596
640
|
justify-content: center;
|
|
597
641
|
align-items: center;
|
|
@@ -607,13 +651,13 @@
|
|
|
607
651
|
cursor: pointer;
|
|
608
652
|
transition: all 0.3s;
|
|
609
653
|
}
|
|
610
|
-
.
|
|
654
|
+
.kne-system-layout_5qnw5:hover {
|
|
611
655
|
background: rgba(255, 255, 255, 0.6);
|
|
612
656
|
backdrop-filter: blur(40px) saturate(1.5);
|
|
613
657
|
transform: scale(1.1);
|
|
614
658
|
}
|
|
615
659
|
|
|
616
|
-
.
|
|
660
|
+
.kne-system-layout_UAJc- {
|
|
617
661
|
--container-width: 400px;
|
|
618
662
|
--container-height: 400px;
|
|
619
663
|
--container-base-width: var(--container-width);
|
|
@@ -629,7 +673,7 @@
|
|
|
629
673
|
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05), 0 15px 30px 0 rgba(0, 0, 0, 0.08);
|
|
630
674
|
transition: box-shadow 0.3s;
|
|
631
675
|
}
|
|
632
|
-
@keyframes
|
|
676
|
+
@keyframes kne-system-layout_VjIWn {
|
|
633
677
|
0%, 100% {
|
|
634
678
|
transform: scale(1);
|
|
635
679
|
}
|
|
@@ -637,24 +681,24 @@
|
|
|
637
681
|
transform: scale(1.02, 0.98);
|
|
638
682
|
}
|
|
639
683
|
}
|
|
640
|
-
.
|
|
641
|
-
animation:
|
|
684
|
+
.kne-system-layout_UAJc-:hover {
|
|
685
|
+
animation: kne-system-layout_VjIWn 0.4s ease-out;
|
|
642
686
|
background: rgba(255, 255, 255, 0.6);
|
|
643
687
|
backdrop-filter: blur(10px) saturate(1.5);
|
|
644
688
|
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);
|
|
645
689
|
}
|
|
646
690
|
|
|
647
|
-
.
|
|
691
|
+
.kne-system-layout_I7Anv {
|
|
648
692
|
padding: 24px 0 24px 24px;
|
|
649
693
|
}
|
|
650
694
|
|
|
651
|
-
.
|
|
695
|
+
.kne-system-layout_UhsFd {
|
|
652
696
|
background: rgba(255, 255, 255, 0.4);
|
|
653
697
|
border-radius: 8px;
|
|
654
698
|
height: 100%;
|
|
655
699
|
transition: box-shadow 0.3s;
|
|
656
700
|
}
|
|
657
|
-
@keyframes
|
|
701
|
+
@keyframes kne-system-layout_H7slV {
|
|
658
702
|
0%, 100% {
|
|
659
703
|
transform: scale(1, 1);
|
|
660
704
|
}
|
|
@@ -662,59 +706,59 @@
|
|
|
662
706
|
transform: scale(1.01, 0.99);
|
|
663
707
|
}
|
|
664
708
|
}
|
|
665
|
-
.
|
|
709
|
+
.kne-system-layout_UhsFd:hover {
|
|
666
710
|
backdrop-filter: blur(40px) saturate(1.2);
|
|
667
|
-
animation:
|
|
711
|
+
animation: kne-system-layout_H7slV 0.4s ease-out;
|
|
668
712
|
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);
|
|
669
713
|
}
|
|
670
714
|
|
|
671
|
-
.
|
|
715
|
+
.kne-system-layout_2mdNn {
|
|
672
716
|
--container-height: calc(var(--page-content-height) - 58px);
|
|
673
717
|
height: var(--container-height);
|
|
674
718
|
}
|
|
675
719
|
|
|
676
|
-
.
|
|
720
|
+
.kne-system-layout_OM1Q2 {
|
|
677
721
|
--container-height: calc(var(--page-content-height) - 48px);
|
|
678
722
|
padding: 24px;
|
|
679
723
|
box-sizing: border-box;
|
|
680
724
|
height: var(--page-height);
|
|
681
725
|
}
|
|
682
|
-
.
|
|
726
|
+
.kne-system-layout_OM1Q2.kne-system-layout_6gjkS {
|
|
683
727
|
overflow-y: auto;
|
|
684
728
|
}
|
|
685
729
|
|
|
686
|
-
.
|
|
730
|
+
.kne-system-layout_nyAa2 {
|
|
687
731
|
width: 100%;
|
|
688
732
|
}
|
|
689
733
|
|
|
690
|
-
.
|
|
734
|
+
.kne-system-layout_33Tja {
|
|
691
735
|
height: 58px;
|
|
692
736
|
align-items: center;
|
|
693
737
|
justify-content: space-between;
|
|
694
738
|
padding: 0 16px;
|
|
695
739
|
}
|
|
696
|
-
.
|
|
740
|
+
.kne-system-layout_33Tja .btn {
|
|
697
741
|
font-size: 24px;
|
|
698
742
|
color: var(--font-color-grey);
|
|
699
743
|
cursor: pointer;
|
|
700
744
|
}
|
|
701
745
|
|
|
702
|
-
.
|
|
746
|
+
.kne-system-layout_YmBhl {
|
|
703
747
|
--container-height: calc(var(--container-base-height) - 58px);
|
|
704
748
|
height: var(--container-height);
|
|
705
749
|
}
|
|
706
|
-
.
|
|
750
|
+
.kne-system-layout_Rfzv4 {
|
|
707
751
|
font-size: 12px;
|
|
708
752
|
color: var(--font-color-grey);
|
|
709
753
|
line-height: 24px;
|
|
710
754
|
padding: 12px;
|
|
711
755
|
}
|
|
712
756
|
|
|
713
|
-
.
|
|
757
|
+
.kne-system-layout_qoDtD {
|
|
714
758
|
color: var(--font-color-grey);
|
|
715
759
|
}
|
|
716
760
|
|
|
717
|
-
.
|
|
761
|
+
.kne-system-layout_socoO {
|
|
718
762
|
opacity: 0.6;
|
|
719
763
|
background: var(--font-color-grey-3);
|
|
720
764
|
height: 1px;
|
|
@@ -722,7 +766,7 @@
|
|
|
722
766
|
margin: 8px auto;
|
|
723
767
|
}
|
|
724
768
|
|
|
725
|
-
.
|
|
769
|
+
.kne-system-layout_Xa-2h {
|
|
726
770
|
line-height: 24px;
|
|
727
771
|
padding: 12px;
|
|
728
772
|
margin: 2px 0;
|
|
@@ -733,34 +777,35 @@
|
|
|
733
777
|
overflow: hidden;
|
|
734
778
|
text-overflow: ellipsis;
|
|
735
779
|
}
|
|
736
|
-
.
|
|
780
|
+
.kne-system-layout_Xa-2h:hover {
|
|
737
781
|
backdrop-filter: brightness(1.1);
|
|
738
782
|
transform: scale(1.02);
|
|
739
783
|
}
|
|
740
|
-
.
|
|
784
|
+
.kne-system-layout_Xa-2h.is-active {
|
|
741
785
|
background: linear-gradient(270deg, rgba(255, 255, 255, 0) -4%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0.3) 100%);
|
|
742
786
|
box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.05);
|
|
743
787
|
}
|
|
744
|
-
.
|
|
788
|
+
.kne-system-layout_Xa-2h.is-active .kne-system-layout_qoDtD {
|
|
745
789
|
color: var(--primary-color);
|
|
746
790
|
}
|
|
747
|
-
.
|
|
791
|
+
.kne-system-layout_Xa-2h.is-closed {
|
|
748
792
|
display: flex;
|
|
749
793
|
justify-content: center;
|
|
750
794
|
}
|
|
751
|
-
.
|
|
795
|
+
.kne-system-layout_Xa-2h.is-closed.is-active {
|
|
752
796
|
background: rgba(255, 255, 255, 0.6);
|
|
753
797
|
backdrop-filter: blur(40px) saturate(1.5);
|
|
754
798
|
}
|
|
755
|
-
.
|
|
799
|
+
.kne-system-layout_Xa-2h.is-closed .kne-system-layout_qoDtD {
|
|
756
800
|
font-size: 24px;
|
|
757
801
|
}
|
|
758
|
-
.
|
|
802
|
+
.kne-system-layout_SLK-0 {
|
|
759
803
|
background: rgba(255, 255, 255, 0.72);
|
|
760
804
|
backdrop-filter: blur(10px);
|
|
805
|
+
padding-bottom: var(--safe-area-inset-bottom);
|
|
761
806
|
}
|
|
762
807
|
|
|
763
|
-
.
|
|
808
|
+
.kne-system-layout_GTQvM {
|
|
764
809
|
height: 60px;
|
|
765
810
|
position: fixed;
|
|
766
811
|
z-index: 600;
|
|
@@ -773,98 +818,104 @@
|
|
|
773
818
|
backdrop-filter: blur(10px);
|
|
774
819
|
}
|
|
775
820
|
|
|
776
|
-
.
|
|
821
|
+
.kne-system-layout_fAZ3n {
|
|
777
822
|
cursor: pointer;
|
|
778
823
|
}
|
|
779
|
-
.
|
|
780
|
-
.
|
|
824
|
+
.kne-system-layout_fAZ3n.is-active .kne-system-layout_qOB9o,
|
|
825
|
+
.kne-system-layout_fAZ3n.is-active .kne-system-layout_h48es {
|
|
781
826
|
color: var(--primary-color);
|
|
782
827
|
}
|
|
783
828
|
|
|
784
|
-
.
|
|
829
|
+
.kne-system-layout_fAZ3n .kne-system-layout_qOB9o {
|
|
785
830
|
width: 24px;
|
|
786
831
|
height: 24px;
|
|
787
832
|
font-size: 24px;
|
|
788
833
|
}
|
|
789
834
|
|
|
790
|
-
.
|
|
835
|
+
.kne-system-layout_h48es {
|
|
791
836
|
font-size: 12px;
|
|
792
837
|
}
|
|
793
838
|
@media (max-width: 768px) {
|
|
794
|
-
.
|
|
839
|
+
.kne-system-layout_c1kXt {
|
|
795
840
|
gap: 0 !important;
|
|
796
841
|
}
|
|
797
|
-
.
|
|
842
|
+
.kne-system-layout_c1kXt .kne-system-layout_h-YXH {
|
|
798
843
|
height: 48px;
|
|
799
844
|
padding: 0 16px;
|
|
800
845
|
background: #ffffff;
|
|
846
|
+
margin-bottom: 0;
|
|
801
847
|
}
|
|
802
|
-
.
|
|
848
|
+
.kne-system-layout_c1kXt .kne-system-layout_IOVGr {
|
|
803
849
|
font-size: 16px;
|
|
804
850
|
flex: 1;
|
|
805
851
|
color: var(--primary-color);
|
|
806
852
|
}
|
|
807
|
-
.
|
|
853
|
+
.kne-system-layout_c1kXt .kne-system-layout_mKsLu {
|
|
808
854
|
flex: none;
|
|
809
855
|
}
|
|
810
|
-
.
|
|
856
|
+
.kne-system-layout_c1kXt .kne-system-layout_wHWje {
|
|
811
857
|
box-sizing: border-box;
|
|
812
858
|
--content-height: calc(var(--page-inner-height) - 24px);
|
|
813
859
|
padding: 12px;
|
|
814
860
|
}
|
|
815
|
-
.
|
|
861
|
+
.kne-system-layout_c1kXt .kne-system-layout_wHWje:after {
|
|
816
862
|
content: "";
|
|
817
863
|
display: block;
|
|
818
864
|
height: var(--toolbar-height);
|
|
819
865
|
}
|
|
820
|
-
.
|
|
866
|
+
.kne-system-layout_c1kXt .kne-system-layout_wHWje.kne-system-layout_tBnAD {
|
|
821
867
|
--content-height: var(--page-inner-height);
|
|
822
868
|
padding: 0;
|
|
823
869
|
}
|
|
824
870
|
}
|
|
825
|
-
.
|
|
871
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx {
|
|
826
872
|
gap: 0 !important;
|
|
827
873
|
}
|
|
828
|
-
.
|
|
874
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_h-YXH {
|
|
829
875
|
height: 48px;
|
|
830
876
|
padding: 0 16px;
|
|
831
877
|
background: #ffffff;
|
|
878
|
+
margin-bottom: 0;
|
|
832
879
|
}
|
|
833
|
-
.
|
|
880
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_IOVGr {
|
|
834
881
|
font-size: 16px;
|
|
835
882
|
flex: 1;
|
|
836
883
|
color: var(--primary-color);
|
|
837
884
|
}
|
|
838
|
-
.
|
|
885
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_mKsLu {
|
|
839
886
|
flex: none;
|
|
840
887
|
}
|
|
841
|
-
.
|
|
888
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_wHWje {
|
|
842
889
|
box-sizing: border-box;
|
|
843
890
|
--content-height: calc(var(--page-inner-height) - 24px);
|
|
844
891
|
padding: 12px;
|
|
845
892
|
}
|
|
846
|
-
.
|
|
893
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_wHWje:after {
|
|
847
894
|
content: "";
|
|
848
895
|
display: block;
|
|
849
896
|
height: var(--toolbar-height);
|
|
850
897
|
}
|
|
851
|
-
.
|
|
898
|
+
.kne-system-layout_c1kXt.kne-system-layout_yRZMx .kne-system-layout_wHWje.kne-system-layout_tBnAD {
|
|
852
899
|
--content-height: var(--page-inner-height);
|
|
853
900
|
padding: 0;
|
|
854
901
|
}
|
|
855
902
|
|
|
856
|
-
.
|
|
903
|
+
.kne-system-layout_jhcGo {
|
|
857
904
|
white-space: nowrap;
|
|
858
905
|
overflow: hidden;
|
|
859
906
|
text-overflow: ellipsis;
|
|
860
907
|
}
|
|
861
908
|
|
|
862
|
-
.
|
|
909
|
+
.kne-system-layout_h-YXH {
|
|
910
|
+
margin-bottom: 12px;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.kne-system-layout_IOVGr {
|
|
863
914
|
font-size: 20px;
|
|
864
915
|
font-weight: 500;
|
|
865
916
|
}
|
|
866
917
|
|
|
867
|
-
.
|
|
918
|
+
.kne-system-layout_wHWje {
|
|
868
919
|
--content-height: var(--page-inner-height);
|
|
869
920
|
min-height: calc(var(--page-inner-height) + var(--toolbar-height));
|
|
870
921
|
display: flex;
|
|
@@ -872,21 +923,33 @@
|
|
|
872
923
|
flex: 1;
|
|
873
924
|
}
|
|
874
925
|
|
|
875
|
-
.
|
|
926
|
+
.kne-system-layout_mKsLu {
|
|
876
927
|
display: flex;
|
|
877
928
|
justify-content: flex-end;
|
|
878
929
|
flex: 1;
|
|
879
930
|
max-width: 50%;
|
|
880
931
|
}
|
|
881
932
|
|
|
882
|
-
.
|
|
933
|
+
.kne-system-layout_vcf3J {
|
|
883
934
|
width: 100%;
|
|
884
935
|
background: #fff;
|
|
885
936
|
padding: 12px;
|
|
886
937
|
border-radius: 12px;
|
|
887
938
|
}
|
|
888
939
|
|
|
889
|
-
.
|
|
940
|
+
.kne-system-layout_Y1y7o {
|
|
941
|
+
display: block;
|
|
942
|
+
width: 100%;
|
|
943
|
+
padding-top: var(--safe-area-inset-top);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.kne-system-layout_vXk1s {
|
|
947
|
+
display: block;
|
|
948
|
+
width: 100%;
|
|
949
|
+
padding-bottom: var(--safe-area-inset-bottom);
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.kne-system-layout_07Mna {
|
|
890
953
|
display: block;
|
|
891
954
|
transform: rotate(180deg);
|
|
892
955
|
}
|