@zero-library/chat-copilot 3.1.11 → 3.1.13

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.css CHANGED
@@ -212,6 +212,261 @@
212
212
  margin: 0 4px;
213
213
  }
214
214
 
215
+ /* src/ui/common/FeatureComponents/style.module.less */
216
+ .style_module_popover {
217
+ max-height: 500px;
218
+ width: 300px;
219
+ display: flex;
220
+ flex-direction: column;
221
+ padding: 0;
222
+ }
223
+ .style_module_popover .ant-popover-content {
224
+ min-height: 0;
225
+ display: flex;
226
+ flex-direction: column;
227
+ }
228
+ .style_module_resourceBtn {
229
+ display: flex;
230
+ align-items: center;
231
+ gap: 6px;
232
+ padding: 4px 8px;
233
+ font-size: 13px;
234
+ font-weight: 500;
235
+ color: #475569;
236
+ background-color: #f1f5f9;
237
+ border: 1px solid #e2e8f0;
238
+ border-radius: 12px;
239
+ transition: all 0.3s;
240
+ cursor: pointer;
241
+ }
242
+ .style_module_resourceBtn .style_module_divider {
243
+ margin: 0;
244
+ background-color: #eee;
245
+ height: 10px;
246
+ transform: translateY(1px);
247
+ }
248
+ .style_module_resourceBtn .style_module_count {
249
+ font-size: 10px;
250
+ font-weight: 500;
251
+ background-color: var(--ant-color-primary);
252
+ width: 14px;
253
+ height: 14px;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ border-radius: 50%;
258
+ color: #fff;
259
+ }
260
+ .style_module_resourceBtnActive {
261
+ background-color: var(--ant-color-primary);
262
+ color: #fff;
263
+ }
264
+ .style_module_customModal .ant-modal-close:focus,
265
+ .customModal .ant-modal-close:focus-visible {
266
+ outline: none !important;
267
+ box-shadow: none !important;
268
+ }
269
+ .style_module_customModal .ant-modal-container {
270
+ padding: 0 !important;
271
+ }
272
+ .style_module_customModal .ant-modal-body {
273
+ padding: 0 !important;
274
+ height: 75vh;
275
+ border-radius: 20px;
276
+ min-height: 600px;
277
+ overflow: hidden;
278
+ }
279
+ .style_module_customModal .ant-modal-footer {
280
+ margin-top: 0 !important;
281
+ }
282
+ .style_module_layout {
283
+ height: 100%;
284
+ width: 100%;
285
+ background: #f5f5f5;
286
+ display: flex;
287
+ }
288
+ .style_module_layout .style_module_sider {
289
+ background-color: #fff !important;
290
+ border-right: 1px solid #f0f0f0;
291
+ height: 100%;
292
+ }
293
+ .style_module_layout .style_module_sider .ant-layout-sider-children {
294
+ display: flex;
295
+ flex-direction: column;
296
+ height: 100%;
297
+ }
298
+ .style_module_layout .style_module_sider .style_module_categoryName {
299
+ margin-left: 8px;
300
+ font-size: 14px;
301
+ color: #333;
302
+ }
303
+ .style_module_layout .style_module_sider .style_module_siderContent {
304
+ flex: 1;
305
+ overflow-y: auto;
306
+ padding: 0 12px;
307
+ }
308
+ .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryItem {
309
+ align-items: center;
310
+ padding: 8px 12px;
311
+ border-radius: 8px;
312
+ cursor: pointer;
313
+ transition: all 0.2s;
314
+ }
315
+ .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryItem:hover {
316
+ background-color: #f5f5f5;
317
+ }
318
+ .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryActive {
319
+ background-color: #e6f4ff;
320
+ }
321
+ .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryActive:hover {
322
+ background-color: #e6f4ff;
323
+ }
324
+ .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryActive .style_module_categoryName {
325
+ color: #1677ff;
326
+ font-weight: 500;
327
+ }
328
+ .style_module_layout .style_module_sider .style_module_siderContent .style_module_roundCheckbox .ant-checkbox-inner {
329
+ border-radius: 50%;
330
+ }
331
+ .style_module_content {
332
+ display: flex;
333
+ flex-direction: column;
334
+ background-color: #fff;
335
+ height: 100%;
336
+ padding: 20px;
337
+ padding-top: 0;
338
+ gap: 16px;
339
+ }
340
+ .style_module_content .style_module_searchInput {
341
+ width: 300px;
342
+ }
343
+ .style_module_content .style_module_selectedCount {
344
+ font-size: 12px;
345
+ }
346
+ .style_module_content .style_module_tagsArea {
347
+ width: 100%;
348
+ max-height: 60px;
349
+ overflow: hidden;
350
+ display: flex;
351
+ }
352
+ .style_module_content .style_module_tagsArea .style_module_tagContainer {
353
+ width: calc(100% - 40px);
354
+ }
355
+ .style_module_content .style_module_tagsArea .style_module_tagContainer .style_module_tag {
356
+ font-size: 13px;
357
+ border-radius: 4px;
358
+ display: flex;
359
+ align-items: center;
360
+ margin: 0;
361
+ }
362
+ .style_module_content .style_module_tagsArea .style_module_expandBtnWrapper {
363
+ display: flex;
364
+ align-items: flex-end;
365
+ padding-bottom: 8px;
366
+ }
367
+ .style_module_content .style_module_tagsArea .style_module_expandBtn {
368
+ background-color: #f5f5f5;
369
+ font-size: 13px;
370
+ border: none;
371
+ }
372
+ .style_module_content .style_module_tagsArea .style_module_expandBtn:hover {
373
+ border: none !important;
374
+ background-color: #f5f5f5 !important;
375
+ }
376
+ .style_module_content .style_module_tagsExpanded {
377
+ max-height: none;
378
+ overflow: visible;
379
+ }
380
+ .style_module_content .style_module_listArea {
381
+ flex: 1;
382
+ overflow-y: auto;
383
+ background-color: #fafafa;
384
+ border-radius: 12px;
385
+ padding: 16px;
386
+ }
387
+ .style_module_content .style_module_listArea .style_module_listInner {
388
+ padding-bottom: 16px;
389
+ }
390
+ .style_module_content .style_module_listArea .style_module_listItem {
391
+ width: 100%;
392
+ background-color: #fff;
393
+ border-radius: 8px;
394
+ padding: 10px;
395
+ display: flex;
396
+ cursor: pointer;
397
+ transition: all 0.2s;
398
+ position: relative;
399
+ }
400
+ .style_module_content .style_module_listArea .style_module_listItem:hover {
401
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
402
+ background-color: #e6f4ff;
403
+ }
404
+ .style_module_content .style_module_listArea .style_module_listItemSelected {
405
+ background-color: #eee;
406
+ }
407
+ .style_module_content .style_module_listArea .style_module_itemIconWrapper {
408
+ width: 40px;
409
+ height: 40px;
410
+ border-radius: 8px;
411
+ background-color: #e6f4ff;
412
+ color: #1677ff;
413
+ display: flex;
414
+ align-items: center;
415
+ justify-content: center;
416
+ font-size: 20px;
417
+ margin-right: 12px;
418
+ flex-shrink: 0;
419
+ }
420
+ .style_module_content .style_module_listArea .style_module_itemInfo {
421
+ flex: 1;
422
+ min-width: 0;
423
+ gap: 2px;
424
+ }
425
+ .style_module_content .style_module_listArea .style_module_itemInfo .style_module_itemDesc {
426
+ font-size: 12px;
427
+ color: #999;
428
+ }
429
+ .style_module_footer {
430
+ border-top: 1px solid #f0f0f0;
431
+ padding: 10px 20px;
432
+ justify-content: flex-end;
433
+ align-items: center;
434
+ display: flex;
435
+ }
436
+ .style_module_titleContainer {
437
+ display: flex;
438
+ padding: 16px 32px 0 20px;
439
+ border-bottom: 1px solid #f0f0f0;
440
+ align-items: center;
441
+ }
442
+ .style_module_favoriteCard {
443
+ border-radius: 10px;
444
+ padding: 8px 10px 8px 16px;
445
+ transition: all 0.2s;
446
+ cursor: pointer;
447
+ }
448
+ .style_module_favoriteCard.style_module_favoriteCardActive {
449
+ background: #f2f2f2;
450
+ }
451
+ .style_module_favoriteCard.style_module_favoriteCardActive .style_module_favoriteCardTitle {
452
+ color: var(--ant-color-primary);
453
+ }
454
+ .style_module_favoriteCard:hover {
455
+ background: #f2f2f2;
456
+ }
457
+ .style_module_favoriteCard:hover .style_module_favoriteCardActions {
458
+ opacity: 1;
459
+ }
460
+ .style_module_favoriteCard .style_module_favoriteCardActions {
461
+ opacity: 0;
462
+ transition: all 0.2s;
463
+ }
464
+ .style_module_favoriteCard .style_module_favoriteCardDate {
465
+ font-size: 12px;
466
+ color: #999;
467
+ margin-top: 4px;
468
+ }
469
+
215
470
  /* src/ui/common/styles.module.less */
