@semi-bot/semi-theme-seek 2.0.1 → 2.0.2

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/semi.css CHANGED
@@ -557,6 +557,7 @@ body[theme-mode=dark], body .semi-always-dark, :host([theme-mode=dark]), :host .
557
557
  --semi-color-border: rgba(255,255,255,0.19);
558
558
  --semi-color-danger: rgba(var(--semi-red-5), 1);
559
559
  --semi-color-shadow: rgba(var(--semi-black), 0.04);
560
+ --semi-color-tag-hover: rgba(255,255,255,0.08);
560
561
  --semi-color-white-1: rgba(255,255,255,0.1);
561
562
  --semi-color-white-2: rgba(255,255,255,0.2);
562
563
  --semi-color-white-3: rgba(255,255,255,0.3);
@@ -568,6 +569,7 @@ body[theme-mode=dark], body .semi-always-dark, :host([theme-mode=dark]), :host .
568
569
  --semi-color-white-9: rgba(255,255,255,0.9);
569
570
  --semi-color-black-50: rgba(0,0,0,0.5);
570
571
  --semi-color-black-70: rgba(0,0,0,0.7);
572
+ --semi-color-tag-active: rgba(255,255,255,0.12);
571
573
  --semi-color-Drag-hover: rgba(var(--semi-blue-9),0.5);
572
574
  --semi-color-Tabs-hover: rgba(255,255,255,0.04);
573
575
  --semi-color-border-1: rgba(255,255,255,0.12);
@@ -579,6 +581,7 @@ body[theme-mode=dark], body .semi-always-dark, :host([theme-mode=dark]), :host .
579
581
  --semi-color-mask-bg: rgba(0,0,0,0.5);
580
582
  --semi-color-primary: rgba(var(--semi-brand-5),1);
581
583
  --semi-color-success: rgba(var(--semi-green-5),1);
584
+ --semi-color-tag-default: rgba(255,255,255,0.04);
582
585
  --semi-color-warning: rgba(var(--semi-orange-5), 1);
583
586
  --semi-color-Drag-active: rgba(var(--semi-blue-4),1);
584
587
  --semi-color-Tabs-active: rgba(255,255,255,0.08);
@@ -1767,6 +1770,17 @@ body, :host {
1767
1770
  height: 0;
1768
1771
  pointer-events: none;
1769
1772
  }