216
471
  .styles_module_chatHeader {
217
472
  padding: 8px 16px;
@@ -357,318 +612,90 @@
357
612
  max-width: 1000px;
358
613
  min-width: 320px;
359
614
  margin: 0 auto;
360
- }
361
- .styles_module_logoArea {
362
- display: flex;
363
- align-items: center;
364
- justify-content: center;
365
- text-align: center;
366
- margin-top: 5rem;
367
- flex-direction: column;
368
- }
369
- .styles_module_logoArea .styles_module_logoContainer {
370
- position: relative;
371
- margin-bottom: 2rem;
372
- cursor: pointer;
373
- }
374
- .styles_module_logoArea .styles_module_logoContainer .styles_module_staticHalo {
375
- position: absolute;
376
- inset: 0;
377
- background-color: var(--ant-color-primary);
378
- filter: blur(24px);
379
- opacity: 0.2;
380
- transition: opacity 700ms;
381
- border-radius: 9999px;
382
- }
383
- .styles_module_logoArea .styles_module_logoContainer .styles_module_logoHoverWrapper {
384
- position: relative;
385
- z-index: 10;
386
- padding: 0.5rem;
387
- transition: all 500ms ease-out;
388
- transform: scale(1) translateY(0);
389
- }
390
- .styles_module_logoArea .styles_module_logoContainer .styles_module_logoHoverWrapper .styles_module_logoImage {
391
- font-size: 80px;
392
- filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
393
- transition: all 500ms;
394
- }
395
- .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_staticHalo {
396
- opacity: 0.5;
397
- }
398
- .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_logoHoverWrapper {
399
- transform: scale(1.1) translateY(-0.5rem);
400
- }
401
- .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_logoImage {
402
- filter: drop-shadow(0 10px 20px rgba(18, 124, 183, 0.4));
403
- }
404
- .styles_module_logoArea .styles_module_greetingTitle {
405
- margin-bottom: 0.75rem;
406
- font-size: 2.25rem;
407
- line-height: 2.5rem;
408
- font-weight: 700;
409
- letter-spacing: -0.025em;
410
- color: #1e293b;
411
- }
412
- @media (width >= 768px) {
413
- .styles_module_logoArea .styles_module_greetingTitle {
414
- font-size: 3rem;
415
- line-height: 1;
416
- }
417
- }
418
- .styles_module_logoArea .styles_module_greetingTitle .styles_module_gradientText {
419
- color: transparent;
420
- background-clip: text;
421
- background-image:
422
- linear-gradient(
423
- to right,
424
- var(--ant-color-primary),
425
- #3b82f6);
426
- }
427
- .styles_module_logoArea .styles_module_greetingSubtitle {
428
- font-size: 1.125rem;
429
- line-height: 1.75rem;
430
- font-weight: 500;
431
- color: #64748b;
432
- }
433
- @media (width >= 768px) {
434
- .styles_module_logoArea .styles_module_greetingSubtitle {
435
- font-size: 1.25rem;
436
- line-height: 1.75rem;
437
- }
438
- }
439
- .styles_module_senderReferenceHeaderTitle > .ant-sender-header-title {
440
- overflow: hidden;
441
- }
442
- .styles_module_senderReferenceHeaderContent {
443
- padding: 0 !important;
444
- }
445
-
446
- /* src/ui/common/FeatureComponents/style.module.less */
447
- .style_module_popover {
448
- max-height: 500px;
449
- width: 300px;
450
- display: flex;
451
- flex-direction: column;
452
- padding: 0;
453
- }
454
- .style_module_popover .ant-popover-content {
455
- min-height: 0;
456
- display: flex;
457
- flex-direction: column;
458
- }
459
- .style_module_resourceBtn {
460
- display: flex;
461
- align-items: center;
462
- gap: 6px;
463
- padding: 4px 8px;
464
- font-size: 13px;
465
- font-weight: 500;
466
- color: #475569;
467
- background-color: #f1f5f9;
468
- border: 1px solid #e2e8f0;
469
- border-radius: 12px;
470
- transition: all 0.3s;
471
- cursor: pointer;
472
- }
473
- .style_module_resourceBtn .style_module_divider {
474
- margin: 0;
475
- background-color: #eee;
476
- height: 10px;
477
- transform: translateY(1px);
478
- }
479
- .style_module_resourceBtn .style_module_count {
480
- font-size: 10px;
481
- font-weight: 500;
482
- background-color: var(--ant-color-primary);
483
- width: 14px;
484
- height: 14px;
485
- display: flex;
486
- align-items: center;
487
- justify-content: center;
488
- border-radius: 50%;
489
- color: #fff;
490
- }
491
- .style_module_resourceBtnActive {
492
- background-color: var(--ant-color-primary);
493
- color: #fff;
494
- }
495
- .style_module_customModal .ant-modal-close:focus,
496
- .customModal .ant-modal-close:focus-visible {
497
- outline: none !important;
498
- box-shadow: none !important;
499
- }
500
- .style_module_customModal .ant-modal-container {
501
- padding: 0 !important;
502
- }
503
- .style_module_customModal .ant-modal-body {
504
- padding: 0 !important;
505
- height: 75vh;
506
- border-radius: 20px;
507
- min-height: 600px;
508
- overflow: hidden;
509
- }
510
- .style_module_customModal .ant-modal-footer {
511
- margin-top: 0 !important;
512
- }
513
- .style_module_layout {
514
- height: 100%;
515
- width: 100%;
516
- background: #f5f5f5;
517
- display: flex;
518
- }
519
- .style_module_layout .style_module_sider {
520
- background-color: #fff !important;
521
- border-right: 1px solid #f0f0f0;
522
- height: 100%;
523
- }
524
- .style_module_layout .style_module_sider .ant-layout-sider-children {
525
- display: flex;
526
- flex-direction: column;
527
- height: 100%;
528
- }
529
- .style_module_layout .style_module_sider .style_module_categoryName {
530
- margin-left: 8px;
531
- font-size: 14px;
532
- color: #333;
533
- }
534
- .style_module_layout .style_module_sider .style_module_siderContent {
535
- flex: 1;
536
- overflow-y: auto;
537
- padding: 0 12px;
538
- }
539
- .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryItem {
540
- align-items: center;
541
- padding: 8px 12px;
542
- border-radius: 8px;
543
- cursor: pointer;
544
- transition: all 0.2s;
545
- }
546
- .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryItem:hover {
547
- background-color: #f5f5f5;
548
- }
549
- .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryActive {
550
- background-color: #e6f4ff;
551
- }
552
- .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryActive:hover {
553
- background-color: #e6f4ff;
554
- }
555
- .style_module_layout .style_module_sider .style_module_siderContent .style_module_categoryActive .style_module_categoryName {
556
- color: #1677ff;
557
- font-weight: 500;
558
- }
559
- .style_module_layout .style_module_sider .style_module_siderContent .style_module_roundCheckbox .ant-checkbox-inner {
560
- border-radius: 50%;
561
- }
562
- .style_module_content {
563
- display: flex;
564
- flex-direction: column;
565
- background-color: #fff;
566
- height: 100%;
567
- padding: 20px;
568
- padding-top: 0;
569
- gap: 16px;
570
- }
571
- .style_module_content .style_module_searchInput {
572
- width: 300px;
573
- }
574
- .style_module_content .style_module_selectedCount {
575
- font-size: 12px;
576
- }
577
- .style_module_content .style_module_tagsArea {
578
- width: 100%;
579
- max-height: 60px;
580
- overflow: hidden;
581
- display: flex;
582
- }
583
- .style_module_content .style_module_tagsArea .style_module_tagContainer {
584
- width: calc(100% - 40px);
585
- }
586
- .style_module_content .style_module_tagsArea .style_module_tagContainer .style_module_tag {
587
- font-size: 13px;
588
- border-radius: 4px;
615
+ }
616
+ .styles_module_logoArea {
589
617
  display: flex;
590
618
  align-items: center;
591
- margin: 0;
619
+ justify-content: center;
620
+ text-align: center;
621
+ margin-top: 5rem;
622
+ flex-direction: column;
592
623
  }
593
- .style_module_content .style_module_tagsArea .style_module_expandBtnWrapper {
594
- display: flex;
595
- align-items: flex-end;
596
- padding-bottom: 8px;
624
+ .styles_module_logoArea .styles_module_logoContainer {
625
+ position: relative;
626
+ margin-bottom: 2rem;
627
+ cursor: pointer;
597
628
  }
598
- .style_module_content .style_module_tagsArea .style_module_expandBtn {
599
- background-color: #f5f5f5;
600
- font-size: 13px;
601
- border: none;
629
+ .styles_module_logoArea .styles_module_logoContainer .styles_module_staticHalo {
630
+ position: absolute;
631
+ inset: 0;
632
+ background-color: var(--ant-color-primary);
633
+ filter: blur(24px);
634
+ opacity: 0.2;
635
+ transition: opacity 700ms;
636
+ border-radius: 9999px;
602
637
  }
603
- .style_module_content .style_module_tagsArea .style_module_expandBtn:hover {
604
- border: none !important;
605
- background-color: #f5f5f5 !important;
638
+ .styles_module_logoArea .styles_module_logoContainer .styles_module_logoHoverWrapper {
639
+ position: relative;
640
+ z-index: 10;
641
+ padding: 0.5rem;
642
+ transition: all 500ms ease-out;
643
+ transform: scale(1) translateY(0);
606
644
  }
607
- .style_module_content .style_module_tagsExpanded {
608
- max-height: none;
609
- overflow: visible;
645
+ .styles_module_logoArea .styles_module_logoContainer .styles_module_logoHoverWrapper .styles_module_logoImage {
646
+ font-size: 80px;
647
+ filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
648
+ transition: all 500ms;
610
649
  }
611
- .style_module_content .style_module_listArea {
612
- flex: 1;
613
- overflow-y: auto;
614
- background-color: #fafafa;
615
- border-radius: 12px;
616
- padding: 16px;
650
+ .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_staticHalo {
651
+ opacity: 0.5;
617
652
  }
618
- .style_module_content .style_module_listArea .style_module_listInner {
619
- padding-bottom: 16px;
653
+ .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_logoHoverWrapper {
654
+ transform: scale(1.1) translateY(-0.5rem);
620
655
  }
621
- .style_module_content .style_module_listArea .style_module_listItem {
622
- width: 100%;
623
- background-color: #fff;
624
- border-radius: 8px;
625
- padding: 10px;
626
- display: flex;
627
- cursor: pointer;
628
- transition: all 0.2s;
629
- position: relative;
656
+ .styles_module_logoArea .styles_module_logoContainer:hover .styles_module_logoImage {
657
+ filter: drop-shadow(0 10px 20px rgba(18, 124, 183, 0.4));
630
658
  }
631
- .style_module_content .style_module_listArea .style_module_listItem:hover {
632
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
633
- background-color: #e6f4ff;
659
+ .styles_module_logoArea .styles_module_greetingTitle {
660
+ margin-bottom: 0.75rem;
661
+ font-size: 2.25rem;
662
+ line-height: 2.5rem;
663
+ font-weight: 700;
664
+ letter-spacing: -0.025em;
665
+ color: #1e293b;
634
666
  }
635
- .style_module_content .style_module_listArea .style_module_listItemSelected {
636
- background-color: #eee;
667
+ @media (width >= 768px) {
668
+ .styles_module_logoArea .styles_module_greetingTitle {
669
+ font-size: 3rem;
670
+ line-height: 1;
671
+ }
637
672
  }
638
- .style_module_content .style_module_listArea .style_module_itemIconWrapper {
639
- width: 40px;
640
- height: 40px;
641
- border-radius: 8px;
642
- background-color: #e6f4ff;
643
- color: #1677ff;
644
- display: flex;
645
- align-items: center;
646
- justify-content: center;
647
- font-size: 20px;
648
- margin-right: 12px;
649
- flex-shrink: 0;
673
+ .styles_module_logoArea .styles_module_greetingTitle .styles_module_gradientText {
674
+ color: transparent;
675
+ background-clip: text;
676
+ background-image:
677
+ linear-gradient(
678
+ to right,
679
+ var(--ant-color-primary),
680
+ #3b82f6);
650
681
  }
651
- .style_module_content .style_module_listArea .style_module_itemInfo {
652
- flex: 1;
653
- min-width: 0;
654
- gap: 2px;
682
+ .styles_module_logoArea .styles_module_greetingSubtitle {
683
+ font-size: 1.125rem;
684
+ line-height: 1.75rem;
685
+ font-weight: 500;
686
+ color: #64748b;
655
687
  }
656
- .style_module_content .style_module_listArea .style_module_itemInfo .style_module_itemDesc {
657
- font-size: 12px;
658
- color: #999;
688
+ @media (width >= 768px) {
689
+ .styles_module_logoArea .styles_module_greetingSubtitle {
690
+ font-size: 1.25rem;
691
+ line-height: 1.75rem;
692
+ }
659
693
  }
660
- .style_module_footer {
661
- border-top: 1px solid #f0f0f0;
662
- padding: 10px 20px;
663
- justify-content: flex-end;
664
- align-items: center;
665
- display: flex;
694
+ .styles_module_senderReferenceHeaderTitle > .ant-sender-header-title {
695
+ overflow: hidden;
666
696
  }
667
- .style_module_titleContainer {
668
- display: flex;
669
- padding: 16px 32px 0 20px;
670
- border-bottom: 1px solid #f0f0f0;
671
- align-items: center;
697
+ .styles_module_senderReferenceHeaderContent {
698
+ padding: 0 !important;
672
699
  }
673
700
 
674
701
  /* src/components/CustomComponents/XMarkdown/styles.module.less */
@@ -796,9 +823,35 @@
796
823
  }
797
824
 
798
825
  /* src/components/CustomComponents/ToolRenders/index.module.less */
826
+ .index_module_toolCollapse {
827
+ background: transparent;
828
+ border: none;
829
+ }
830
+ .index_module_toolCollapse.ant-collapse {
831
+ background: transparent;
832
+ border: none;
833
+ }
834
+ .index_module_toolCollapse .ant-collapse-item {
835
+ background: rgba(255, 255, 255, 0.42);
836
+ border: 1px solid rgba(0, 0, 0, 0.05);
837
+ border-radius: 10px !important;
838
+ overflow: hidden;
839
+ box-shadow: none;
840
+ }
841
+ .index_module_toolCollapse .ant-collapse-header {
842
+ background: transparent;
843
+ min-height: 30px;
844
+ }
845
+ .index_module_toolCollapse .ant-collapse-content {
846
+ background: transparent;
847
+ border-top: 1px solid rgba(0, 0, 0, 0.04);
848
+ }
849
+ .index_module_toolCollapse .ant-collapse-content-box {
850
+ padding: 0 !important;
851
+ }
799
852
  .index_module_iconContainer {
800
- width: 20px;
801
- height: 20px;
853
+ width: 18px;
854
+ height: 18px;
802
855
  display: flex;
803
856
  align-items: center;
804
857
  justify-content: center;
@@ -806,13 +859,14 @@
806
859
  overflow: hidden;
807
860
  flex-shrink: 0;
808
861
  gap: 20;
862
+ opacity: 0.85;
809
863
  }
810
864
  .index_module_toolName {
811
- font-size: 12px;
812
- color: var(--ant-color-text-secondary);
865
+ font-size: 11px;
866
+ color: var(--ant-color-text-tertiary);
813
867
  flex: 1;
814
868
  min-width: 0;
815
- line-height: 22px;
869
+ line-height: 18px;
816
870
  overflow: hidden;
817
871
  text-overflow: ellipsis;
818
872
  white-space: nowrap;
@@ -845,18 +899,19 @@
845
899
  }
846
900
  }
847
901
  .index_module_duration {
848
- font-size: 12px;
902
+ font-size: 11px;
849
903
  color: var(--ant-color-text-tertiary);
850
904
  flex-shrink: 0;
851
905
  }
852
906
  .index_module_statusIcon {
853
- font-size: 12px;
907
+ font-size: 11px;
854
908
  display: flex;
855
909
  align-items: center;
856
910
  flex-shrink: 0;
911
+ opacity: 0.75;
857
912
  }
858
913
  .index_module_expandIcon {
859
- font-size: 10px;
914
+ font-size: 9px;
860
915
  color: var(--ant-color-text-tertiary);
861
916
  flex-shrink: 0;
862
917
  cursor: pointer;
@@ -867,20 +922,20 @@
867
922
  transform: rotate(-90deg);
868
923
  }
869
924
  .index_module_sectionLabel {
870
- font-size: 11px;
925
+ font-size: 10px;
871
926
  color: var(--ant-color-text-tertiary);
872
- margin-bottom: 4px;
927
+ margin-bottom: 3px;
873
928
  display: flex;
874
929
  align-items: center;
875
- gap: 6px;
930
+ gap: 5px;
876
931
  }
877
932
  .index_module_sectionLabel::before {
878
933
  content: "";
879
- width: 3px;
880
- height: 10px;
934
+ width: 2px;
935
+ height: 8px;
881
936
  border-radius: 2px;
882
- background: var(--ant-color-primary);
883
- opacity: 0.5;
937
+ background: var(--ant-color-border);
938
+ opacity: 0.9;
884
939
  flex-shrink: 0;
885
940
  }
886
941
  .index_module_plainTextContainer {
@@ -912,24 +967,148 @@
912
967
  .index_module_markdownContainer {
913
968
  max-width: 100%;
914
969
  overflow-x: auto;
915
- font-size: 12px;
970
+ font-size: 11px;
971
+ opacity: 0.72;
972
+ }
973
+ .index_module_summaryText {
974
+ font-size: 11px;
975
+ line-height: 1.5;
976
+ color: var(--ant-color-text-tertiary);
977
+ margin-bottom: 4px;
978
+ white-space: pre-wrap;
979
+ word-break: break-word;
980
+ }
981
+ .index_module_metaGrid {
982
+ display: flex;
983
+ flex-wrap: wrap;
984
+ gap: 6px;
985
+ margin-bottom: 4px;
986
+ }
987
+ .index_module_metaItem {
988
+ display: inline-flex;
989
+ align-items: center;
990
+ gap: 4px;
991
+ padding: 1px 6px;
992
+ border-radius: 999px;
993
+ background: rgba(0, 0, 0, 0.03);
994
+ }
995
+ .index_module_metaLabel {
996
+ font-size: 10px;
997
+ color: var(--ant-color-text-tertiary);
998
+ }
999
+ .index_module_metaValue {
1000
+ font-size: 10px;
1001
+ color: var(--ant-color-text-secondary);
1002
+ }
1003
+ .index_module_linkList {
1004
+ display: flex;
1005
+ flex-direction: column;
1006
+ gap: 0;
1007
+ }
1008
+ .index_module_linkItem {
1009
+ display: flex;
1010
+ align-items: flex-start;
1011
+ gap: 6px;
1012
+ padding: 4px 0;
1013
+ border: none;
1014
+ border-radius: 0;
1015
+ text-decoration: none;
1016
+ background: transparent;
1017
+ transition: color 0.15s ease, opacity 0.15s ease;
1018
+ }
1019
+ .index_module_linkItem:hover {
916
1020
  opacity: 0.85;
917
1021
  }
1022
+ .index_module_linkItem:hover .index_module_linkTitle {
1023
+ color: var(--ant-color-text);
1024
+ }
1025
+ .index_module_linkItem + .index_module_linkItem {
1026
+ border-top: 1px solid rgba(0, 0, 0, 0.04);
1027
+ padding-top: 6px;
1028
+ }
1029
+ .index_module_linkIndex {
1030
+ width: 16px;
1031
+ flex-shrink: 0;
1032
+ font-size: 10px;
1033
+ line-height: 1.55;
1034
+ color: var(--ant-color-text-quaternary);
1035
+ text-align: right;
1036
+ }
1037
+ .index_module_linkTitle {
1038
+ display: block;
1039
+ flex: 1;
1040
+ font-size: 11px;
1041
+ line-height: 1.55;
1042
+ color: var(--ant-color-text-secondary);
1043
+ }
1044
+ .index_module_linkSummary {
1045
+ display: block;
1046
+ margin-top: 4px;
1047
+ font-size: 11px;
1048
+ line-height: 1.5;
1049
+ color: var(--ant-color-text-secondary);
1050
+ }
1051
+ .index_module_linkUrl {
1052
+ display: block;
1053
+ margin-top: 2px;
1054
+ font-size: 10px;
1055
+ color: var(--ant-color-text-tertiary);
1056
+ white-space: nowrap;
1057
+ overflow: hidden;
1058
+ text-overflow: ellipsis;
1059
+ }
1060
+ .index_module_statusBlock {
1061
+ padding: 4px 6px;
1062
+ border-radius: var(--ant-border-radius);
1063
+ font-size: 11px;
1064
+ line-height: 1.5;
1065
+ margin-bottom: 4px;
1066
+ opacity: 0.8;
1067
+ }
1068
+ .index_module_status_info {
1069
+ background: rgba(22, 119, 255, 0.08);
1070
+ color: var(--ant-color-primary);
1071
+ }
1072
+ .index_module_status_success {
1073
+ background: rgba(82, 196, 26, 0.1);
1074
+ color: #389e0d;
1075
+ }
1076
+ .index_module_status_warning {
1077
+ background: rgba(250, 173, 20, 0.12);
1078
+ color: #d48806;
1079
+ }
1080
+ .index_module_status_error {
1081
+ background: rgba(255, 77, 79, 0.1);
1082
+ color: var(--ant-color-error);
1083
+ }
1084
+ .index_module_errorDisplay {
1085
+ border-left: 1px solid rgba(255, 77, 79, 0.45);
1086
+ padding-left: 6px;
1087
+ }
918
1088
  .index_module_sectionBlock {
919
1089
  display: block;
920
1090
  }
921
1091
  .index_module_sectionBlock + .index_module_sectionBlock {
922
- margin-top: 8px;
923
- padding-top: 8px;
924
- border-top: 1px solid var(--ant-color-border-secondary);
1092
+ margin-top: 4px;
1093
+ padding-top: 4px;
1094
+ border-top: 1px solid rgba(0, 0, 0, 0.04);
1095
+ }
1096
+ .index_module_compactSectionBlock .index_module_sectionLabel {
1097
+ margin-bottom: 2px;
1098
+ }
1099
+ .index_module_compactSectionBlock .index_module_markdownContainer {
1100
+ font-size: 11px;
925
1101
  }
926
1102
  .index_module_contentScrollContainer {
927
- max-height: calc(10 * 22px + 16px);
1103
+ max-height: 168px;
928
1104
  overflow-y: auto;
929
1105
  overflow-x: hidden;
1106
+ padding: 4px 2px 0;
1107
+ background: transparent;
1108
+ border-radius: 0;
930
1109
  }
931
1110
  .index_module_contentScrollContainer::-webkit-scrollbar {
932
- width: 6px;
1111
+ width: 4px;
933
1112
  }
934
1113
  .index_module_contentScrollContainer::-webkit-scrollbar-thumb {
935
1114
  background: var(--ant-color-border);
@@ -939,7 +1118,7 @@
939
1118
  background: transparent;
940
1119
  }
941
1120
  .index_module_subAgentContainer {
942
- padding: 4px 0;
1121
+ padding: 2px 0;
943
1122
  }
944
1123
  .index_module_subAgentHeader {
945
1124
  padding: 4px 0 8px;
@@ -962,14 +1141,14 @@
962
1141
  border-radius: 3px;
963
1142
  }
964
1143
  .index_module_todoList {
965
- background-color: var(--ant-color-fill-alter);
966
- border-radius: var(--ant-border-radius);
967
- border: 1px solid var(--ant-color-border-secondary);
968
- margin-top: 4px;
1144
+ background-color: rgba(255, 255, 255, 0.45);
1145
+ border-radius: 8px;
1146
+ border: 1px solid rgba(0, 0, 0, 0.04);
1147
+ margin-top: 2px;
969
1148
  }
970
1149
  .index_module_todoItem {
971
- padding: 8px 12px;
972
- border-bottom: 1px solid var(--ant-color-border-secondary);
1150
+ padding: 6px 10px;
1151
+ border-bottom: 1px solid rgba(0, 0, 0, 0.04);
973
1152
  display: flex;
974
1153
  align-items: flex-start;
975
1154
  gap: 8px;
@@ -985,8 +1164,8 @@
985
1164
  min-width: 0;
986
1165
  }
987
1166
  .index_module_todoText {
988
- font-size: 13px;
989
- color: var(--ant-color-text);
1167
+ font-size: 12px;
1168
+ color: var(--ant-color-text-secondary);
990
1169
  }
991
1170
  .index_module_todoText.index_module_completed {
992
1171
  color: var(--ant-color-text-tertiary);