1773
+ .semi-aiChatInput-editor-content .tiptap p.has-skill-slot.is-editor-empty:first-child::before {
1774
+ content: none;
1775
+ }
1776
+ .semi-aiChatInput-editor-content .tiptap p.has-skill-slot.is-editor-empty:first-child::after {
1777
+ color: var(--semi-color-text-2);
1778
+ content: attr(data-placeholder);
1779
+ display: inline;
1780
+ height: 0;
1781
+ margin-left: 8px;
1782
+ pointer-events: none;
1783
+ }
1770
1784
  .semi-aiChatInput-editor-content .tiptap p {
1771
1785
  margin: 0px;
1772
1786
  white-space: pre-wrap;
@@ -14882,11 +14896,11 @@ img[src=""], img:not([src]) {
14882
14896
  .semi-input-wrapper-disabled {
14883
14897
  cursor: not-allowed;
14884
14898
  color: var(--semi-color-disabled-text);
14885
- background-color: var(--semi-color-input-bg-disabled);
14899
+ background-color: var(--semi-color-fill-0);
14886
14900
  -webkit-text-fill-color: var(--semi-color-disabled-text);
14887
14901
  }
14888
14902
  .semi-input-wrapper-disabled:hover {
14889
- background-color: var(--semi-color-input-bg-disabled);
14903
+ background-color: var(--semi-color-fill-0);
14890
14904
  }
14891
14905
  .semi-input-wrapper-disabled .semi-input-append,
14892
14906
  .semi-input-wrapper-disabled .semi-input-prepend,
@@ -15319,6 +15333,10 @@ img[src=""], img:not([src]) {
15319
15333
  margin-right: 0;
15320
15334
  }
15321
15335
 
15336
+ .semi-json-viewer {
15337
+ box-sizing: border-box;
15338
+ padding: 12px 0;
15339
+ }
15322
15340
  .semi-json-viewer-background {
15323
15341
  background-color: var(--semi-color-default);
15324
15342
  }
@@ -19304,6 +19322,537 @@ img[src=""], img:not([src]) {
19304
19322
  text-align: right;
19305
19323
  }
19306
19324
 
19325
+ .semi-sidebar-main .semi-sidebar-container-content {
19326
+ overflow: hidden;
19327
+ }
19328
+ .semi-sidebar-main-content-wrapper {
19329
+ display: flex;
19330
+ flex-direction: column;
19331
+ height: 100%;
19332
+ }
19333
+ .semi-sidebar-main-content {
19334
+ padding: 12px;
19335
+ height: 100%;
19336
+ box-sizing: border-box;
19337
+ overflow: auto;
19338
+ }
19339
+ .semi-sidebar-container {
19340
+ height: 100%;
19341
+ border-left: 1px solid var(--semi-color-border);
19342
+ box-sizing: border-box;
19343
+ display: flex;
19344
+ flex-direction: column;
19345
+ overflow: hidden;
19346
+ position: relative;
19347
+ }
19348
+ .semi-sidebar-container-header {
19349
+ display: flex;
19350
+ align-items: center;
19351
+ padding: 12px 12px 12px 20px;
19352
+ border-bottom: 1px solid var(--semi-color-border);
19353
+ }
19354
+ .semi-sidebar-container-header-title {
19355
+ flex: 1;
19356
+ font-size: 16px;
19357
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19358
+ line-height: 22px;
19359
+ font-weight: 600;
19360
+ }
19361
+ .semi-sidebar-container-header-closeBtn {
19362
+ flex-shrink: 0;
19363
+ }
19364
+ .semi-sidebar-container-content {
19365
+ flex: 1 1;
19366
+ overflow: hidden;
19367
+ }
19368
+ .semi-sidebar-container .semi-toast-wrapper {
19369
+ position: absolute;
19370
+ }
19371
+ @keyframes semi-sidebar-slideShow_right {
19372
+ from {
19373
+ transform: translateX(100%);
19374
+ }
19375
+ to {
19376
+ transform: translateX(0);
19377
+ }
19378
+ }
19379
+ @keyframes semi-sidebar-slideHide_right {
19380
+ from {
19381
+ transform: translateX(0);
19382
+ }
19383
+ to {
19384
+ transform: translateX(100%);
19385
+ }
19386
+ }
19387
+ .semi-sidebar-animation-content_show {
19388
+ animation: semi-sidebar-slideShow_right 180ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
19389
+ animation-fill-mode: forwards;
19390
+ }
19391
+ .semi-sidebar-animation-content_hide {
19392
+ animation: semi-sidebar-slideHide_right 180ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
19393
+ animation-fill-mode: forwards;
19394
+ }
19395
+ .semi-sidebar-mcp-configure-content {
19396
+ padding: 20px 16px;
19397
+ display: flex;
19398
+ flex-direction: column;
19399
+ height: 100%;
19400
+ box-sizing: border-box;
19401
+ }
19402
+ .semi-sidebar-mcp-configure-content-header {
19403
+ display: flex;
19404
+ align-items: center;
19405
+ justify-content: space-between;
19406
+ }
19407
+ .semi-sidebar-mcp-configure-content-header-count {
19408
+ font-size: 12px;
19409
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19410
+ line-height: 16px;
19411
+ vertical-align: middle;
19412
+ color: var(--semi-color-text-2);
19413
+ }
19414
+ .semi-sidebar-mcp-configure-content-search {
19415
+ margin: 16px 0;
19416
+ }
19417
+ .semi-sidebar-mcp-configure-content-search-container {
19418
+ display: flex;
19419
+ column-gap: 8px;
19420
+ }
19421
+ .semi-sidebar-mcp-configure-content-item-container {
19422
+ overflow-y: auto;
19423
+ }
19424
+ .semi-sidebar-mcp-configure-content-item {
19425
+ padding: 8px 16px;
19426
+ display: flex;
19427
+ align-items: center;
19428
+ border-bottom: 1px solid var(--semi-color-border);
19429
+ }
19430
+ .semi-sidebar-mcp-configure-content-item-sign {
19431
+ width: 32px;
19432
+ height: 32px;
19433
+ margin-right: 12px;
19434
+ flex-shrink: 0;
19435
+ }
19436
+ .semi-sidebar-mcp-configure-content-item-sign .semi-icon {
19437
+ font-size: 32px;
19438
+ }
19439
+ .semi-sidebar-mcp-configure-content-item-content {
19440
+ justify-content: center;
19441
+ flex: 1;
19442
+ min-width: 0;
19443
+ margin-right: 24px;
19444
+ }
19445
+ .semi-sidebar-mcp-configure-content-item-content-label {
19446
+ font-size: 14px;
19447
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19448
+ line-height: 20px;
19449
+ font-weight: 600;
19450
+ color: var(--semi-color-text-0);
19451
+ }
19452
+ .semi-sidebar-mcp-configure-content-item-content-desc {
19453
+ font-size: 12px;
19454
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19455
+ line-height: 16px;
19456
+ color: var(--semi-color-text-0);
19457
+ overflow: hidden;
19458
+ text-overflow: ellipsis;
19459
+ white-space: nowrap;
19460
+ max-width: 100%;
19461
+ }
19462
+ .semi-sidebar-mcp-configure-content-item-button {
19463
+ flex-shrink: 0;
19464
+ }
19465
+ .semi-sidebar-mcp-configure-content-item-button-configure {
19466
+ margin-right: 12px;
19467
+ }
19468
+ .semi-sidebar-mcp-configure-content-item-button.semi-button.semi-button-with-icon-only {
19469
+ width: 24px;
19470
+ height: 24px;
19471
+ }
19472
+ .semi-sidebar-mcp-configure-content-custom-empty {
19473
+ margin-top: 64px;
19474
+ }
19475
+ .semi-sidebar-annotation .semi-sidebar-container-content {
19476
+ padding: 12px;
19477
+ overflow: auto;
19478
+ }
19479
+ .semi-sidebar-annotation-content {
19480
+ display: flex;
19481
+ flex-direction: row;
19482
+ flex-wrap: wrap;
19483
+ gap: 8px;
19484
+ width: 100%;
19485
+ }
19486
+ .semi-sidebar-annotation-item {
19487
+ cursor: pointer;
19488
+ }
19489
+ .semi-sidebar-annotation-item-title {
19490
+ overflow: hidden;
19491
+ text-overflow: ellipsis;
19492
+ white-space: normal;
19493
+ max-width: 100%;
19494
+ display: -webkit-box;
19495
+ line-clamp: 2;
19496
+ -webkit-line-clamp: 2;
19497
+ -webkit-box-orient: vertical;
19498
+ font-size: 14px;
19499
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19500
+ line-height: 20px;
19501
+ color: var(--semi-color-text-0);
19502
+ font-weight: 600;
19503
+ }
19504
+ .semi-sidebar-annotation-item-footer {
19505
+ display: flex;
19506
+ column-gap: 4px;
19507
+ align-items: center;
19508
+ }
19509
+ .semi-sidebar-annotation-item-footer-logo {
19510
+ font-size: 14px;
19511
+ width: 14px;
19512
+ height: 14px;
19513
+ }
19514
+ .semi-sidebar-annotation-item-footer-text {
19515
+ font-size: 12px;
19516
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19517
+ line-height: 16px;
19518
+ color: var(--semi-color-text-0);
19519
+ overflow: hidden;
19520
+ text-overflow: ellipsis;
19521
+ white-space: nowrap;
19522
+ flex-grow: 1;
19523
+ }
19524
+ .semi-sidebar-annotation-item-footer-order {
19525
+ box-sizing: border-box;
19526
+ min-width: 16px;
19527
+ padding: 0 2px;
19528
+ height: 16px;
19529
+ border-radius: 8px;
19530
+ background-color: var(--semi-color-fill-1);
19531
+ display: flex;
19532
+ align-items: center;
19533
+ justify-content: center;
19534
+ font-size: 12px;
19535
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19536
+ line-height: 16px;
19537
+ color: var(--semi-color-text-2);
19538
+ }
19539
+ .semi-sidebar-annotation-item-text {
19540
+ padding: 3px 12px;
19541
+ width: 100%;
19542
+ row-gap: 8px;
19543
+ display: flex;
19544
+ flex-direction: column;
19545
+ }
19546
+ .semi-sidebar-annotation-item-text-detail {
19547
+ overflow: hidden;
19548
+ text-overflow: ellipsis;
19549
+ white-space: normal;
19550
+ max-width: 100%;
19551
+ display: -webkit-box;
19552
+ line-clamp: 4;
19553
+ -webkit-line-clamp: 4;
19554
+ -webkit-box-orient: vertical;
19555
+ font-size: 12px;
19556
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19557
+ line-height: 16px;
19558
+ color: var(--semi-color-text-2);
19559
+ }
19560
+ .semi-sidebar-annotation-item-video {
19561
+ border-radius: 6px;
19562
+ border: 1px solid var(--semi-color-border);
19563
+ overflow: hidden;
19564
+ width: calc((100% - 8px) / 2);
19565
+ box-sizing: border-box;
19566
+ }
19567
+ .semi-sidebar-annotation-item-video-content {
19568
+ padding: 8px 8px 12px 8px;
19569
+ display: flex;
19570
+ flex-direction: column;
19571
+ row-gap: 8px;
19572
+ }
19573
+ .semi-sidebar-annotation-item-video .semi-sidebar-annotation-item-title {
19574
+ height: 40px;
19575
+ }
19576
+ .semi-sidebar-annotation-item-video-img {
19577
+ width: 100%;
19578
+ height: 100%;
19579
+ object-fit: cover;
19580
+ }
19581
+ .semi-sidebar-annotation-item-video-img-wrapper {
19582
+ position: relative;
19583
+ width: 100%;
19584
+ height: 107px;
19585
+ }
19586
+ .semi-sidebar-annotation-item-video-play {
19587
+ position: absolute;
19588
+ top: 6px;
19589
+ right: 6px;
19590
+ border: 1px solid var(--semi-color-bg-0);
19591
+ background: var(--semi-color-text-2);
19592
+ color: var(--semi-color-bg-0);
19593
+ border-radius: 50%;
19594
+ width: 20px;
19595
+ height: 20px;
19596
+ }
19597
+ .semi-sidebar-annotation-item-video-play.semi-icon {
19598
+ display: inline-flex;
19599
+ align-items: center;
19600
+ justify-content: center;
19601
+ font-size: 12px;
19602
+ }
19603
+ .semi-sidebar-annotation-item-video-duration {
19604
+ padding: 2px 4px;
19605
+ position: absolute;
19606
+ bottom: 6px;
19607
+ right: 6px;
19608
+ background-color: rgba(var(--semi-grey-7), 0.7);
19609
+ border-radius: 4px;
19610
+ font-size: 12px;
19611
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19612
+ line-height: 16px;
19613
+ color: var(--semi-color-bg-0);
19614
+ }
19615
+ .semi-sidebar-annotation-item-video-title {
19616
+ font-size: 14px;
19617
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19618
+ line-height: 20px;
19619
+ color: var(--semi-color-text-0);
19620
+ }
19621
+ .semi-sidebar-code-content {
19622
+ height: 100%;
19623
+ }
19624
+ .semi-sidebar-code-content .semi-codeHighlight-defaultTheme pre[class*=language-], .semi-sidebar-main-content .semi-codeHighlight-defaultTheme pre[class*=language-] {
19625
+ margin: 0px;
19626
+ padding-top: 0px;
19627
+ padding-bottom: 0px;
19628
+ background-color: transparent;
19629
+ overflow-y: hidden;
19630
+ overflow-x: auto;
19631
+ }
19632
+ .semi-sidebar-code-content .semi-codeHighlight .line-numbers .line-numbers-rows, .semi-sidebar-main-content .semi-codeHighlight .line-numbers .line-numbers-rows {
19633
+ border-right: none;
19634
+ }
19635
+ .semi-sidebar-code-content .semi-json-viewer, .semi-sidebar-main-content .semi-json-viewer {
19636
+ padding-top: 0px;
19637
+ padding-bottom: 0px;
19638
+ background-color: transparent;
19639
+ }
19640
+ .semi-sidebar-collapse .semi-collapse-item {
19641
+ border: 1px solid var(--semi-color-border);
19642
+ border-radius: 8px;
19643
+ }
19644
+ .semi-sidebar-collapse .semi-collapse-item:not(:last-child) {
19645
+ margin-bottom: 8px;
19646
+ }
19647
+ .semi-sidebar-collapse .semi-collapse-header {
19648
+ padding: 8px 16px;
19649
+ margin: 0px;
19650
+ font-weight: 400;
19651
+ }
19652
+ .semi-sidebar-collapse-header-content {
19653
+ display: flex;
19654
+ align-items: center;
19655
+ gap: 8px;
19656
+ width: 100%;
19657
+ padding-right: 8px;
19658
+ }
19659
+ .semi-sidebar-collapse-header-content .semi-icon {
19660
+ color: var(--semi-color-text-1);
19661
+ }
19662
+ .semi-sidebar-collapse-header-text {
19663
+ flex: 1;
19664
+ overflow: hidden;
19665
+ text-overflow: ellipsis;
19666
+ white-space: nowrap;
19667
+ }
19668
+ .semi-sidebar-collapse-header-expand-btn {
19669
+ flex-shrink: 0;
19670
+ }
19671
+ .semi-sidebar-collapse-header-expand-btn.semi-button.semi-button-with-icon-only {
19672
+ padding: 4px;
19673
+ width: 24px;
19674
+ height: 24px;
19675
+ }
19676
+ .semi-sidebar-collapse .semi-collapse-item-active .semi-collapsible-wrapper {
19677
+ border-top: 1px solid var(--semi-color-border);
19678
+ }
19679
+ .semi-sidebar-collapse-code .semi-collapse-content {
19680
+ padding: 12px 0px;
19681
+ }
19682
+ .semi-sidebar-options {
19683
+ display: flex;
19684
+ flex-direction: row;
19685
+ flex-wrap: wrap;
19686
+ gap: 8px;
19687
+ padding: 8px 12px;
19688
+ border-bottom: 1px solid var(--semi-color-border);
19689
+ }
19690
+ .semi-sidebar-options-button .semi-button-content-right {
19691
+ margin-left: 4px;
19692
+ }
19693
+ .semi-sidebar-options-normal.semi-button-primary.semi-button-light {
19694
+ color: var(--semi-color-text-2);
19695
+ font-weight: 400;
19696
+ }
19697
+ .semi-sidebar-file .tiptap {
19698
+ font-size: 14px;
19699
+ line-height: 24px;
19700
+ }
19701
+ .semi-sidebar-file .tiptap ::selection {
19702
+ background: rgba(var(--semi-light-blue-1), 1);
19703
+ }
19704
+ .semi-sidebar-file .tiptap ::-moz-selection {
19705
+ background: rgba(var(--semi-light-blue-1), 1);
19706
+ }
19707
+ .semi-sidebar-file .tiptap p.is-editor-empty:first-child::before {
19708
+ color: var(--semi-color-text-2);
19709
+ content: attr(data-placeholder);
19710
+ float: left;
19711
+ height: 0;
19712
+ pointer-events: none;
19713
+ }
19714
+ .semi-sidebar-file .tiptap p {
19715
+ margin: 0px;
19716
+ white-space: pre-wrap;
19717
+ color: var(--semi-color-text-0);
19718
+ }
19719
+ .semi-sidebar-file .tiptap blockquote {
19720
+ border-left: 3px solid var(--semi-color-border);
19721
+ margin: 24px 0;
19722
+ padding-left: 16px;
19723
+ }
19724
+ .semi-sidebar-file .tiptap:focus {
19725
+ outline: none;
19726
+ }
19727
+ .semi-sidebar-file .tiptap pre {
19728
+ background-color: var(--semi-color-fill-0);
19729
+ padding: 2px 4px;
19730
+ border-radius: 4px;
19731
+ overflow: auto;
19732
+ font-size: 14px;
19733
+ line-height: 24px;
19734
+ border: 1px solid var(--semi-color-border);
19735
+ }
19736
+ .semi-sidebar-file .tiptap pre code {
19737
+ background-color: transparent;
19738
+ }
19739
+ .semi-sidebar-file .tiptap code {
19740
+ background-color: var(--semi-color-border);
19741
+ padding: 2px 4px;
19742
+ }
19743
+ .semi-sidebar-file .tiptap hr {
19744
+ border: none;
19745
+ border-top: 1px solid var(--semi-color-border);
19746
+ }
19747
+ .semi-sidebar-file .tiptap span.select {
19748
+ display: inline-block;
19749
+ background-color: rgba(var(--semi-light-blue-1), 1);
19750
+ line-height: 24px;
19751
+ }
19752
+ .semi-sidebar-file .tiptap.ProseMirror img:not([data-type=emoji] img) {
19753
+ outline: 0.125rem solid transparent;
19754
+ margin: 12px 0;
19755
+ }
19756
+ .semi-sidebar-file .tiptap.ProseMirror img:not([data-type=emoji] img).ProseMirror-selectednode {
19757
+ outline-color: var(--semi-color-text-0);
19758
+ }
19759
+ .semi-sidebar-file .tiptap .tiptap-image-slot .uploadFail .semi-upload-drag-area, .semi-sidebar-file .tiptap .tiptap-image-slot .validateFail .semi-upload-drag-area, .semi-sidebar-file .tiptap .tiptap-image-slot .uploading .semi-upload-drag-area, .semi-sidebar-file .tiptap .tiptap-image-slot .success .semi-upload-drag-area {
19760
+ display: none;
19761
+ }
19762
+ .semi-sidebar-file-menu-bar {
19763
+ display: flex;
19764
+ flex-direction: row;
19765
+ align-items: center;
19766
+ justify-content: center;
19767
+ flex-wrap: wrap;
19768
+ gap: 2px;
19769
+ border-top: 1px solid var(--semi-color-border);
19770
+ border-bottom: 1px solid var(--semi-color-border);
19771
+ padding: 2px 12px;
19772
+ }
19773
+ .semi-sidebar-file-menu-bar-dropdown-item-active {
19774
+ color: var(--semi-color-primary);
19775
+ background: var(--semi-color-fill-0);
19776
+ }
19777
+ .semi-sidebar-file-menu-bar .semi-divider-vertical {
19778
+ margin: 0px;
19779
+ }
19780
+ .semi-sidebar-file-menu-bar-btn-active.semi-button-tertiary.semi-button-borderless {
19781
+ background: var(--semi-color-fill-0);
19782
+ }
19783
+ .semi-sidebar-file-menu-bar-btn-codeblock {
19784
+ font-size: 12px;
19785
+ line-height: 16px;
19786
+ padding: 8px;
19787
+ }
19788
+ .semi-sidebar-file-menu-bar-link-dropdown {
19789
+ padding: 8px;
19790
+ display: flex;
19791
+ align-items: center;
19792
+ justify-content: center;
19793
+ }
19794
+ .semi-sidebar-file-menu-bar-link-dropdown-btn-active.semi-button-tertiary.semi-button-borderless {
19795
+ color: var(--semi-color-primary);
19796
+ }
19797
+ .semi-sidebar-detail .semi-sidebar-file {
19798
+ height: 100%;
19799
+ display: flex;
19800
+ flex-direction: column;
19801
+ }
19802
+ .semi-sidebar-detail .semi-sidebar-file-content {
19803
+ height: 100%;
19804
+ }
19805
+ .semi-sidebar-detail .semi-sidebar-file-editor {
19806
+ overflow: auto;
19807
+ flex: 1;
19808
+ padding: 0 12px;
19809
+ }
19810
+ .semi-sidebar-detail .semi-sidebar-code-content {
19811
+ overflow: auto;
19812
+ }
19813
+ .semi-sidebar-main .semi-sidebar-code-content {
19814
+ height: 200px;
19815
+ overflow: auto;
19816
+ }
19817
+ .semi-sidebar-main .semi-sidebar-collapse-file .semi-collapse-content {
19818
+ max-height: 400px;
19819
+ overflow: auto;
19820
+ }
19821
+ .semi-sidebar-main .semi-sidebar-collapse-code .semi-collapse-content {
19822
+ max-height: 200px;
19823
+ overflow: auto;
19824
+ }
19825
+ .semi-sidebar-main .semi-codeHighlight {
19826
+ height: 200px;
19827
+ overflow: auto;
19828
+ }
19829
+ .semi-sidebar-detail-header {
19830
+ display: flex;
19831
+ flex-direction: row;
19832
+ justify-content: space-between;
19833
+ align-items: center;
19834
+ color: var(--semi-color-text-0);
19835
+ padding: 12px;
19836
+ }
19837
+ .semi-sidebar-detail-header-left {
19838
+ display: flex;
19839
+ flex-direction: row;
19840
+ column-gap: 8px;
19841
+ align-items: center;
19842
+ }
19843
+ .semi-sidebar-detail-header-title {
19844
+ font-size: 16px;
19845
+ font-family: Montserrat, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Inter", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
19846
+ line-height: 22px;
19847
+ font-weight: 600;
19848
+ }
19849
+ .semi-sidebar-detail-header-right {
19850
+ display: flex;
19851
+ flex-direction: row;
19852
+ column-gap: 4px;
19853
+ align-items: center;
19854
+ }
19855
+
19307
19856
  .semi-skeleton-avatar, .semi-skeleton-image, .semi-skeleton-title, .semi-skeleton-button {
19308
19857
  background: var(--semi-color-fill-0);
19309
19858
  border-radius: var(--semi-border-radius-small);
@@ -26037,10 +26586,10 @@ p.semi-typography-extended,
26037
26586
  .semi-input-textarea-wrapper-disabled, .semi-input-textarea-wrapper-readonly {
26038
26587
  cursor: not-allowed;
26039
26588
  color: var(--semi-color-disabled-text);
26040
- background-color: var(--semi-color-input-bg-disabled);
26589
+ background-color: var(--semi-color-fill-0);
26041
26590
  }
26042
26591
  .semi-input-textarea-wrapper-disabled:hover, .semi-input-textarea-wrapper-readonly:hover {
26043
- background-color: var(--semi-color-input-bg-disabled);
26592
+ background-color: var(--semi-color-fill-0);
26044
26593
  }
26045
26594
  .semi-input-textarea-wrapper-disabled::placeholder, .semi-input-textarea-wrapper-readonly::placeholder {
26046
26595
  color: var(--semi-color-disabled-text);
@@ -26160,6 +26709,49 @@ p.semi-typography-extended,
26160
26709
  color: var(--semi-color-warning);
26161
26710
  }
26162
26711
 
26712
+ .semi-input-textarea-wrapper-withLineNumber {
26713
+ display: flex;
26714
+ padding: 0;
26715
+ align-items: flex-start;
26716
+ }
26717
+ .semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-lineNumber {
26718
+ flex-shrink: 0;
26719
+ padding: 5px 12px;
26720
+ background-color: var(--semi-color-fill-1);
26721
+ border-right: 1px solid var(--semi-color-border);
26722
+ color: var(--semi-color-text-2);
26723
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26724
+ font-size: inherit;
26725
+ line-height: 1.5;
26726
+ text-align: right;
26727
+ user-select: none;
26728
+ min-width: 36px;
26729
+ border-radius: 6px 0 0 6px;
26730
+ overflow-y: auto;
26731
+ overflow-x: hidden;
26732
+ scrollbar-width: none;
26733
+ -ms-overflow-style: none;
26734
+ }
26735
+ .semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-lineNumber::-webkit-scrollbar {
26736
+ display: none;
26737
+ }
26738
+ .semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-content {
26739
+ display: flex;
26740
+ flex: 1;
26741
+ min-width: 0;
26742
+ }
26743
+ .semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-lineNumber-item {
26744
+ display: flex;
26745
+ align-items: flex-start;
26746
+ justify-content: flex-end;
26747
+ box-sizing: border-box;
26748
+ }
26749
+ .semi-input-textarea-wrapper-withLineNumber .semi-input-textarea {
26750
+ border-radius: 0 6px 6px 0;
26751
+ line-height: 1.5;
26752
+ flex: 1;
26753
+ }
26754
+
26163
26755
  .semi-rtl .semi-input-wrapper,
26164
26756
  .semi-portal-rtl .semi-input-wrapper {
26165
26757
  direction: rtl;