react-public-components 1.1.19 → 1.2.1

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
@@ -1,3 +1,17 @@
1
+ /* src/index.less */
2
+ @keyframes rpc-spin {
3
+ 0% {
4
+ transform: rotate(0deg);
5
+ }
6
+ 100% {
7
+ transform: rotate(360deg);
8
+ }
9
+ }
10
+ .rpc_loading_icon {
11
+ display: inline-block;
12
+ animation: rpc-spin 0.85s infinite linear;
13
+ }
14
+
1
15
  /* CollapseBox/index.less */
2
16
  .collapsible-wrapper {
3
17
  position: relative;
@@ -193,4 +207,4435 @@
193
207
  offset-distance: 100%;
194
208
  }
195
209
  }
210
+
211
+ /* ColorPicker/index.less */
212
+ .react-public-color-picker-trigger {
213
+ display: inline-flex;
214
+ align-items: center;
215
+ gap: 8px;
216
+ padding: 4px;
217
+ border: 1px solid #d9d9d9;
218
+ border-radius: 6px;
219
+ background: #ffffff;
220
+ cursor: pointer;
221
+ user-select: none;
222
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
223
+ box-sizing: border-box;
224
+ }
225
+ .react-public-color-picker-trigger:hover:not(.react-public-color-picker-disabled) {
226
+ border-color: #4096ff;
227
+ }
228
+ .react-public-color-picker-trigger.react-public-color-picker-size-small {
229
+ height: 24px;
230
+ padding: 2px 6px;
231
+ font-size: 12px;
232
+ }
233
+ .react-public-color-picker-trigger.react-public-color-picker-size-middle {
234
+ height: 32px;
235
+ padding: 4px 8px;
236
+ font-size: 14px;
237
+ }
238
+ .react-public-color-picker-trigger.react-public-color-picker-size-large {
239
+ height: 40px;
240
+ padding: 6px 12px;
241
+ font-size: 16px;
242
+ }
243
+ .react-public-color-picker-trigger.react-public-color-picker-disabled {
244
+ background: #f5f5f5;
245
+ border-color: #d9d9d9;
246
+ cursor: not-allowed;
247
+ opacity: 0.65;
248
+ }
249
+ .react-public-color-picker-color-block {
250
+ position: relative;
251
+ width: 18px;
252
+ height: 18px;
253
+ border-radius: 4px;
254
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
255
+ overflow: hidden;
256
+ background-image:
257
+ conic-gradient(
258
+ #eee 0 25%,
259
+ #fff 0 50%,
260
+ #eee 0 75%,
261
+ #fff 0 100%);
262
+ background-size: 8px 8px;
263
+ }
264
+ .react-public-color-picker-color-inner {
265
+ width: 100%;
266
+ height: 100%;
267
+ border-radius: inherit;
268
+ }
269
+ .react-public-color-picker-clear-icon {
270
+ color: #bfbfbf;
271
+ font-size: 12px;
272
+ transition: color 0.2s;
273
+ display: inline-flex;
274
+ align-items: center;
275
+ }
276
+ .react-public-color-picker-clear-icon:hover {
277
+ color: #595959;
278
+ }
279
+ .react-public-color-picker-popover {
280
+ position: absolute;
281
+ z-index: 1050;
282
+ padding: 12px;
283
+ background: #ffffff;
284
+ border-radius: 8px;
285
+ box-shadow:
286
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
287
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
288
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05);
289
+ width: max-content;
290
+ min-width: 250px;
291
+ max-width: 90vw;
292
+ box-sizing: border-box;
293
+ user-select: none;
294
+ animation: react-public-color-picker-fade-in 0.2s ease;
295
+ }
296
+ @keyframes react-public-color-picker-fade-in {
297
+ from {
298
+ opacity: 0;
299
+ transform: scale(0.95);
300
+ }
301
+ to {
302
+ opacity: 1;
303
+ transform: scale(1);
304
+ }
305
+ }
306
+ .react-public-color-picker-panel-header {
307
+ display: flex;
308
+ align-items: center;
309
+ justify-content: space-between;
310
+ margin-bottom: 12px;
311
+ width: 100%;
312
+ }
313
+ .react-public-color-picker-panel-clear-btn {
314
+ width: 24px;
315
+ height: 24px;
316
+ border: 1px solid #d9d9d9;
317
+ border-radius: 4px;
318
+ background: #ffffff;
319
+ display: flex;
320
+ align-items: center;
321
+ justify-content: center;
322
+ cursor: pointer;
323
+ transition: all 0.2s ease;
324
+ margin-left: auto;
325
+ }
326
+ .react-public-color-picker-panel-clear-btn:hover {
327
+ border-color: #ff4d4f;
328
+ background: #fff1f0;
329
+ }
330
+ .react-public-color-picker-mode-segmented {
331
+ display: flex;
332
+ background: #f5f5f5;
333
+ padding: 2px;
334
+ border-radius: 6px;
335
+ flex: 1;
336
+ margin-right: 8px;
337
+ }
338
+ .react-public-color-picker-mode-option {
339
+ flex: 1;
340
+ text-align: center;
341
+ padding: 4px 0;
342
+ font-size: 12px;
343
+ border-radius: 4px;
344
+ cursor: pointer;
345
+ color: #595959;
346
+ transition: all 0.2s;
347
+ }
348
+ .react-public-color-picker-mode-option.active {
349
+ background: #ffffff;
350
+ color: #1677ff;
351
+ font-weight: 500;
352
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
353
+ }
354
+ .react-public-color-picker-gradient-slider {
355
+ position: relative;
356
+ height: 14px;
357
+ border-radius: 7px;
358
+ margin-bottom: 12px;
359
+ cursor: pointer;
360
+ background-image:
361
+ conic-gradient(
362
+ #eee 0 25%,
363
+ #fff 0 50%,
364
+ #eee 0 75%,
365
+ #fff 0 100%);
366
+ background-size: 8px 8px;
367
+ }
368
+ .react-public-color-picker-gradient-bg {
369
+ position: absolute;
370
+ inset: 0;
371
+ border-radius: inherit;
372
+ }
373
+ .react-public-color-picker-gradient-stop-handle {
374
+ position: absolute;
375
+ top: 50%;
376
+ width: 14px;
377
+ height: 14px;
378
+ border: 2px solid #ffffff;
379
+ border-radius: 50%;
380
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
381
+ transform: translate(-50%, -50%);
382
+ cursor: grab;
383
+ box-sizing: border-box;
384
+ transition: border-color 0.15s;
385
+ }
386
+ .react-public-color-picker-gradient-stop-handle.active {
387
+ border-color: #1677ff;
388
+ box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.3), 0 0 4px rgba(0, 0, 0, 0.4);
389
+ }
390
+ .react-public-color-picker-arrow {
391
+ position: absolute;
392
+ width: 8px;
393
+ height: 8px;
394
+ background: #ffffff;
395
+ transform: rotate(45deg);
396
+ box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
397
+ }
398
+ .react-public-color-picker-popover-bottomLeft .react-public-color-picker-arrow {
399
+ top: -4px;
400
+ left: 16px;
401
+ }
402
+ .react-public-color-picker-popover-bottomRight .react-public-color-picker-arrow {
403
+ top: -4px;
404
+ right: 16px;
405
+ }
406
+ .react-public-color-picker-popover-topLeft .react-public-color-picker-arrow {
407
+ bottom: -4px;
408
+ left: 16px;
409
+ }
410
+ .react-public-color-picker-popover-topRight .react-public-color-picker-arrow {
411
+ bottom: -4px;
412
+ right: 16px;
413
+ }
414
+ .react-public-color-picker-panel-body {
415
+ width: 240px;
416
+ box-sizing: border-box;
417
+ }
418
+ .react-public-color-picker-palette {
419
+ position: relative;
420
+ width: 100%;
421
+ height: 150px;
422
+ border-radius: 6px;
423
+ cursor: crosshair;
424
+ overflow: hidden;
425
+ margin-bottom: 12px;
426
+ }
427
+ .react-public-color-picker-saturation-bg {
428
+ position: absolute;
429
+ inset: 0;
430
+ background:
431
+ linear-gradient(
432
+ to right,
433
+ #fff,
434
+ transparent);
435
+ }
436
+ .react-public-color-picker-brightness-bg {
437
+ position: absolute;
438
+ inset: 0;
439
+ background:
440
+ linear-gradient(
441
+ to top,
442
+ #000,
443
+ transparent);
444
+ }
445
+ .react-public-color-picker-handler {
446
+ position: absolute;
447
+ width: 14px;
448
+ height: 14px;
449
+ border: 2px solid #ffffff;
450
+ border-radius: 50%;
451
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
452
+ transform: translate(-50%, -50%);
453
+ pointer-events: none;
454
+ box-sizing: border-box;
455
+ }
456
+ .react-public-color-picker-slider-container {
457
+ display: flex;
458
+ align-items: center;
459
+ gap: 12px;
460
+ margin-bottom: 12px;
461
+ }
462
+ .react-public-color-picker-slider-group {
463
+ flex: 1;
464
+ display: flex;
465
+ flex-direction: column;
466
+ gap: 10px;
467
+ }
468
+ .react-public-color-picker-side-block {
469
+ position: relative;
470
+ width: 26px;
471
+ height: 26px;
472
+ border-radius: 6px;
473
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
474
+ overflow: hidden;
475
+ flex-shrink: 0;
476
+ background-image:
477
+ conic-gradient(
478
+ #eee 0 25%,
479
+ #fff 0 50%,
480
+ #eee 0 75%,
481
+ #fff 0 100%);
482
+ background-size: 8px 8px;
483
+ }
484
+ .react-public-color-picker-slider {
485
+ position: relative;
486
+ height: 10px;
487
+ border-radius: 5px;
488
+ cursor: pointer;
489
+ }
490
+ .react-public-color-picker-hue-slider {
491
+ background:
492
+ linear-gradient(
493
+ to right,
494
+ #ff0000 0%,
495
+ #ffff00 17%,
496
+ #00ff00 33%,
497
+ #00ffff 50%,
498
+ #0000ff 67%,
499
+ #ff00ff 83%,
500
+ #ff0000 100%);
501
+ }
502
+ .react-public-color-picker-alpha-slider {
503
+ background-image:
504
+ conic-gradient(
505
+ #eee 0 25%,
506
+ #fff 0 50%,
507
+ #eee 0 75%,
508
+ #fff 0 100%);
509
+ background-size: 8px 8px;
510
+ }
511
+ .react-public-color-picker-alpha-bg {
512
+ position: absolute;
513
+ inset: 0;
514
+ border-radius: inherit;
515
+ }
516
+ .react-public-color-picker-slider-handler {
517
+ position: absolute;
518
+ top: 50%;
519
+ width: 14px;
520
+ height: 14px;
521
+ border: 2px solid #ffffff;
522
+ border-radius: 50%;
523
+ background: transparent;
524
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
525
+ transform: translate(-50%, -50%);
526
+ pointer-events: none;
527
+ box-sizing: border-box;
528
+ }
529
+ .react-public-color-picker-inputs {
530
+ display: flex;
531
+ align-items: center;
532
+ gap: 6px;
533
+ width: 100%;
534
+ box-sizing: border-box;
535
+ }
536
+ .react-public-color-picker-format-select {
537
+ width: 58px;
538
+ height: 28px;
539
+ padding: 0 2px;
540
+ border: 1px solid #d9d9d9;
541
+ border-radius: 4px;
542
+ background: #fff;
543
+ font-size: 12px;
544
+ cursor: pointer;
545
+ outline: none;
546
+ flex-shrink: 0;
547
+ }
548
+ .react-public-color-picker-format-select:focus {
549
+ border-color: #4096ff;
550
+ }
551
+ .react-public-color-picker-input-field {
552
+ flex: 1;
553
+ min-width: 0;
554
+ height: 28px;
555
+ padding: 0 6px;
556
+ border: 1px solid #d9d9d9;
557
+ border-radius: 4px;
558
+ font-size: 12px;
559
+ outline: none;
560
+ box-sizing: border-box;
561
+ }
562
+ .react-public-color-picker-input-field:focus {
563
+ border-color: #4096ff;
564
+ }
565
+ .react-public-color-picker-alpha-input {
566
+ width: 44px;
567
+ height: 28px;
568
+ padding: 0 2px;
569
+ border: 1px solid #d9d9d9;
570
+ border-radius: 4px;
571
+ font-size: 12px;
572
+ text-align: center;
573
+ outline: none;
574
+ box-sizing: border-box;
575
+ flex-shrink: 0;
576
+ }
577
+ .react-public-color-picker-alpha-input:focus {
578
+ border-color: #4096ff;
579
+ }
580
+ .react-public-color-picker-presets {
581
+ padding-top: 4px;
582
+ }
583
+ .react-public-color-picker-presets-standalone {
584
+ border-top: 1px solid #f0f0f0;
585
+ padding-top: 10px;
586
+ margin-top: 4px;
587
+ }
588
+ .react-public-color-picker-preset-title {
589
+ font-size: 12px;
590
+ color: #595959;
591
+ margin-bottom: 6px;
592
+ display: flex;
593
+ align-items: center;
594
+ gap: 4px;
595
+ cursor: pointer;
596
+ user-select: none;
597
+ }
598
+ .react-public-color-picker-preset-title:hover {
599
+ color: #1677ff;
600
+ }
601
+ .react-public-color-picker-preset-colors {
602
+ display: flex;
603
+ flex-wrap: wrap;
604
+ gap: 6px;
605
+ max-width: 220px;
606
+ margin-bottom: 6px;
607
+ }
608
+ .react-public-color-picker-preset-item {
609
+ position: relative;
610
+ width: 18px;
611
+ height: 18px;
612
+ border-radius: 4px;
613
+ cursor: pointer;
614
+ overflow: hidden;
615
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
616
+ transition: transform 0.1s ease;
617
+ background-image:
618
+ conic-gradient(
619
+ #eee 0 25%,
620
+ #fff 0 50%,
621
+ #eee 0 75%,
622
+ #fff 0 100%);
623
+ background-size: 8px 8px;
624
+ }
625
+ .react-public-color-picker-preset-item:hover {
626
+ transform: scale(1.15);
627
+ }
628
+ .react-public-color-picker-preset-item-inner {
629
+ width: 100%;
630
+ height: 100%;
631
+ }
632
+
633
+ /* CopyButton/index.less */
634
+ .rpc_copy_button {
635
+ display: inline-flex;
636
+ align-items: center;
637
+ justify-content: center;
638
+ gap: 6px;
639
+ box-sizing: border-box;
640
+ font-size: 14px;
641
+ line-height: 1.5714;
642
+ font-family: inherit;
643
+ cursor: pointer;
644
+ user-select: none;
645
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
646
+ position: relative;
647
+ white-space: nowrap;
648
+ }
649
+ .rpc_copy_button_button {
650
+ height: 32px;
651
+ padding: 4px 15px;
652
+ border-radius: 6px;
653
+ border: 1px solid #d9d9d9;
654
+ background: #ffffff;
655
+ color: #262626;
656
+ }
657
+ .rpc_copy_button_button:hover:not(.rpc_copy_button_button_disabled) {
658
+ color: #4096ff;
659
+ border-color: #4096ff;
660
+ }
661
+ .rpc_copy_button_button:active:not(.rpc_copy_button_button_disabled) {
662
+ color: #0958d9;
663
+ border-color: #0958d9;
664
+ }
665
+ .rpc_copy_button_button.rpc_copy_button_primary {
666
+ background: #1677ff;
667
+ border-color: #1677ff;
668
+ color: #ffffff;
669
+ }
670
+ .rpc_copy_button_button.rpc_copy_button_primary:hover:not(.rpc_copy_button_disabled) {
671
+ background: #4096ff;
672
+ border-color: #4096ff;
673
+ color: #ffffff;
674
+ }
675
+ .rpc_copy_button_button.rpc_copy_button_copied {
676
+ color: #52c41a;
677
+ border-color: #b7eb8f;
678
+ background: #f6ffed;
679
+ }
680
+ .rpc_copy_button_button.rpc_copy_button_copied.rpc_copy_button_primary {
681
+ background: #52c41a;
682
+ border-color: #52c41a;
683
+ color: #ffffff;
684
+ }
685
+ .rpc_copy_button_icon {
686
+ padding: 4px;
687
+ border: none;
688
+ background: transparent;
689
+ color: #8c8c8c;
690
+ border-radius: 4px;
691
+ }
692
+ .rpc_copy_button_icon:hover:not(.rpc_copy_button_icon_disabled) {
693
+ color: #1677ff;
694
+ background: rgba(0, 0, 0, 0.04);
695
+ }
696
+ .rpc_copy_button_icon.rpc_copy_button_copied {
697
+ color: #52c41a;
698
+ }
699
+ .rpc_copy_button_inline {
700
+ padding: 0 4px;
701
+ border: none;
702
+ background: transparent;
703
+ color: #1677ff;
704
+ }
705
+ .rpc_copy_button_inline:hover:not(.rpc_copy_button_inline_disabled) {
706
+ color: #4096ff;
707
+ text-decoration: underline;
708
+ }
709
+ .rpc_copy_button_inline.rpc_copy_button_copied {
710
+ color: #52c41a;
711
+ }
712
+ .rpc_copy_button_disabled {
713
+ cursor: not-allowed;
714
+ opacity: 0.5;
715
+ pointer-events: none;
716
+ }
717
+ .rpc_copy_button_icon_wrap {
718
+ display: inline-flex;
719
+ align-items: center;
720
+ transition: transform 0.2s ease;
721
+ }
722
+ .rpc_copy_button_tooltip {
723
+ position: absolute;
724
+ bottom: calc(100% + 6px);
725
+ left: 50%;
726
+ transform: translateX(-50%) translateY(4px);
727
+ background: rgba(0, 0, 0, 0.85);
728
+ color: #ffffff;
729
+ padding: 4px 8px;
730
+ border-radius: 4px;
731
+ font-size: 12px;
732
+ line-height: 1.4;
733
+ white-space: nowrap;
734
+ pointer-events: none;
735
+ opacity: 0;
736
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
737
+ z-index: 1000;
738
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
739
+ }
740
+ .rpc_copy_button_tooltip::after {
741
+ content: "";
742
+ position: absolute;
743
+ top: 100%;
744
+ left: 50%;
745
+ transform: translateX(-50%);
746
+ border: 4px solid transparent;
747
+ border-top-color: rgba(0, 0, 0, 0.85);
748
+ }
749
+ .rpc_copy_button:hover .rpc_copy_button_tooltip_hover,
750
+ .rpc_copy_button_tooltip_visible {
751
+ opacity: 1;
752
+ transform: translateX(-50%) translateY(0);
753
+ }
754
+
755
+ /* TextEllipsis/index.less */
756
+ .rpc_text_ellipsis {
757
+ position: relative;
758
+ box-sizing: border-box;
759
+ line-height: 1.5714;
760
+ color: inherit;
761
+ display: inline-flex;
762
+ max-width: 100%;
763
+ vertical-align: bottom;
764
+ }
765
+ .rpc_text_ellipsis_content_wrap {
766
+ display: inline-block;
767
+ max-width: 100%;
768
+ vertical-align: bottom;
769
+ }
770
+ .rpc_text_ellipsis_single_line {
771
+ overflow: hidden;
772
+ text-overflow: ellipsis;
773
+ white-space: nowrap;
774
+ display: block;
775
+ }
776
+ .rpc_text_ellipsis_multi_line {
777
+ display: -webkit-box;
778
+ -webkit-box-orient: vertical;
779
+ overflow: hidden;
780
+ text-overflow: ellipsis;
781
+ word-break: break-all;
782
+ }
783
+ .rpc_text_ellipsis_expanded {
784
+ display: block;
785
+ overflow: visible;
786
+ -webkit-line-clamp: unset !important;
787
+ white-space: normal;
788
+ }
789
+ .rpc_text_ellipsis_action_btn {
790
+ display: inline-flex;
791
+ align-items: center;
792
+ margin-left: 6px;
793
+ color: #1677ff;
794
+ cursor: pointer;
795
+ font-size: 13px;
796
+ user-select: none;
797
+ transition: color 0.2s ease;
798
+ white-space: nowrap;
799
+ }
800
+ .rpc_text_ellipsis_action_btn:hover {
801
+ color: #4096ff;
802
+ text-decoration: underline;
803
+ }
804
+ .rpc_text_ellipsis_prefix {
805
+ margin-right: 4px;
806
+ display: inline-flex;
807
+ align-items: center;
808
+ flex-shrink: 0;
809
+ }
810
+ .rpc_text_ellipsis_suffix {
811
+ margin-left: 4px;
812
+ display: inline-flex;
813
+ align-items: center;
814
+ flex-shrink: 0;
815
+ }
816
+ .rpc_text_ellipsis_tooltip {
817
+ position: absolute;
818
+ bottom: calc(100% + 8px);
819
+ left: 50%;
820
+ transform: translateX(-50%) translateY(4px);
821
+ background: rgba(0, 0, 0, 0.85);
822
+ color: #ffffff;
823
+ padding: 6px 10px;
824
+ border-radius: 6px;
825
+ font-size: 12px;
826
+ line-height: 1.5;
827
+ max-width: 320px;
828
+ word-break: break-all;
829
+ white-space: normal;
830
+ pointer-events: none;
831
+ opacity: 0;
832
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
833
+ z-index: 1000;
834
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
835
+ }
836
+ .rpc_text_ellipsis_tooltip::after {
837
+ content: "";
838
+ position: absolute;
839
+ top: 100%;
840
+ left: 50%;
841
+ transform: translateX(-50%);
842
+ border: 4px solid transparent;
843
+ border-top-color: rgba(0, 0, 0, 0.85);
844
+ }
845
+ .rpc_text_ellipsis:hover .rpc_text_ellipsis_tooltip_visible {
846
+ opacity: 1;
847
+ transform: translateX(-50%) translateY(0);
848
+ }
849
+
850
+ /* DebounceSelect/index.less */
851
+ .rpc_debounce_select {
852
+ position: relative;
853
+ box-sizing: border-box;
854
+ display: inline-block;
855
+ width: 100%;
856
+ min-width: 160px;
857
+ font-size: 14px;
858
+ font-family: inherit;
859
+ color: #262626;
860
+ }
861
+ .rpc_debounce_select_selector {
862
+ display: flex;
863
+ align-items: center;
864
+ flex-wrap: wrap;
865
+ gap: 4px;
866
+ min-height: 34px;
867
+ padding: 3px 11px;
868
+ background: #ffffff;
869
+ border: 1px solid #d9d9d9;
870
+ border-radius: 6px;
871
+ cursor: text;
872
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
873
+ box-sizing: border-box;
874
+ }
875
+ .rpc_debounce_select_selector:hover:not(.rpc_debounce_select_selector_disabled) {
876
+ border-color: #4096ff;
877
+ }
878
+ .rpc_debounce_select_selector_focused {
879
+ border-color: #1677ff;
880
+ box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.15);
881
+ }
882
+ .rpc_debounce_select_selector_disabled {
883
+ background: #f5f5f5;
884
+ border-color: #d9d9d9;
885
+ cursor: not-allowed;
886
+ color: rgba(0, 0, 0, 0.25);
887
+ }
888
+ .rpc_debounce_select_input {
889
+ flex: 1;
890
+ min-width: 60px;
891
+ border: none;
892
+ outline: none;
893
+ background: transparent;
894
+ font-size: 14px;
895
+ color: inherit;
896
+ padding: 0;
897
+ margin: 0;
898
+ }
899
+ .rpc_debounce_select_input::placeholder {
900
+ color: #bfbfbf;
901
+ }
902
+ .rpc_debounce_select_input:disabled {
903
+ cursor: not-allowed;
904
+ }
905
+ .rpc_debounce_select_tag {
906
+ display: inline-flex;
907
+ align-items: center;
908
+ gap: 4px;
909
+ padding: 1px 8px;
910
+ background: #f5f5f5;
911
+ border: 1px solid #e8e8e8;
912
+ border-radius: 4px;
913
+ font-size: 12px;
914
+ color: #262626;
915
+ user-select: none;
916
+ }
917
+ .rpc_debounce_select_tag_close {
918
+ font-size: 10px;
919
+ color: #8c8c8c;
920
+ cursor: pointer;
921
+ display: inline-flex;
922
+ align-items: center;
923
+ }
924
+ .rpc_debounce_select_tag_close:hover {
925
+ color: #ff4d4f;
926
+ }
927
+ .rpc_debounce_select_actions {
928
+ display: inline-flex;
929
+ align-items: center;
930
+ gap: 6px;
931
+ margin-left: auto;
932
+ color: #8c8c8c;
933
+ font-size: 12px;
934
+ flex-shrink: 0;
935
+ }
936
+ .rpc_debounce_select_clear_btn {
937
+ cursor: pointer;
938
+ display: inline-flex;
939
+ align-items: center;
940
+ transition: color 0.2s;
941
+ }
942
+ .rpc_debounce_select_clear_btn:hover {
943
+ color: #595959;
944
+ }
945
+ .rpc_debounce_select_dropdown {
946
+ position: absolute;
947
+ top: calc(100% + 4px);
948
+ left: 0;
949
+ right: 0;
950
+ background: #ffffff;
951
+ border-radius: 8px;
952
+ box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
953
+ border: 1px solid #f0f0f0;
954
+ max-height: 256px;
955
+ overflow-y: auto;
956
+ z-index: 1050;
957
+ padding: 4px;
958
+ box-sizing: border-box;
959
+ animation: rpcSelectFadeIn 0.15s ease-out;
960
+ }
961
+ .rpc_debounce_select_item {
962
+ padding: 7px 12px;
963
+ border-radius: 4px;
964
+ cursor: pointer;
965
+ font-size: 14px;
966
+ line-height: 1.5;
967
+ color: #262626;
968
+ display: flex;
969
+ align-items: center;
970
+ justify-content: space-between;
971
+ transition: background 0.15s ease;
972
+ }
973
+ .rpc_debounce_select_item:hover {
974
+ background: #f5f5f5;
975
+ }
976
+ .rpc_debounce_select_item_selected {
977
+ font-weight: 600;
978
+ color: #1677ff;
979
+ background: #e6f4ff;
980
+ }
981
+ .rpc_debounce_select_item_selected:hover {
982
+ background: #bae0ff;
983
+ }
984
+ .rpc_debounce_select_item_disabled {
985
+ cursor: not-allowed;
986
+ color: #bfbfbf;
987
+ background: transparent !important;
988
+ }
989
+ .rpc_debounce_select_empty {
990
+ padding: 18px 0;
991
+ text-align: center;
992
+ color: #8c8c8c;
993
+ font-size: 13px;
994
+ }
995
+ @keyframes rpcSelectFadeIn {
996
+ from {
997
+ opacity: 0;
998
+ transform: translateY(-4px);
999
+ }
1000
+ to {
1001
+ opacity: 1;
1002
+ transform: translateY(0);
1003
+ }
1004
+ }
1005
+
1006
+ /* CountUp/index.less */
1007
+ .rpc_count_up {
1008
+ display: inline-flex;
1009
+ align-items: baseline;
1010
+ font-variant-numeric: tabular-nums;
1011
+ font-family: inherit;
1012
+ color: inherit;
1013
+ line-height: 1;
1014
+ }
1015
+ .rpc_count_up_prefix {
1016
+ margin-right: 2px;
1017
+ font-size: 0.85em;
1018
+ opacity: 0.85;
1019
+ }
1020
+ .rpc_count_up_suffix {
1021
+ margin-left: 2px;
1022
+ font-size: 0.85em;
1023
+ opacity: 0.85;
1024
+ }
1025
+ .rpc_count_up_value {
1026
+ font-weight: inherit;
1027
+ }
1028
+
1029
+ /* ContextMenu/index.less */
1030
+ .rpc_context_menu {
1031
+ display: inline-block;
1032
+ width: 100%;
1033
+ }
1034
+ .rpc_context_menu_panel {
1035
+ position: fixed;
1036
+ min-width: 160px;
1037
+ background: #ffffff;
1038
+ border-radius: 8px;
1039
+ box-shadow:
1040
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
1041
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
1042
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05);
1043
+ border: 1px solid #f0f0f0;
1044
+ padding: 4px;
1045
+ z-index: 2000;
1046
+ box-sizing: border-box;
1047
+ animation: rpcMenuFadeIn 0.12s ease-out;
1048
+ user-select: none;
1049
+ font-family: inherit;
1050
+ }
1051
+ .rpc_context_menu_item {
1052
+ display: flex;
1053
+ align-items: center;
1054
+ padding: 7px 12px;
1055
+ font-size: 13px;
1056
+ line-height: 1.5;
1057
+ color: #262626;
1058
+ border-radius: 4px;
1059
+ cursor: pointer;
1060
+ position: relative;
1061
+ transition: background 0.15s ease, color 0.15s ease;
1062
+ }
1063
+ .rpc_context_menu_item:hover:not(.rpc_context_menu_item_disabled) {
1064
+ background: #f5f5f5;
1065
+ color: #1677ff;
1066
+ }
1067
+ .rpc_context_menu_item_icon {
1068
+ margin-right: 8px;
1069
+ display: inline-flex;
1070
+ align-items: center;
1071
+ font-size: 14px;
1072
+ }
1073
+ .rpc_context_menu_item_label {
1074
+ flex: 1;
1075
+ }
1076
+ .rpc_context_menu_item_shortcut {
1077
+ margin-left: 16px;
1078
+ color: #8c8c8c;
1079
+ font-size: 11px;
1080
+ font-family: monospace;
1081
+ }
1082
+ .rpc_context_menu_item_arrow {
1083
+ margin-left: 8px;
1084
+ font-size: 10px;
1085
+ color: #8c8c8c;
1086
+ }
1087
+ .rpc_context_menu_item_danger {
1088
+ color: #ff4d4f;
1089
+ }
1090
+ .rpc_context_menu_item_danger:hover:not(.rpc_context_menu_item_disabled) {
1091
+ background: #fff1f0;
1092
+ color: #ff4d4f;
1093
+ }
1094
+ .rpc_context_menu_item_disabled {
1095
+ cursor: not-allowed;
1096
+ color: #bfbfbf !important;
1097
+ background: transparent !important;
1098
+ }
1099
+ .rpc_context_menu_divider {
1100
+ height: 1px;
1101
+ margin: 4px 0;
1102
+ background: #f0f0f0;
1103
+ }
1104
+ .rpc_context_menu_submenu {
1105
+ position: absolute;
1106
+ top: 0;
1107
+ left: 100%;
1108
+ min-width: 150px;
1109
+ background: #ffffff;
1110
+ border-radius: 8px;
1111
+ box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
1112
+ border: 1px solid #f0f0f0;
1113
+ padding: 4px;
1114
+ display: none;
1115
+ z-index: 2001;
1116
+ }
1117
+ .rpc_context_menu_submenu_left {
1118
+ left: auto;
1119
+ right: 100%;
1120
+ }
1121
+ .rpc_context_menu_item:hover > .rpc_context_menu_submenu {
1122
+ display: block;
1123
+ animation: rpcMenuFadeIn 0.12s ease-out;
1124
+ }
1125
+ @keyframes rpcMenuFadeIn {
1126
+ from {
1127
+ opacity: 0;
1128
+ transform: scale(0.95);
1129
+ }
1130
+ to {
1131
+ opacity: 1;
1132
+ transform: scale(1);
1133
+ }
1134
+ }
1135
+
1136
+ /* Fullscreen/index.less */
1137
+ .rpc_fullscreen_container {
1138
+ position: relative;
1139
+ box-sizing: border-box;
1140
+ }
1141
+ .rpc_fullscreen_container:fullscreen {
1142
+ background-color: #ffffff !important;
1143
+ width: 100vw !important;
1144
+ height: 100vh !important;
1145
+ overflow: auto !important;
1146
+ box-sizing: border-box !important;
1147
+ }
1148
+ .rpc_fullscreen_container:fullscreen::backdrop {
1149
+ background-color: #ffffff !important;
1150
+ }
1151
+ .rpc_fullscreen_container:-webkit-full-screen {
1152
+ background-color: #ffffff !important;
1153
+ width: 100vw !important;
1154
+ height: 100vh !important;
1155
+ overflow: auto !important;
1156
+ box-sizing: border-box !important;
1157
+ }
1158
+ .rpc_fullscreen_container_fullscreen {
1159
+ background-color: #ffffff !important;
1160
+ }
1161
+ .rpc_fullscreen_container_web_fullscreen {
1162
+ position: fixed !important;
1163
+ top: 0 !important;
1164
+ left: 0 !important;
1165
+ right: 0 !important;
1166
+ bottom: 0 !important;
1167
+ width: 100vw !important;
1168
+ height: 100vh !important;
1169
+ z-index: 9999 !important;
1170
+ background-color: #ffffff !important;
1171
+ overflow: auto !important;
1172
+ border-radius: 0 !important;
1173
+ margin: 0 !important;
1174
+ }
1175
+ .rpc_fullscreen_container_action_btn {
1176
+ position: absolute;
1177
+ display: inline-flex;
1178
+ align-items: center;
1179
+ justify-content: center;
1180
+ width: 32px;
1181
+ height: 32px;
1182
+ padding: 0;
1183
+ border-radius: 6px;
1184
+ background: rgba(255, 255, 255, 0.85);
1185
+ backdrop-filter: blur(8px);
1186
+ border: 1px solid rgba(0, 0, 0, 0.08);
1187
+ color: #595959;
1188
+ cursor: pointer;
1189
+ font-size: 15px;
1190
+ z-index: 10;
1191
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
1192
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
1193
+ }
1194
+ .rpc_fullscreen_container_action_btn:hover {
1195
+ color: #1677ff;
1196
+ background: #ffffff;
1197
+ border-color: #1677ff;
1198
+ box-shadow: 0 4px 12px rgba(22, 119, 255, 0.15);
1199
+ }
1200
+ .rpc_fullscreen_container_action_btn_top_right {
1201
+ top: 12px;
1202
+ right: 12px;
1203
+ }
1204
+ .rpc_fullscreen_container_action_btn_top_left {
1205
+ top: 12px;
1206
+ left: 12px;
1207
+ }
1208
+ .rpc_fullscreen_container_action_btn_bottom_right {
1209
+ bottom: 12px;
1210
+ right: 12px;
1211
+ }
1212
+ .rpc_fullscreen_container_action_btn_bottom_left {
1213
+ bottom: 12px;
1214
+ left: 12px;
1215
+ }
1216
+ .rpc_fullscreen_btn {
1217
+ display: inline-flex;
1218
+ align-items: center;
1219
+ justify-content: center;
1220
+ gap: 6px;
1221
+ height: 32px;
1222
+ padding: 4px 15px;
1223
+ border-radius: 6px;
1224
+ border: 1px solid #d9d9d9;
1225
+ background: #ffffff;
1226
+ color: #262626;
1227
+ cursor: pointer;
1228
+ font-size: 14px;
1229
+ line-height: 1.5714;
1230
+ user-select: none;
1231
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
1232
+ }
1233
+ .rpc_fullscreen_btn:hover {
1234
+ color: #4096ff;
1235
+ border-color: #4096ff;
1236
+ }
1237
+ .rpc_fullscreen_btn_active {
1238
+ color: #1677ff;
1239
+ border-color: #1677ff;
1240
+ background: #e6f4ff;
1241
+ }
1242
+ .rpc_fullscreen_btn_icon_only {
1243
+ padding: 4px;
1244
+ width: 32px;
1245
+ height: 32px;
1246
+ }
1247
+
1248
+ /* ImageCropper/index.less */
1249
+ .rpc_image_cropper {
1250
+ position: relative;
1251
+ box-sizing: border-box;
1252
+ user-select: none;
1253
+ background: #141414;
1254
+ overflow: hidden;
1255
+ border-radius: 8px;
1256
+ display: flex;
1257
+ flex-direction: column;
1258
+ align-items: center;
1259
+ justify-content: center;
1260
+ }
1261
+ .rpc_image_cropper_canvas_wrap {
1262
+ position: relative;
1263
+ width: 100%;
1264
+ height: 360px;
1265
+ display: flex;
1266
+ align-items: center;
1267
+ justify-content: center;
1268
+ cursor: grab;
1269
+ overflow: hidden;
1270
+ }
1271
+ .rpc_image_cropper_canvas_wrap:active {
1272
+ cursor: grabbing;
1273
+ }
1274
+ .rpc_image_cropper_canvas {
1275
+ display: block;
1276
+ max-width: 100%;
1277
+ max-height: 100%;
1278
+ }
1279
+ .rpc_image_cropper_mask {
1280
+ position: absolute;
1281
+ top: 0;
1282
+ left: 0;
1283
+ right: 0;
1284
+ bottom: 0;
1285
+ pointer-events: none;
1286
+ box-sizing: border-box;
1287
+ }
1288
+ .rpc_image_cropper_crop_box {
1289
+ position: absolute;
1290
+ box-sizing: border-box;
1291
+ border: 2px solid #1677ff;
1292
+ box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
1293
+ pointer-events: none;
1294
+ }
1295
+ .rpc_image_cropper_crop_box_round {
1296
+ border-radius: 50%;
1297
+ }
1298
+ .rpc_image_cropper_crop_box_grid {
1299
+ position: absolute;
1300
+ top: 0;
1301
+ left: 0;
1302
+ right: 0;
1303
+ bottom: 0;
1304
+ }
1305
+ .rpc_image_cropper_crop_box_grid::before,
1306
+ .rpc_image_cropper_crop_box_grid::after {
1307
+ content: "";
1308
+ position: absolute;
1309
+ background: rgba(255, 255, 255, 0.35);
1310
+ }
1311
+ .rpc_image_cropper_crop_box_grid::before {
1312
+ top: 33.33%;
1313
+ left: 0;
1314
+ right: 0;
1315
+ height: 33.33%;
1316
+ border-top: 1px dashed rgba(255, 255, 255, 0.5);
1317
+ border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
1318
+ }
1319
+ .rpc_image_cropper_crop_box_grid::after {
1320
+ left: 33.33%;
1321
+ top: 0;
1322
+ bottom: 0;
1323
+ width: 33.33%;
1324
+ border-left: 1px dashed rgba(255, 255, 255, 0.5);
1325
+ border-right: 1px dashed rgba(255, 255, 255, 0.5);
1326
+ }
1327
+ .rpc_image_cropper_toolbar {
1328
+ display: flex;
1329
+ align-items: center;
1330
+ justify-content: center;
1331
+ gap: 12px;
1332
+ padding: 12px 16px;
1333
+ background: #1f1f1f;
1334
+ width: 100%;
1335
+ box-sizing: border-box;
1336
+ border-top: 1px solid #303030;
1337
+ }
1338
+ .rpc_image_cropper_btn {
1339
+ display: inline-flex;
1340
+ align-items: center;
1341
+ justify-content: center;
1342
+ gap: 6px;
1343
+ height: 32px;
1344
+ padding: 0 12px;
1345
+ border-radius: 6px;
1346
+ background: #2a2a2a;
1347
+ border: 1px solid #434343;
1348
+ color: #ffffff;
1349
+ font-size: 13px;
1350
+ cursor: pointer;
1351
+ transition: all 0.2s;
1352
+ }
1353
+ .rpc_image_cropper_btn:hover {
1354
+ background: #3a3a3a;
1355
+ border-color: #1677ff;
1356
+ color: #1677ff;
1357
+ }
1358
+ .rpc_image_cropper_btn_primary {
1359
+ background: #1677ff;
1360
+ border-color: #1677ff;
1361
+ }
1362
+ .rpc_image_cropper_btn_primary:hover {
1363
+ background: #4096ff;
1364
+ border-color: #4096ff;
1365
+ color: #ffffff;
1366
+ }
1367
+ .rpc_cropper_modal {
1368
+ position: fixed;
1369
+ top: 0;
1370
+ left: 0;
1371
+ right: 0;
1372
+ bottom: 0;
1373
+ background: rgba(0, 0, 0, 0.65);
1374
+ display: flex;
1375
+ align-items: center;
1376
+ justify-content: center;
1377
+ z-index: 2100;
1378
+ padding: 20px;
1379
+ box-sizing: border-box;
1380
+ animation: rpcCropperFadeIn 0.2s ease-out;
1381
+ }
1382
+ .rpc_cropper_modal_card {
1383
+ background: #ffffff;
1384
+ border-radius: 12px;
1385
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
1386
+ width: 100%;
1387
+ max-width: 580px;
1388
+ overflow: hidden;
1389
+ display: flex;
1390
+ flex-direction: column;
1391
+ }
1392
+ .rpc_cropper_modal_header {
1393
+ display: flex;
1394
+ align-items: center;
1395
+ justify-content: space-between;
1396
+ padding: 16px 20px;
1397
+ border-bottom: 1px solid #f0f0f0;
1398
+ font-size: 16px;
1399
+ font-weight: 600;
1400
+ color: #1f1f1f;
1401
+ }
1402
+ .rpc_cropper_modal_close {
1403
+ cursor: pointer;
1404
+ color: #8c8c8c;
1405
+ font-size: 16px;
1406
+ }
1407
+ .rpc_cropper_modal_close:hover {
1408
+ color: #262626;
1409
+ }
1410
+ .rpc_cropper_modal_footer {
1411
+ display: flex;
1412
+ justify-content: flex-end;
1413
+ gap: 12px;
1414
+ padding: 14px 20px;
1415
+ border-top: 1px solid #f0f0f0;
1416
+ background: #fafafa;
1417
+ }
1418
+ @keyframes rpcCropperFadeIn {
1419
+ from {
1420
+ opacity: 0;
1421
+ transform: scale(0.96);
1422
+ }
1423
+ to {
1424
+ opacity: 1;
1425
+ transform: scale(1);
1426
+ }
1427
+ }
1428
+
1429
+ /* ScrollTracker/index.less */
1430
+ .rpc_scroll_tracker {
1431
+ position: fixed;
1432
+ left: 0;
1433
+ right: 0;
1434
+ z-index: 1060;
1435
+ pointer-events: none;
1436
+ height: 3px;
1437
+ background: transparent;
1438
+ }
1439
+ .rpc_scroll_tracker_top {
1440
+ top: 0;
1441
+ }
1442
+ .rpc_scroll_tracker_bottom {
1443
+ bottom: 0;
1444
+ }
1445
+ .rpc_scroll_tracker_bar {
1446
+ height: 100%;
1447
+ background: #1677ff;
1448
+ transition: width 0.08s ease-out;
1449
+ box-shadow: 0 0 8px rgba(22, 119, 255, 0.5);
1450
+ }
1451
+ .rpc_scroll_tracker_percentage {
1452
+ position: absolute;
1453
+ right: 12px;
1454
+ top: 8px;
1455
+ background: rgba(0, 0, 0, 0.75);
1456
+ color: #ffffff;
1457
+ font-size: 11px;
1458
+ font-family: monospace;
1459
+ padding: 2px 6px;
1460
+ border-radius: 4px;
1461
+ pointer-events: auto;
1462
+ }
1463
+ .rpc_sticky_header {
1464
+ position: sticky;
1465
+ z-index: 1000;
1466
+ box-sizing: border-box;
1467
+ transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
1468
+ }
1469
+ .rpc_sticky_header_stuck {
1470
+ background: rgba(255, 255, 255, 0.88) !important;
1471
+ backdrop-filter: blur(12px) !important;
1472
+ -webkit-backdrop-filter: blur(12px) !important;
1473
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
1474
+ border-bottom: 1px solid rgba(0, 0, 0, 0.06);
1475
+ }
1476
+
1477
+ /* FilePreviewer/index.less */
1478
+ .rpc_file_previewer_modal {
1479
+ position: fixed;
1480
+ top: 0;
1481
+ left: 0;
1482
+ right: 0;
1483
+ bottom: 0;
1484
+ background: rgba(0, 0, 0, 0.72);
1485
+ backdrop-filter: blur(8px);
1486
+ display: flex;
1487
+ align-items: center;
1488
+ justify-content: center;
1489
+ z-index: 2200;
1490
+ padding: 24px;
1491
+ box-sizing: border-box;
1492
+ animation: rpcPreviewerFadeIn 0.2s ease-out;
1493
+ }
1494
+ .rpc_file_previewer_modal_card {
1495
+ background: #ffffff;
1496
+ border-radius: 12px;
1497
+ box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
1498
+ width: 100%;
1499
+ max-width: 840px;
1500
+ height: 80vh;
1501
+ max-height: 640px;
1502
+ display: flex;
1503
+ flex-direction: column;
1504
+ overflow: hidden;
1505
+ box-sizing: border-box;
1506
+ }
1507
+ .rpc_file_previewer_modal_header {
1508
+ display: flex;
1509
+ align-items: center;
1510
+ justify-content: space-between;
1511
+ padding: 14px 20px;
1512
+ border-bottom: 1px solid #f0f0f0;
1513
+ background: #ffffff;
1514
+ z-index: 10;
1515
+ }
1516
+ .rpc_file_previewer_modal_title {
1517
+ display: flex;
1518
+ align-items: center;
1519
+ gap: 8px;
1520
+ font-size: 15px;
1521
+ font-weight: 600;
1522
+ color: #1f1f1f;
1523
+ overflow: hidden;
1524
+ text-overflow: ellipsis;
1525
+ white-space: nowrap;
1526
+ max-width: 70%;
1527
+ }
1528
+ .rpc_file_previewer_modal_actions {
1529
+ display: flex;
1530
+ align-items: center;
1531
+ gap: 12px;
1532
+ }
1533
+ .rpc_file_previewer_modal_action_btn {
1534
+ display: inline-flex;
1535
+ align-items: center;
1536
+ justify-content: center;
1537
+ width: 32px;
1538
+ height: 32px;
1539
+ padding: 0;
1540
+ border-radius: 6px;
1541
+ border: 1px solid #e8e8e8;
1542
+ background: #ffffff;
1543
+ color: #595959;
1544
+ cursor: pointer;
1545
+ font-size: 16px;
1546
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
1547
+ }
1548
+ .rpc_file_previewer_modal_action_btn:hover {
1549
+ color: #1677ff;
1550
+ border-color: #1677ff;
1551
+ background: #f0f5ff;
1552
+ box-shadow: 0 2px 6px rgba(22, 119, 255, 0.12);
1553
+ }
1554
+ .rpc_file_previewer_modal_action_btn:active {
1555
+ background: #e6f4ff;
1556
+ transform: scale(0.96);
1557
+ }
1558
+ .rpc_file_previewer_modal_body {
1559
+ flex: 1;
1560
+ background: #0f0f0f;
1561
+ display: flex;
1562
+ align-items: center;
1563
+ justify-content: center;
1564
+ overflow: hidden;
1565
+ position: relative;
1566
+ }
1567
+ .rpc_file_previewer_modal_image {
1568
+ max-width: 100%;
1569
+ max-height: 100%;
1570
+ object-fit: contain;
1571
+ user-select: none;
1572
+ transition: transform 0.2s ease-out;
1573
+ }
1574
+ .rpc_file_previewer_modal_media {
1575
+ max-width: 100%;
1576
+ max-height: 100%;
1577
+ outline: none;
1578
+ }
1579
+ .rpc_file_previewer_modal_audio_wrap {
1580
+ background: #1f1f1f;
1581
+ padding: 32px 48px;
1582
+ border-radius: 12px;
1583
+ display: flex;
1584
+ flex-direction: column;
1585
+ align-items: center;
1586
+ gap: 16px;
1587
+ color: #ffffff;
1588
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
1589
+ }
1590
+ .rpc_file_previewer_modal_iframe {
1591
+ width: 100%;
1592
+ height: 100%;
1593
+ border: none;
1594
+ background: #ffffff;
1595
+ }
1596
+ .rpc_file_previewer_modal_text_wrap {
1597
+ width: 100%;
1598
+ height: 100%;
1599
+ background: #1e1e1e;
1600
+ color: #d4d4d4;
1601
+ padding: 20px;
1602
+ box-sizing: border-box;
1603
+ overflow: auto;
1604
+ font-family: monospace;
1605
+ font-size: 13px;
1606
+ line-height: 1.6;
1607
+ white-space: pre-wrap;
1608
+ }
1609
+ .rpc_file_previewer_modal_fallback_card {
1610
+ background: #ffffff;
1611
+ padding: 40px;
1612
+ border-radius: 12px;
1613
+ text-align: center;
1614
+ display: flex;
1615
+ flex-direction: column;
1616
+ align-items: center;
1617
+ gap: 16px;
1618
+ max-width: 400px;
1619
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
1620
+ }
1621
+ @keyframes rpcPreviewerFadeIn {
1622
+ from {
1623
+ opacity: 0;
1624
+ transform: scale(0.96);
1625
+ }
1626
+ to {
1627
+ opacity: 1;
1628
+ transform: scale(1);
1629
+ }
1630
+ }
1631
+
1632
+ /* TagInput/index.less */
1633
+ .rpc_tag_input {
1634
+ position: relative;
1635
+ box-sizing: border-box;
1636
+ display: inline-flex;
1637
+ flex-wrap: wrap;
1638
+ align-items: center;
1639
+ gap: 6px;
1640
+ min-height: 34px;
1641
+ padding: 4px 8px;
1642
+ background: #ffffff;
1643
+ border: 1px solid #d9d9d9;
1644
+ border-radius: 6px;
1645
+ font-size: 14px;
1646
+ line-height: 1.5;
1647
+ color: #262626;
1648
+ cursor: text;
1649
+ transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
1650
+ width: 100%;
1651
+ }
1652
+ .rpc_tag_input:hover:not(.rpc_tag_input_disabled) {
1653
+ border-color: #4096ff;
1654
+ }
1655
+ .rpc_tag_input_focused {
1656
+ border-color: #1677ff;
1657
+ box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.15);
1658
+ }
1659
+ .rpc_tag_input_disabled {
1660
+ background: #f5f5f5;
1661
+ cursor: not-allowed;
1662
+ border-color: #d9d9d9;
1663
+ color: rgba(0, 0, 0, 0.25);
1664
+ }
1665
+ .rpc_tag_input_error {
1666
+ border-color: #ff4d4f !important;
1667
+ }
1668
+ .rpc_tag_input_error:focus-within,
1669
+ .rpc_tag_input_error_focused {
1670
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.15) !important;
1671
+ }
1672
+ .rpc_tag_input_tag {
1673
+ display: inline-flex;
1674
+ align-items: center;
1675
+ gap: 4px;
1676
+ padding: 2px 8px;
1677
+ background: #f5f5f5;
1678
+ border: 1px solid #e8e8e8;
1679
+ border-radius: 4px;
1680
+ font-size: 12px;
1681
+ line-height: 1.4;
1682
+ color: #262626;
1683
+ user-select: none;
1684
+ transition: all 0.15s;
1685
+ }
1686
+ .rpc_tag_input_tag:hover {
1687
+ background: #e6f4ff;
1688
+ border-color: #91caff;
1689
+ color: #0958d9;
1690
+ }
1691
+ .rpc_tag_input_tag_close {
1692
+ font-size: 10px;
1693
+ color: #8c8c8c;
1694
+ cursor: pointer;
1695
+ display: inline-flex;
1696
+ align-items: center;
1697
+ transition: color 0.15s;
1698
+ }
1699
+ .rpc_tag_input_tag_close:hover {
1700
+ color: #ff4d4f;
1701
+ }
1702
+ .rpc_tag_input_input {
1703
+ flex: 1;
1704
+ min-width: 80px;
1705
+ border: none;
1706
+ outline: none;
1707
+ background: transparent;
1708
+ font-size: 13px;
1709
+ color: inherit;
1710
+ padding: 2px 4px;
1711
+ margin: 0;
1712
+ }
1713
+ .rpc_tag_input_input::placeholder {
1714
+ color: #bfbfbf;
1715
+ }
1716
+ .rpc_tag_input_input:disabled {
1717
+ cursor: not-allowed;
1718
+ }
1719
+ .rpc_tag_input_error_tip {
1720
+ position: absolute;
1721
+ top: calc(100% + 4px);
1722
+ left: 0;
1723
+ color: #ff4d4f;
1724
+ font-size: 12px;
1725
+ line-height: 1.4;
1726
+ white-space: nowrap;
1727
+ animation: rpcTagFadeIn 0.15s ease-out;
1728
+ }
1729
+ @keyframes rpcTagFadeIn {
1730
+ from {
1731
+ opacity: 0;
1732
+ transform: translateY(-3px);
1733
+ }
1734
+ to {
1735
+ opacity: 1;
1736
+ transform: translateY(0);
1737
+ }
1738
+ }
1739
+
1740
+ /* PasswordStrength/index.less */
1741
+ .rpc_password_strength {
1742
+ display: flex;
1743
+ flex-direction: column;
1744
+ gap: 8px;
1745
+ box-sizing: border-box;
1746
+ font-size: 13px;
1747
+ color: #262626;
1748
+ }
1749
+ .rpc_password_strength_bars {
1750
+ display: flex;
1751
+ gap: 6px;
1752
+ width: 100%;
1753
+ height: 5px;
1754
+ }
1755
+ .rpc_password_strength_bar_segment {
1756
+ flex: 1;
1757
+ height: 100%;
1758
+ background: #f0f0f0;
1759
+ border-radius: 3px;
1760
+ transition: background 0.3s ease;
1761
+ }
1762
+ .rpc_password_strength_bar_segment_active_weak {
1763
+ background: #ff4d4f;
1764
+ }
1765
+ .rpc_password_strength_bar_segment_active_medium {
1766
+ background: #fa8c16;
1767
+ }
1768
+ .rpc_password_strength_bar_segment_active_good {
1769
+ background: #1677ff;
1770
+ }
1771
+ .rpc_password_strength_bar_segment_active_strong {
1772
+ background: #52c41a;
1773
+ }
1774
+ .rpc_password_strength_label {
1775
+ display: flex;
1776
+ justify-content: space-between;
1777
+ align-items: center;
1778
+ font-size: 12px;
1779
+ color: #8c8c8c;
1780
+ }
1781
+ .rpc_password_strength_level_text {
1782
+ font-weight: 600;
1783
+ }
1784
+ .rpc_password_strength_rules {
1785
+ display: grid;
1786
+ grid-template-columns: 1fr 1fr;
1787
+ gap: 6px;
1788
+ padding: 10px 12px;
1789
+ background: #fafafa;
1790
+ border: 1px solid #f0f0f0;
1791
+ border-radius: 6px;
1792
+ font-size: 12px;
1793
+ }
1794
+ .rpc_password_strength_rule_item {
1795
+ display: flex;
1796
+ align-items: center;
1797
+ gap: 6px;
1798
+ color: #8c8c8c;
1799
+ transition: color 0.2s;
1800
+ }
1801
+ .rpc_password_strength_rule_item_passed {
1802
+ color: #52c41a;
1803
+ font-weight: 500;
1804
+ }
1805
+
1806
+ /* JsonEditor/index.less */
1807
+ .rpc_json_editor {
1808
+ position: relative;
1809
+ box-sizing: border-box;
1810
+ display: flex;
1811
+ flex-direction: column;
1812
+ background: #1e1e1e;
1813
+ color: #d4d4d4;
1814
+ border-radius: 8px;
1815
+ border: 1px solid #333333;
1816
+ font-family:
1817
+ "Fira Code",
1818
+ Consolas,
1819
+ Monaco,
1820
+ "Courier New",
1821
+ monospace;
1822
+ font-size: 13px;
1823
+ line-height: 1.6;
1824
+ overflow: hidden;
1825
+ }
1826
+ .rpc_json_editor_toolbar {
1827
+ display: flex;
1828
+ align-items: center;
1829
+ justify-content: space-between;
1830
+ padding: 8px 14px;
1831
+ background: #252526;
1832
+ border-bottom: 1px solid #333333;
1833
+ user-select: none;
1834
+ }
1835
+ .rpc_json_editor_title {
1836
+ font-size: 12px;
1837
+ color: #9cdcfe;
1838
+ font-weight: 500;
1839
+ display: flex;
1840
+ align-items: center;
1841
+ gap: 6px;
1842
+ }
1843
+ .rpc_json_editor_actions {
1844
+ display: flex;
1845
+ align-items: center;
1846
+ gap: 8px;
1847
+ }
1848
+ .rpc_json_editor_btn {
1849
+ padding: 3px 10px;
1850
+ border-radius: 4px;
1851
+ background: #333333;
1852
+ border: 1px solid #444444;
1853
+ color: #cccccc;
1854
+ font-size: 12px;
1855
+ cursor: pointer;
1856
+ transition: all 0.15s;
1857
+ }
1858
+ .rpc_json_editor_btn:hover {
1859
+ background: #444444;
1860
+ color: #ffffff;
1861
+ border-color: #1677ff;
1862
+ }
1863
+ .rpc_json_editor_body {
1864
+ position: relative;
1865
+ display: flex;
1866
+ flex: 1;
1867
+ min-height: 180px;
1868
+ overflow: hidden;
1869
+ }
1870
+ .rpc_json_editor_line_numbers {
1871
+ padding: 12px 10px;
1872
+ background: #1e1e1e;
1873
+ color: #858585;
1874
+ text-align: right;
1875
+ user-select: none;
1876
+ border-right: 1px solid #2d2d2d;
1877
+ font-size: 12px;
1878
+ min-width: 32px;
1879
+ box-sizing: border-box;
1880
+ }
1881
+ .rpc_json_editor_textarea {
1882
+ flex: 1;
1883
+ padding: 12px 14px;
1884
+ background: transparent;
1885
+ color: #d4d4d4;
1886
+ border: none;
1887
+ outline: none;
1888
+ resize: none;
1889
+ font-family: inherit;
1890
+ font-size: inherit;
1891
+ line-height: inherit;
1892
+ tab-size: 2;
1893
+ white-space: pre;
1894
+ overflow: auto;
1895
+ box-sizing: border-box;
1896
+ }
1897
+ .rpc_json_editor_textarea::selection {
1898
+ background: #264f78;
1899
+ }
1900
+ .rpc_json_editor_status_bar {
1901
+ display: flex;
1902
+ align-items: center;
1903
+ justify-content: space-between;
1904
+ padding: 4px 14px;
1905
+ background: #007acc;
1906
+ color: #ffffff;
1907
+ font-size: 11px;
1908
+ line-height: 1.4;
1909
+ }
1910
+ .rpc_json_editor_status_bar_error {
1911
+ background: #d32f2f;
1912
+ }
1913
+
1914
+ /* InfiniteScrollList/index.less */
1915
+ .rpc_infinite_scroll_list {
1916
+ position: relative;
1917
+ box-sizing: border-box;
1918
+ }
1919
+ .rpc_infinite_scroll_list_container {
1920
+ overflow-y: auto;
1921
+ -webkit-overflow-scrolling: touch;
1922
+ }
1923
+ .rpc_infinite_scroll_list_footer {
1924
+ padding: 16px 0;
1925
+ text-align: center;
1926
+ color: #8c8c8c;
1927
+ font-size: 13px;
1928
+ display: flex;
1929
+ align-items: center;
1930
+ justify-content: center;
1931
+ gap: 8px;
1932
+ }
1933
+ .rpc_infinite_scroll_list_end {
1934
+ color: #bfbfbf;
1935
+ font-size: 12px;
1936
+ display: flex;
1937
+ align-items: center;
1938
+ justify-content: center;
1939
+ gap: 12px;
1940
+ }
1941
+ .rpc_infinite_scroll_list_end::before,
1942
+ .rpc_infinite_scroll_list_end::after {
1943
+ content: "";
1944
+ width: 48px;
1945
+ height: 1px;
1946
+ background: #f0f0f0;
1947
+ }
1948
+
1949
+ /* Marquee/index.less */
1950
+ .rpc_marquee {
1951
+ position: relative;
1952
+ display: flex;
1953
+ overflow: hidden;
1954
+ user-select: none;
1955
+ width: 100%;
1956
+ box-sizing: border-box;
1957
+ }
1958
+ .rpc_marquee_container {
1959
+ display: flex;
1960
+ flex-direction: row;
1961
+ width: max-content;
1962
+ will-change: transform;
1963
+ }
1964
+ .rpc_marquee_vertical {
1965
+ flex-direction: column;
1966
+ height: 100%;
1967
+ }
1968
+ .rpc_marquee_vertical .rpc_marquee_container {
1969
+ flex-direction: column;
1970
+ height: max-content;
1971
+ width: 100%;
1972
+ }
1973
+ .rpc_marquee_content {
1974
+ display: flex;
1975
+ flex-shrink: 0;
1976
+ align-items: center;
1977
+ justify-content: space-around;
1978
+ gap: var(--rpc-marquee-gap, 24px);
1979
+ min-width: 100%;
1980
+ }
1981
+ .rpc_marquee_vertical .rpc_marquee_content {
1982
+ flex-direction: column;
1983
+ min-height: 100%;
1984
+ min-width: unset;
1985
+ }
1986
+ .rpc_marquee_pause_on_hover:hover .rpc_marquee_container {
1987
+ animation-play-state: paused !important;
1988
+ }
1989
+ .rpc_marquee_gradient::before,
1990
+ .rpc_marquee_gradient::after {
1991
+ content: "";
1992
+ position: absolute;
1993
+ top: 0;
1994
+ bottom: 0;
1995
+ width: 48px;
1996
+ z-index: 2;
1997
+ pointer-events: none;
1998
+ }
1999
+ .rpc_marquee_gradient::before {
2000
+ left: 0;
2001
+ background:
2002
+ linear-gradient(
2003
+ to right,
2004
+ var(--rpc-marquee-gradient-color, #ffffff),
2005
+ transparent);
2006
+ }
2007
+ .rpc_marquee_gradient::after {
2008
+ right: 0;
2009
+ background:
2010
+ linear-gradient(
2011
+ to left,
2012
+ var(--rpc-marquee-gradient-color, #ffffff),
2013
+ transparent);
2014
+ }
2015
+ @keyframes rpcMarqueeLeft {
2016
+ 0% {
2017
+ transform: translateX(0%);
2018
+ }
2019
+ 100% {
2020
+ transform: translateX(-50%);
2021
+ }
2022
+ }
2023
+ @keyframes rpcMarqueeRight {
2024
+ 0% {
2025
+ transform: translateX(-50%);
2026
+ }
2027
+ 100% {
2028
+ transform: translateX(0%);
2029
+ }
2030
+ }
2031
+ @keyframes rpcMarqueeUp {
2032
+ 0% {
2033
+ transform: translateY(0%);
2034
+ }
2035
+ 100% {
2036
+ transform: translateY(-50%);
2037
+ }
2038
+ }
2039
+ @keyframes rpcMarqueeDown {
2040
+ 0% {
2041
+ transform: translateY(-50%);
2042
+ }
2043
+ 100% {
2044
+ transform: translateY(0%);
2045
+ }
2046
+ }
2047
+
2048
+ /* SpotlightCard/index.less */
2049
+ .rpc_spotlight_card {
2050
+ position: relative;
2051
+ box-sizing: border-box;
2052
+ border-radius: 12px;
2053
+ background: #ffffff;
2054
+ border: 1px solid #f0f0f0;
2055
+ overflow: hidden;
2056
+ transition: border-color 0.2s, box-shadow 0.2s;
2057
+ }
2058
+ .rpc_spotlight_card_spotlight {
2059
+ position: absolute;
2060
+ top: 0;
2061
+ left: 0;
2062
+ right: 0;
2063
+ bottom: 0;
2064
+ pointer-events: none;
2065
+ opacity: 0;
2066
+ transition: opacity 0.3s ease;
2067
+ z-index: 1;
2068
+ }
2069
+ .rpc_spotlight_card:hover .rpc_spotlight_card_spotlight {
2070
+ opacity: 1;
2071
+ }
2072
+ .rpc_spotlight_card_content {
2073
+ position: relative;
2074
+ z-index: 2;
2075
+ }
2076
+ .rpc_spotlight_card_dark {
2077
+ background: #18181b;
2078
+ border-color: #27272a;
2079
+ color: #ffffff;
2080
+ }
2081
+
2082
+ /* SensitiveMask/index.less */
2083
+ .rpc_sensitive_mask {
2084
+ display: inline-flex;
2085
+ align-items: center;
2086
+ gap: 6px;
2087
+ box-sizing: border-box;
2088
+ font-family: inherit;
2089
+ font-size: 14px;
2090
+ color: inherit;
2091
+ vertical-align: middle;
2092
+ }
2093
+ .rpc_sensitive_mask_text {
2094
+ font-variant-numeric: tabular-nums;
2095
+ font-family: monospace, inherit;
2096
+ }
2097
+ .rpc_sensitive_mask_action_btn {
2098
+ display: inline-flex;
2099
+ align-items: center;
2100
+ color: #8c8c8c;
2101
+ cursor: pointer;
2102
+ font-size: 14px;
2103
+ transition: color 0.15s;
2104
+ }
2105
+ .rpc_sensitive_mask_action_btn:hover {
2106
+ color: #1677ff;
2107
+ }
2108
+
2109
+ /* DiffViewer/index.less */
2110
+ .rpc_diff_viewer {
2111
+ position: relative;
2112
+ box-sizing: border-box;
2113
+ border-radius: 8px;
2114
+ border: 1px solid #d9d9d9;
2115
+ background: #ffffff;
2116
+ font-family:
2117
+ "Fira Code",
2118
+ Consolas,
2119
+ Monaco,
2120
+ "Courier New",
2121
+ monospace;
2122
+ font-size: 12px;
2123
+ line-height: 1.6;
2124
+ overflow: hidden;
2125
+ }
2126
+ .rpc_diff_viewer_header {
2127
+ display: flex;
2128
+ align-items: center;
2129
+ justify-content: space-between;
2130
+ padding: 8px 16px;
2131
+ background: #f5f5f5;
2132
+ border-bottom: 1px solid #e8e8e8;
2133
+ font-family: sans-serif;
2134
+ }
2135
+ .rpc_diff_viewer_title {
2136
+ font-weight: 600;
2137
+ color: #1f1f1f;
2138
+ font-size: 13px;
2139
+ }
2140
+ .rpc_diff_viewer_mode_toggle {
2141
+ display: inline-flex;
2142
+ border: 1px solid #d9d9d9;
2143
+ border-radius: 4px;
2144
+ overflow: hidden;
2145
+ background: #ffffff;
2146
+ }
2147
+ .rpc_diff_viewer_mode_btn {
2148
+ padding: 2px 10px;
2149
+ border: none;
2150
+ background: transparent;
2151
+ font-size: 12px;
2152
+ cursor: pointer;
2153
+ color: #595959;
2154
+ }
2155
+ .rpc_diff_viewer_mode_btn_active {
2156
+ background: #1677ff;
2157
+ color: #ffffff;
2158
+ }
2159
+ .rpc_diff_viewer_table {
2160
+ width: 100%;
2161
+ border-collapse: collapse;
2162
+ table-layout: fixed;
2163
+ }
2164
+ .rpc_diff_viewer_row:hover {
2165
+ background: rgba(0, 0, 0, 0.02);
2166
+ }
2167
+ .rpc_diff_viewer_row_added {
2168
+ background: #e6ffed !important;
2169
+ color: #135200;
2170
+ }
2171
+ .rpc_diff_viewer_row_removed {
2172
+ background: #ffeef0 !important;
2173
+ color: #a8071a;
2174
+ }
2175
+ .rpc_diff_viewer_row_empty {
2176
+ background: #f9f9f9;
2177
+ }
2178
+ .rpc_diff_viewer_gutter {
2179
+ width: 40px;
2180
+ padding: 0 8px;
2181
+ text-align: right;
2182
+ user-select: none;
2183
+ color: #8c8c8c;
2184
+ border-right: 1px solid #f0f0f0;
2185
+ font-size: 11px;
2186
+ }
2187
+ .rpc_diff_viewer_marker {
2188
+ width: 20px;
2189
+ text-align: center;
2190
+ user-select: none;
2191
+ font-weight: 600;
2192
+ }
2193
+ .rpc_diff_viewer_code {
2194
+ padding: 0 10px;
2195
+ white-space: pre-wrap;
2196
+ word-break: break-all;
2197
+ }
2198
+
2199
+ /* CronPicker/index.less */
2200
+ .rpc_cron_picker {
2201
+ box-sizing: border-box;
2202
+ background: #ffffff;
2203
+ border: 1px solid #d9d9d9;
2204
+ border-radius: 8px;
2205
+ padding: 16px;
2206
+ font-size: 14px;
2207
+ color: #262626;
2208
+ }
2209
+ .rpc_cron_picker_tabs {
2210
+ display: flex;
2211
+ gap: 6px;
2212
+ margin-bottom: 16px;
2213
+ border-bottom: 1px solid #f0f0f0;
2214
+ padding-bottom: 8px;
2215
+ flex-wrap: wrap;
2216
+ }
2217
+ .rpc_cron_picker_tab_btn {
2218
+ padding: 4px 12px;
2219
+ border-radius: 4px;
2220
+ border: 1px solid transparent;
2221
+ background: transparent;
2222
+ color: #595959;
2223
+ cursor: pointer;
2224
+ font-size: 13px;
2225
+ transition: all 0.15s;
2226
+ }
2227
+ .rpc_cron_picker_tab_btn:hover {
2228
+ color: #1677ff;
2229
+ }
2230
+ .rpc_cron_picker_tab_btn_active {
2231
+ background: #e6f4ff;
2232
+ color: #1677ff;
2233
+ font-weight: 600;
2234
+ border-color: #91caff;
2235
+ }
2236
+ .rpc_cron_picker_panel {
2237
+ display: flex;
2238
+ flex-direction: column;
2239
+ gap: 12px;
2240
+ min-height: 80px;
2241
+ }
2242
+ .rpc_cron_picker_field_row {
2243
+ display: flex;
2244
+ align-items: center;
2245
+ gap: 10px;
2246
+ flex-wrap: wrap;
2247
+ }
2248
+ .rpc_cron_picker_select,
2249
+ .rpc_cron_picker_input {
2250
+ padding: 5px 10px;
2251
+ border: 1px solid #d9d9d9;
2252
+ border-radius: 6px;
2253
+ font-size: 13px;
2254
+ outline: none;
2255
+ background: #ffffff;
2256
+ }
2257
+ .rpc_cron_picker_select:focus,
2258
+ .rpc_cron_picker_input:focus {
2259
+ border-color: #1677ff;
2260
+ }
2261
+ .rpc_cron_picker_footer {
2262
+ margin-top: 16px;
2263
+ padding-top: 14px;
2264
+ border-top: 1px dashed #e8e8e8;
2265
+ display: flex;
2266
+ flex-direction: column;
2267
+ gap: 8px;
2268
+ }
2269
+ .rpc_cron_picker_cron_badge {
2270
+ display: inline-flex;
2271
+ align-items: center;
2272
+ gap: 8px;
2273
+ }
2274
+ .rpc_cron_picker_cron_code {
2275
+ font-family: monospace;
2276
+ font-size: 14px;
2277
+ font-weight: 600;
2278
+ color: #1677ff;
2279
+ background: #f0f5ff;
2280
+ padding: 2px 8px;
2281
+ border-radius: 4px;
2282
+ border: 1px solid #adc6ff;
2283
+ }
2284
+ .rpc_cron_picker_human_desc {
2285
+ font-size: 13px;
2286
+ color: #52c41a;
2287
+ display: flex;
2288
+ align-items: center;
2289
+ gap: 6px;
2290
+ }
2291
+
2292
+ /* GuidedTour/index.less */
2293
+ .rpc_guided_tour {
2294
+ position: fixed;
2295
+ top: 0;
2296
+ left: 0;
2297
+ right: 0;
2298
+ bottom: 0;
2299
+ z-index: 2500;
2300
+ pointer-events: auto;
2301
+ box-sizing: border-box;
2302
+ }
2303
+ .rpc_guided_tour_mask {
2304
+ position: absolute;
2305
+ top: 0;
2306
+ left: 0;
2307
+ right: 0;
2308
+ bottom: 0;
2309
+ pointer-events: none;
2310
+ }
2311
+ .rpc_guided_tour_highlight_box {
2312
+ position: absolute;
2313
+ border-radius: 6px;
2314
+ box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.65);
2315
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
2316
+ pointer-events: none;
2317
+ border: 2px solid #1677ff;
2318
+ }
2319
+ .rpc_guided_tour_popover {
2320
+ position: absolute;
2321
+ width: 320px;
2322
+ background: #ffffff;
2323
+ border-radius: 10px;
2324
+ box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
2325
+ padding: 18px 20px;
2326
+ z-index: 2510;
2327
+ box-sizing: border-box;
2328
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
2329
+ animation: rpcTourFadeIn 0.2s ease-out;
2330
+ font-family: inherit;
2331
+ }
2332
+ .rpc_guided_tour_header {
2333
+ display: flex;
2334
+ align-items: center;
2335
+ justify-content: space-between;
2336
+ margin-bottom: 8px;
2337
+ }
2338
+ .rpc_guided_tour_title {
2339
+ font-size: 15px;
2340
+ font-weight: 600;
2341
+ color: #1f1f1f;
2342
+ }
2343
+ .rpc_guided_tour_description {
2344
+ font-size: 13px;
2345
+ line-height: 1.6;
2346
+ color: #595959;
2347
+ margin-bottom: 16px;
2348
+ }
2349
+ .rpc_guided_tour_footer {
2350
+ display: flex;
2351
+ align-items: center;
2352
+ justify-content: space-between;
2353
+ }
2354
+ .rpc_guided_tour_progress {
2355
+ font-size: 12px;
2356
+ color: #8c8c8c;
2357
+ }
2358
+ .rpc_guided_tour_actions {
2359
+ display: flex;
2360
+ gap: 8px;
2361
+ }
2362
+ .rpc_guided_tour_btn {
2363
+ padding: 4px 12px;
2364
+ border-radius: 6px;
2365
+ font-size: 12px;
2366
+ cursor: pointer;
2367
+ border: 1px solid #d9d9d9;
2368
+ background: #ffffff;
2369
+ color: #595959;
2370
+ transition: all 0.15s;
2371
+ }
2372
+ .rpc_guided_tour_btn:hover {
2373
+ border-color: #1677ff;
2374
+ color: #1677ff;
2375
+ }
2376
+ .rpc_guided_tour_btn_primary {
2377
+ background: #1677ff;
2378
+ border-color: #1677ff;
2379
+ color: #ffffff;
2380
+ }
2381
+ .rpc_guided_tour_btn_primary:hover {
2382
+ background: #4096ff;
2383
+ border-color: #4096ff;
2384
+ color: #ffffff;
2385
+ }
2386
+ @keyframes rpcTourFadeIn {
2387
+ from {
2388
+ opacity: 0;
2389
+ transform: scale(0.95);
2390
+ }
2391
+ to {
2392
+ opacity: 1;
2393
+ transform: scale(1);
2394
+ }
2395
+ }
2396
+
2397
+ /* NumericRangeInput/index.less */
2398
+ .rpc_numeric_range_input {
2399
+ display: inline-flex;
2400
+ flex-direction: column;
2401
+ gap: 8px;
2402
+ box-sizing: border-box;
2403
+ vertical-align: middle;
2404
+ }
2405
+ .rpc_numeric_range_input_container {
2406
+ display: inline-flex;
2407
+ align-items: center;
2408
+ background: #ffffff;
2409
+ border: 1px solid #d9d9d9;
2410
+ border-radius: 6px;
2411
+ padding: 4px 8px;
2412
+ transition: all 0.2s;
2413
+ box-sizing: border-box;
2414
+ }
2415
+ .rpc_numeric_range_input_container:hover {
2416
+ border-color: #4096ff;
2417
+ }
2418
+ .rpc_numeric_range_input_container_focused {
2419
+ border-color: #1677ff;
2420
+ box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.15);
2421
+ }
2422
+ .rpc_numeric_range_input_container_error {
2423
+ border-color: #ff4d4f !important;
2424
+ }
2425
+ .rpc_numeric_range_input_container_error_focused {
2426
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.15) !important;
2427
+ }
2428
+ .rpc_numeric_range_input_container_disabled {
2429
+ background: #f5f5f5;
2430
+ border-color: #d9d9d9;
2431
+ cursor: not-allowed;
2432
+ }
2433
+ .rpc_numeric_range_input_container_disabled input {
2434
+ cursor: not-allowed;
2435
+ color: rgba(0, 0, 0, 0.25);
2436
+ }
2437
+ .rpc_numeric_range_input_input {
2438
+ width: 72px;
2439
+ border: none;
2440
+ outline: none;
2441
+ background: transparent;
2442
+ font-size: 13px;
2443
+ color: #262626;
2444
+ text-align: center;
2445
+ box-sizing: border-box;
2446
+ font-family: inherit;
2447
+ }
2448
+ .rpc_numeric_range_input_input::placeholder {
2449
+ color: #bfbfbf;
2450
+ }
2451
+ .rpc_numeric_range_input_separator {
2452
+ margin: 0 6px;
2453
+ color: #8c8c8c;
2454
+ user-select: none;
2455
+ font-size: 13px;
2456
+ }
2457
+ .rpc_numeric_range_input_prefix,
2458
+ .rpc_numeric_range_input_suffix {
2459
+ color: #8c8c8c;
2460
+ font-size: 13px;
2461
+ user-select: none;
2462
+ }
2463
+ .rpc_numeric_range_input_shortcuts {
2464
+ display: flex;
2465
+ align-items: center;
2466
+ gap: 6px;
2467
+ flex-wrap: wrap;
2468
+ }
2469
+ .rpc_numeric_range_input_shortcut_item {
2470
+ padding: 2px 8px;
2471
+ background: #f5f5f5;
2472
+ border-radius: 4px;
2473
+ color: #595959;
2474
+ font-size: 12px;
2475
+ cursor: pointer;
2476
+ user-select: none;
2477
+ transition: all 0.15s;
2478
+ }
2479
+ .rpc_numeric_range_input_shortcut_item:hover {
2480
+ background: #e6f4ff;
2481
+ color: #1677ff;
2482
+ }
2483
+
2484
+ /* MetricCard/index.less */
2485
+ .rpc_metric_card {
2486
+ box-sizing: border-box;
2487
+ background: #ffffff;
2488
+ border: 1px solid #f0f0f0;
2489
+ border-radius: 10px;
2490
+ padding: 18px 20px;
2491
+ display: flex;
2492
+ flex-direction: column;
2493
+ gap: 12px;
2494
+ transition: all 0.2s;
2495
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
2496
+ }
2497
+ .rpc_metric_card:hover {
2498
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
2499
+ border-color: #e6f4ff;
2500
+ }
2501
+ .rpc_metric_card_header {
2502
+ display: flex;
2503
+ align-items: center;
2504
+ justify-content: space-between;
2505
+ }
2506
+ .rpc_metric_card_title {
2507
+ font-size: 13px;
2508
+ color: #8c8c8c;
2509
+ font-weight: 500;
2510
+ }
2511
+ .rpc_metric_card_body {
2512
+ display: flex;
2513
+ align-items: baseline;
2514
+ justify-content: space-between;
2515
+ gap: 12px;
2516
+ }
2517
+ .rpc_metric_card_value_wrap {
2518
+ display: flex;
2519
+ align-items: baseline;
2520
+ gap: 4px;
2521
+ }
2522
+ .rpc_metric_card_prefix,
2523
+ .rpc_metric_card_suffix {
2524
+ font-size: 16px;
2525
+ color: #595959;
2526
+ font-weight: 500;
2527
+ }
2528
+ .rpc_metric_card_value {
2529
+ font-size: 28px;
2530
+ font-weight: 700;
2531
+ color: #1f1f1f;
2532
+ font-family:
2533
+ -apple-system,
2534
+ BlinkMacSystemFont,
2535
+ "Segoe UI",
2536
+ Roboto,
2537
+ sans-serif;
2538
+ line-height: 1;
2539
+ }
2540
+ .rpc_metric_card_trend {
2541
+ display: inline-flex;
2542
+ align-items: center;
2543
+ gap: 2px;
2544
+ font-size: 12px;
2545
+ font-weight: 600;
2546
+ }
2547
+ .rpc_metric_card_trend_up {
2548
+ color: #52c41a;
2549
+ }
2550
+ .rpc_metric_card_trend_down {
2551
+ color: #ff4d4f;
2552
+ }
2553
+ .rpc_metric_card_sparkline {
2554
+ width: 100%;
2555
+ height: 36px;
2556
+ overflow: hidden;
2557
+ }
2558
+ .rpc_metric_card_footer {
2559
+ font-size: 12px;
2560
+ color: #8c8c8c;
2561
+ border-top: 1px solid #f5f5f5;
2562
+ padding-top: 10px;
2563
+ margin-top: 2px;
2564
+ }
2565
+
2566
+ /* AudioPlayer/index.less */
2567
+ .rpc_audio_player {
2568
+ display: inline-flex;
2569
+ align-items: center;
2570
+ gap: 12px;
2571
+ padding: 10px 16px;
2572
+ background: #ffffff;
2573
+ border: 1px solid #e8e8e8;
2574
+ border-radius: 24px;
2575
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
2576
+ box-sizing: border-box;
2577
+ user-select: none;
2578
+ width: 100%;
2579
+ max-width: 480px;
2580
+ }
2581
+ .rpc_audio_player_play_btn {
2582
+ display: inline-flex;
2583
+ align-items: center;
2584
+ justify-content: center;
2585
+ width: 34px;
2586
+ height: 34px;
2587
+ border-radius: 50%;
2588
+ background: #1677ff;
2589
+ color: #ffffff;
2590
+ cursor: pointer;
2591
+ font-size: 18px;
2592
+ transition: all 0.2s;
2593
+ flex-shrink: 0;
2594
+ }
2595
+ .rpc_audio_player_play_btn:hover {
2596
+ background: #4096ff;
2597
+ transform: scale(1.05);
2598
+ }
2599
+ .rpc_audio_player_info {
2600
+ display: flex;
2601
+ flex-direction: column;
2602
+ gap: 4px;
2603
+ flex: 1;
2604
+ min-width: 0;
2605
+ }
2606
+ .rpc_audio_player_title_row {
2607
+ display: flex;
2608
+ justify-content: space-between;
2609
+ align-items: center;
2610
+ font-size: 12px;
2611
+ }
2612
+ .rpc_audio_player_title {
2613
+ font-weight: 500;
2614
+ color: #262626;
2615
+ overflow: hidden;
2616
+ text-overflow: ellipsis;
2617
+ white-space: nowrap;
2618
+ }
2619
+ .rpc_audio_player_time {
2620
+ color: #8c8c8c;
2621
+ font-family: monospace;
2622
+ font-size: 11px;
2623
+ }
2624
+ .rpc_audio_player_progress_bar {
2625
+ position: relative;
2626
+ width: 100%;
2627
+ height: 6px;
2628
+ background: #f0f0f0;
2629
+ border-radius: 3px;
2630
+ cursor: pointer;
2631
+ overflow: hidden;
2632
+ }
2633
+ .rpc_audio_player_progress_fill {
2634
+ position: absolute;
2635
+ top: 0;
2636
+ left: 0;
2637
+ bottom: 0;
2638
+ background: #1677ff;
2639
+ border-radius: 3px;
2640
+ transition: width 0.1s linear;
2641
+ }
2642
+ .rpc_audio_player_extra {
2643
+ display: flex;
2644
+ align-items: center;
2645
+ gap: 8px;
2646
+ flex-shrink: 0;
2647
+ }
2648
+ .rpc_audio_player_speed_btn {
2649
+ padding: 2px 6px;
2650
+ border-radius: 4px;
2651
+ border: 1px solid #d9d9d9;
2652
+ background: #fafafa;
2653
+ font-size: 11px;
2654
+ color: #595959;
2655
+ cursor: pointer;
2656
+ }
2657
+ .rpc_audio_player_speed_btn:hover {
2658
+ border-color: #1677ff;
2659
+ color: #1677ff;
2660
+ }
2661
+ .rpc_audio_player_download_btn {
2662
+ color: #8c8c8c;
2663
+ cursor: pointer;
2664
+ font-size: 15px;
2665
+ transition: color 0.15s;
2666
+ }
2667
+ .rpc_audio_player_download_btn:hover {
2668
+ color: #1677ff;
2669
+ }
2670
+
2671
+ /* QrCodeCard/index.less */
2672
+ .rpc_qrcode_card {
2673
+ display: inline-flex;
2674
+ flex-direction: column;
2675
+ align-items: center;
2676
+ padding: 20px;
2677
+ background: #ffffff;
2678
+ border: 1px solid #f0f0f0;
2679
+ border-radius: 12px;
2680
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
2681
+ box-sizing: border-box;
2682
+ user-select: none;
2683
+ }
2684
+ .rpc_qrcode_card_wrap {
2685
+ position: relative;
2686
+ display: inline-flex;
2687
+ align-items: center;
2688
+ justify-content: center;
2689
+ border: 1px solid #f0f0f0;
2690
+ border-radius: 8px;
2691
+ padding: 8px;
2692
+ background: #ffffff;
2693
+ }
2694
+ .rpc_qrcode_card_canvas {
2695
+ display: block;
2696
+ }
2697
+ .rpc_qrcode_card_logo {
2698
+ position: absolute;
2699
+ top: 50%;
2700
+ left: 50%;
2701
+ transform: translate(-50%, -50%);
2702
+ width: 32px;
2703
+ height: 32px;
2704
+ border-radius: 6px;
2705
+ border: 2px solid #ffffff;
2706
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
2707
+ background: #ffffff;
2708
+ object-fit: cover;
2709
+ }
2710
+ .rpc_qrcode_card_mask {
2711
+ position: absolute;
2712
+ top: 0;
2713
+ left: 0;
2714
+ right: 0;
2715
+ bottom: 0;
2716
+ background: rgba(255, 255, 255, 0.94);
2717
+ backdrop-filter: blur(3px);
2718
+ border-radius: 8px;
2719
+ display: flex;
2720
+ flex-direction: column;
2721
+ align-items: center;
2722
+ justify-content: center;
2723
+ gap: 8px;
2724
+ font-size: 13px;
2725
+ color: #595959;
2726
+ cursor: pointer;
2727
+ z-index: 10;
2728
+ transition: all 0.2s ease-in-out;
2729
+ }
2730
+ .rpc_qrcode_card_mask_loading {
2731
+ cursor: default;
2732
+ gap: 10px;
2733
+ }
2734
+ .rpc_qrcode_card_mask_text {
2735
+ font-size: 13px;
2736
+ font-weight: 500;
2737
+ color: #595959;
2738
+ letter-spacing: 0.2px;
2739
+ }
2740
+ .rpc_qrcode_card_refresh_btn {
2741
+ display: inline-flex;
2742
+ align-items: center;
2743
+ gap: 4px;
2744
+ padding: 4px 12px;
2745
+ border-radius: 4px;
2746
+ background: #1677ff;
2747
+ color: #ffffff;
2748
+ border: none;
2749
+ font-size: 12px;
2750
+ cursor: pointer;
2751
+ margin-top: 4px;
2752
+ }
2753
+ .rpc_qrcode_card_info {
2754
+ margin-top: 14px;
2755
+ text-align: center;
2756
+ display: flex;
2757
+ flex-direction: column;
2758
+ gap: 4px;
2759
+ }
2760
+ .rpc_qrcode_card_title {
2761
+ font-size: 14px;
2762
+ font-weight: 600;
2763
+ color: #1f1f1f;
2764
+ }
2765
+ .rpc_qrcode_card_description {
2766
+ font-size: 12px;
2767
+ color: #8c8c8c;
2768
+ }
2769
+ .rpc_qrcode_card_download {
2770
+ margin-top: 10px;
2771
+ color: #1677ff;
2772
+ font-size: 12px;
2773
+ cursor: pointer;
2774
+ text-decoration: underline;
2775
+ }
2776
+ .rpc_qrcode_card_download:hover {
2777
+ color: #4096ff;
2778
+ }
2779
+
2780
+ /* ActivityLog/index.less */
2781
+ .rpc_activity_log {
2782
+ display: flex;
2783
+ flex-direction: column;
2784
+ position: relative;
2785
+ box-sizing: border-box;
2786
+ }
2787
+ .rpc_activity_log_item {
2788
+ display: flex;
2789
+ gap: 14px;
2790
+ position: relative;
2791
+ padding-bottom: 20px;
2792
+ }
2793
+ .rpc_activity_log_item:last-child {
2794
+ padding-bottom: 0;
2795
+ }
2796
+ .rpc_activity_log_item:last-child .rpc_activity_log_line {
2797
+ display: none;
2798
+ }
2799
+ .rpc_activity_log_avatar_col {
2800
+ display: flex;
2801
+ flex-direction: column;
2802
+ align-items: center;
2803
+ position: relative;
2804
+ }
2805
+ .rpc_activity_log_avatar {
2806
+ width: 32px;
2807
+ height: 32px;
2808
+ border-radius: 50%;
2809
+ background: #e6f4ff;
2810
+ color: #1677ff;
2811
+ display: flex;
2812
+ align-items: center;
2813
+ justify-content: center;
2814
+ font-size: 13px;
2815
+ font-weight: 600;
2816
+ flex-shrink: 0;
2817
+ z-index: 2;
2818
+ overflow: hidden;
2819
+ }
2820
+ .rpc_activity_log_avatar img {
2821
+ width: 100%;
2822
+ height: 100%;
2823
+ object-fit: cover;
2824
+ }
2825
+ .rpc_activity_log_line {
2826
+ position: absolute;
2827
+ top: 32px;
2828
+ bottom: 0;
2829
+ left: 50%;
2830
+ transform: translateX(-50%);
2831
+ width: 2px;
2832
+ background: #f0f0f0;
2833
+ }
2834
+ .rpc_activity_log_content {
2835
+ flex: 1;
2836
+ display: flex;
2837
+ flex-direction: column;
2838
+ gap: 6px;
2839
+ min-width: 0;
2840
+ }
2841
+ .rpc_activity_log_header {
2842
+ display: flex;
2843
+ align-items: center;
2844
+ justify-content: space-between;
2845
+ gap: 8px;
2846
+ font-size: 13px;
2847
+ }
2848
+ .rpc_activity_log_operator_row {
2849
+ display: flex;
2850
+ align-items: center;
2851
+ gap: 6px;
2852
+ flex-wrap: wrap;
2853
+ }
2854
+ .rpc_activity_log_operator {
2855
+ font-weight: 600;
2856
+ color: #1f1f1f;
2857
+ }
2858
+ .rpc_activity_log_role {
2859
+ font-size: 11px;
2860
+ padding: 1px 6px;
2861
+ border-radius: 4px;
2862
+ background: #f5f5f5;
2863
+ color: #8c8c8c;
2864
+ }
2865
+ .rpc_activity_log_action {
2866
+ color: #595959;
2867
+ }
2868
+ .rpc_activity_log_target {
2869
+ color: #1677ff;
2870
+ font-weight: 500;
2871
+ }
2872
+ .rpc_activity_log_time {
2873
+ font-size: 12px;
2874
+ color: #bfbfbf;
2875
+ flex-shrink: 0;
2876
+ }
2877
+ .rpc_activity_log_detail {
2878
+ background: #fafafa;
2879
+ border: 1px solid #f0f0f0;
2880
+ border-radius: 6px;
2881
+ padding: 8px 12px;
2882
+ font-size: 12px;
2883
+ color: #595959;
2884
+ line-height: 1.6;
2885
+ }
2886
+ .rpc_activity_log_toggle_btn {
2887
+ color: #1677ff;
2888
+ font-size: 12px;
2889
+ cursor: pointer;
2890
+ align-self: flex-start;
2891
+ user-select: none;
2892
+ }
2893
+ .rpc_activity_log_toggle_btn:hover {
2894
+ color: #4096ff;
2895
+ }
2896
+
2897
+ /* DragSortList/index.less */
2898
+ .rpc_drag_sort_list {
2899
+ display: flex;
2900
+ flex-direction: column;
2901
+ gap: 8px;
2902
+ box-sizing: border-box;
2903
+ user-select: none;
2904
+ }
2905
+ .rpc_drag_sort_list_item {
2906
+ display: flex;
2907
+ align-items: center;
2908
+ padding: 10px 14px;
2909
+ background: #ffffff;
2910
+ border: 1px solid #e8e8e8;
2911
+ border-radius: 6px;
2912
+ cursor: grab;
2913
+ transition:
2914
+ transform 0.2s,
2915
+ box-shadow 0.2s,
2916
+ border-color 0.2s;
2917
+ box-sizing: border-box;
2918
+ }
2919
+ .rpc_drag_sort_list_item:hover {
2920
+ border-color: #91caff;
2921
+ }
2922
+ .rpc_drag_sort_list_item:active {
2923
+ cursor: grabbing;
2924
+ }
2925
+ .rpc_drag_sort_list_item_dragging {
2926
+ opacity: 0.4;
2927
+ border: 1px dashed #1677ff !important;
2928
+ background: #e6f4ff !important;
2929
+ }
2930
+ .rpc_drag_sort_list_item_over {
2931
+ border-top: 2px solid #1677ff;
2932
+ }
2933
+ .rpc_drag_sort_list_handle {
2934
+ margin-right: 12px;
2935
+ color: #bfbfbf;
2936
+ font-size: 16px;
2937
+ cursor: grab;
2938
+ user-select: none;
2939
+ }
2940
+
2941
+ /* TiltCard/index.less */
2942
+ .rpc_tilt_card {
2943
+ position: relative;
2944
+ box-sizing: border-box;
2945
+ border-radius: 12px;
2946
+ background: #ffffff;
2947
+ border: 1px solid #f0f0f0;
2948
+ transform-style: preserve-3d;
2949
+ will-change: transform;
2950
+ transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
2951
+ overflow: hidden;
2952
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
2953
+ }
2954
+ .rpc_tilt_card:hover {
2955
+ box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
2956
+ }
2957
+ .rpc_tilt_card_content {
2958
+ position: relative;
2959
+ z-index: 2;
2960
+ transform: translateZ(20px);
2961
+ }
2962
+ .rpc_tilt_card_glare {
2963
+ position: absolute;
2964
+ top: 0;
2965
+ left: 0;
2966
+ right: 0;
2967
+ bottom: 0;
2968
+ pointer-events: none;
2969
+ z-index: 3;
2970
+ border-radius: inherit;
2971
+ }
2972
+
2973
+ /* VirtualList/index.less */
2974
+ .rpc_virtual_list {
2975
+ position: relative;
2976
+ overflow-y: auto;
2977
+ -webkit-overflow-scrolling: touch;
2978
+ box-sizing: border-box;
2979
+ border: 1px solid #f0f0f0;
2980
+ border-radius: 8px;
2981
+ background: #ffffff;
2982
+ }
2983
+ .rpc_virtual_list_content {
2984
+ position: relative;
2985
+ width: 100%;
2986
+ box-sizing: border-box;
2987
+ }
2988
+ .rpc_virtual_list_item {
2989
+ box-sizing: border-box;
2990
+ display: flex;
2991
+ align-items: center;
2992
+ border-bottom: 1px solid #f9f9f9;
2993
+ padding: 0 16px;
2994
+ }
2995
+ .rpc_virtual_list_item:hover {
2996
+ background: #fafafa;
2997
+ }
2998
+
2999
+ /* Watermark/index.less */
3000
+ .rpc_watermark_wrapper {
3001
+ position: relative;
3002
+ width: 100%;
3003
+ height: 100%;
3004
+ min-height: 100px;
3005
+ box-sizing: border-box;
3006
+ }
3007
+ .rpc_watermark_wrapper .rpc_watermark_layer {
3008
+ position: absolute !important;
3009
+ top: 0 !important;
3010
+ left: 0 !important;
3011
+ right: 0 !important;
3012
+ bottom: 0 !important;
3013
+ width: 100% !important;
3014
+ height: 100% !important;
3015
+ pointer-events: none !important;
3016
+ z-index: 9999 !important;
3017
+ background-repeat: repeat !important;
3018
+ display: block !important;
3019
+ visibility: visible !important;
3020
+ opacity: 1 !important;
3021
+ }
3022
+
3023
+ /* VideoPlayer/index.less */
3024
+ .rpc_video_player {
3025
+ position: relative;
3026
+ background: #000000;
3027
+ border-radius: 10px;
3028
+ overflow: hidden;
3029
+ user-select: none;
3030
+ display: inline-flex;
3031
+ align-items: center;
3032
+ justify-content: center;
3033
+ box-sizing: border-box;
3034
+ }
3035
+ .rpc_video_player_video {
3036
+ display: block;
3037
+ width: 100%;
3038
+ height: 100%;
3039
+ object-fit: contain;
3040
+ }
3041
+ .rpc_video_player_big_play_btn {
3042
+ position: absolute;
3043
+ top: 50%;
3044
+ left: 50%;
3045
+ transform: translate(-50%, -50%);
3046
+ width: 56px;
3047
+ height: 56px;
3048
+ border-radius: 50%;
3049
+ background: rgba(0, 0, 0, 0.6);
3050
+ color: #ffffff;
3051
+ display: flex;
3052
+ align-items: center;
3053
+ justify-content: center;
3054
+ font-size: 28px;
3055
+ cursor: pointer;
3056
+ backdrop-filter: blur(4px);
3057
+ transition: all 0.2s;
3058
+ z-index: 5;
3059
+ }
3060
+ .rpc_video_player_big_play_btn:hover {
3061
+ background: #1677ff;
3062
+ transform: translate(-50%, -50%) scale(1.1);
3063
+ }
3064
+ .rpc_video_player_controls {
3065
+ position: absolute;
3066
+ left: 0;
3067
+ right: 0;
3068
+ bottom: 0;
3069
+ padding: 8px 16px;
3070
+ background:
3071
+ linear-gradient(
3072
+ to top,
3073
+ rgba(0, 0, 0, 0.8) 0%,
3074
+ transparent 100%);
3075
+ display: flex;
3076
+ flex-direction: column;
3077
+ gap: 6px;
3078
+ color: #ffffff;
3079
+ z-index: 10;
3080
+ transition: opacity 0.3s ease;
3081
+ }
3082
+ .rpc_video_player_controls_hidden {
3083
+ opacity: 0;
3084
+ pointer-events: none;
3085
+ }
3086
+ .rpc_video_player_progress_wrap {
3087
+ width: 100%;
3088
+ height: 6px;
3089
+ background: rgba(255, 255, 255, 0.25);
3090
+ border-radius: 3px;
3091
+ cursor: pointer;
3092
+ position: relative;
3093
+ transition: height 0.15s;
3094
+ }
3095
+ .rpc_video_player_progress_wrap:hover {
3096
+ height: 8px;
3097
+ }
3098
+ .rpc_video_player_progress_fill {
3099
+ position: absolute;
3100
+ top: 0;
3101
+ left: 0;
3102
+ bottom: 0;
3103
+ background: #1677ff;
3104
+ border-radius: 3px;
3105
+ }
3106
+ .rpc_video_player_bar_row {
3107
+ display: flex;
3108
+ align-items: center;
3109
+ justify-content: space-between;
3110
+ font-size: 13px;
3111
+ }
3112
+ .rpc_video_player_left_btns,
3113
+ .rpc_video_player_right_btns {
3114
+ display: flex;
3115
+ align-items: center;
3116
+ gap: 12px;
3117
+ }
3118
+ .rpc_video_player_btn {
3119
+ background: transparent;
3120
+ border: none;
3121
+ color: #ffffff;
3122
+ font-size: 16px;
3123
+ cursor: pointer;
3124
+ display: inline-flex;
3125
+ align-items: center;
3126
+ padding: 2px 4px;
3127
+ opacity: 0.85;
3128
+ transition: opacity 0.15s;
3129
+ }
3130
+ .rpc_video_player_btn:hover {
3131
+ opacity: 1;
3132
+ }
3133
+ .rpc_video_player_time {
3134
+ font-size: 12px;
3135
+ font-family: monospace;
3136
+ opacity: 0.9;
3137
+ }
3138
+ .rpc_video_player_speed_btn {
3139
+ font-size: 12px;
3140
+ padding: 1px 6px;
3141
+ border: 1px solid rgba(255, 255, 255, 0.4);
3142
+ border-radius: 4px;
3143
+ }
3144
+
3145
+ /* PdfViewer/index.less */
3146
+ .rpc_pdf_viewer {
3147
+ display: flex;
3148
+ flex-direction: column;
3149
+ background: #525659;
3150
+ border-radius: 8px;
3151
+ overflow: hidden;
3152
+ box-sizing: border-box;
3153
+ border: 1px solid #333333;
3154
+ }
3155
+ .rpc_pdf_viewer_toolbar {
3156
+ display: flex;
3157
+ align-items: center;
3158
+ justify-content: space-between;
3159
+ padding: 8px 16px;
3160
+ background: #323639;
3161
+ color: #f1f1f1;
3162
+ font-size: 13px;
3163
+ user-select: none;
3164
+ }
3165
+ .rpc_pdf_viewer_title {
3166
+ font-weight: 500;
3167
+ overflow: hidden;
3168
+ text-overflow: ellipsis;
3169
+ white-space: nowrap;
3170
+ }
3171
+ .rpc_pdf_viewer_actions {
3172
+ display: flex;
3173
+ align-items: center;
3174
+ gap: 10px;
3175
+ }
3176
+ .rpc_pdf_viewer_btn {
3177
+ display: inline-flex;
3178
+ align-items: center;
3179
+ gap: 4px;
3180
+ padding: 3px 8px;
3181
+ border-radius: 4px;
3182
+ border: 1px solid #4a4d50;
3183
+ background: #202124;
3184
+ color: #e8eaed;
3185
+ font-size: 12px;
3186
+ cursor: pointer;
3187
+ transition: all 0.15s;
3188
+ }
3189
+ .rpc_pdf_viewer_btn:hover {
3190
+ background: #4a4d50;
3191
+ color: #ffffff;
3192
+ }
3193
+ .rpc_pdf_viewer_body {
3194
+ flex: 1;
3195
+ position: relative;
3196
+ background: #525659;
3197
+ overflow: auto;
3198
+ display: flex;
3199
+ align-items: center;
3200
+ justify-content: center;
3201
+ }
3202
+ .rpc_pdf_viewer_frame {
3203
+ width: 100%;
3204
+ height: 100%;
3205
+ border: none;
3206
+ display: block;
3207
+ transition: transform 0.2s ease;
3208
+ }
3209
+
3210
+ /* BadgeRibbon/index.less */
3211
+ .rpc_badge_ribbon_wrapper {
3212
+ position: relative;
3213
+ display: inline-block;
3214
+ box-sizing: border-box;
3215
+ }
3216
+ .rpc_badge_ribbon_wrapper .rpc_badge_ribbon {
3217
+ position: absolute;
3218
+ top: 14px;
3219
+ height: 22px;
3220
+ line-height: 22px;
3221
+ padding: 0 10px;
3222
+ color: #ffffff;
3223
+ font-size: 11px;
3224
+ font-weight: 600;
3225
+ white-space: nowrap;
3226
+ background: #ff4d4f;
3227
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
3228
+ z-index: 10;
3229
+ user-select: none;
3230
+ }
3231
+ .rpc_badge_ribbon_wrapper .rpc_badge_ribbon_end {
3232
+ right: -8px;
3233
+ border-radius: 2px 0 0 2px;
3234
+ }
3235
+ .rpc_badge_ribbon_wrapper .rpc_badge_ribbon_end::after {
3236
+ content: "";
3237
+ position: absolute;
3238
+ top: 100%;
3239
+ right: 0;
3240
+ border: 4px solid transparent;
3241
+ border-top-color: rgba(0, 0, 0, 0.4);
3242
+ border-right-color: rgba(0, 0, 0, 0.4);
3243
+ }
3244
+ .rpc_badge_ribbon_wrapper .rpc_badge_ribbon_start {
3245
+ left: -8px;
3246
+ border-radius: 0 2px 2px 0;
3247
+ }
3248
+ .rpc_badge_ribbon_wrapper .rpc_badge_ribbon_start::after {
3249
+ content: "";
3250
+ position: absolute;
3251
+ top: 100%;
3252
+ left: 0;
3253
+ border: 4px solid transparent;
3254
+ border-top-color: rgba(0, 0, 0, 0.4);
3255
+ border-left-color: rgba(0, 0, 0, 0.4);
3256
+ }
3257
+
3258
+ /* ShimmerSkeleton/index.less */
3259
+ .rpc_shimmer_skeleton {
3260
+ display: block;
3261
+ box-sizing: border-box;
3262
+ }
3263
+ .rpc_shimmer_skeleton_bar {
3264
+ background: #f0f0f0;
3265
+ background:
3266
+ linear-gradient(
3267
+ 90deg,
3268
+ #f0f0f0 25%,
3269
+ #e0e0e0 50%,
3270
+ #f0f0f0 75%);
3271
+ background-size: 200% 100%;
3272
+ border-radius: 4px;
3273
+ animation: rpcShimmerWave 1.6s infinite ease-in-out;
3274
+ }
3275
+ .rpc_shimmer_skeleton_avatar {
3276
+ width: 48px;
3277
+ height: 48px;
3278
+ border-radius: 50%;
3279
+ background: #f0f0f0;
3280
+ background:
3281
+ linear-gradient(
3282
+ 90deg,
3283
+ #f0f0f0 25%,
3284
+ #e0e0e0 50%,
3285
+ #f0f0f0 75%);
3286
+ background-size: 200% 100%;
3287
+ animation: rpcShimmerWave 1.6s infinite ease-in-out;
3288
+ }
3289
+ .rpc_shimmer_skeleton_card {
3290
+ padding: 16px;
3291
+ border: 1px solid #f0f0f0;
3292
+ border-radius: 8px;
3293
+ display: flex;
3294
+ flex-direction: column;
3295
+ gap: 12px;
3296
+ }
3297
+ .rpc_shimmer_skeleton_list_item {
3298
+ display: flex;
3299
+ align-items: center;
3300
+ gap: 14px;
3301
+ padding: 12px 0;
3302
+ border-bottom: 1px solid #f5f5f5;
3303
+ }
3304
+ @keyframes rpcShimmerWave {
3305
+ 0% {
3306
+ background-position: 200% 0;
3307
+ }
3308
+ 100% {
3309
+ background-position: -200% 0;
3310
+ }
3311
+ }
3312
+
3313
+ /* FlipCard/index.less */
3314
+ .rpc_flip_card {
3315
+ perspective: 1000px;
3316
+ box-sizing: border-box;
3317
+ display: inline-block;
3318
+ user-select: none;
3319
+ }
3320
+ .rpc_flip_card *,
3321
+ .rpc_flip_card *::before,
3322
+ .rpc_flip_card *::after {
3323
+ box-sizing: border-box;
3324
+ }
3325
+ .rpc_flip_card_inner {
3326
+ position: relative;
3327
+ width: 100%;
3328
+ height: 100%;
3329
+ transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
3330
+ transform-style: preserve-3d;
3331
+ }
3332
+ .rpc_flip_card_flipped_horizontal {
3333
+ transform: rotateY(180deg);
3334
+ }
3335
+ .rpc_flip_card_flipped_vertical {
3336
+ transform: rotateX(180deg);
3337
+ }
3338
+ .rpc_flip_card_front,
3339
+ .rpc_flip_card_back {
3340
+ position: absolute;
3341
+ top: 0;
3342
+ left: 0;
3343
+ width: 100%;
3344
+ height: 100%;
3345
+ -webkit-backface-visibility: hidden;
3346
+ backface-visibility: hidden;
3347
+ border-radius: 12px;
3348
+ box-sizing: border-box;
3349
+ overflow: hidden;
3350
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
3351
+ }
3352
+ .rpc_flip_card_back_horizontal {
3353
+ transform: rotateY(180deg);
3354
+ }
3355
+ .rpc_flip_card_back_vertical {
3356
+ transform: rotateX(180deg);
3357
+ }
3358
+
3359
+ /* KanbanBoard/index.less */
3360
+ .rpc_kanban_board {
3361
+ display: flex;
3362
+ gap: 16px;
3363
+ overflow-x: auto;
3364
+ padding-bottom: 8px;
3365
+ box-sizing: border-box;
3366
+ user-select: none;
3367
+ }
3368
+ .rpc_kanban_board_column {
3369
+ flex: 1;
3370
+ min-width: 280px;
3371
+ max-width: 360px;
3372
+ background: #f7f8fa;
3373
+ border-radius: 10px;
3374
+ display: flex;
3375
+ flex-direction: column;
3376
+ padding: 12px;
3377
+ box-sizing: border-box;
3378
+ border: 1px solid #ebedf0;
3379
+ transition: background-color 0.2s;
3380
+ }
3381
+ .rpc_kanban_board_column_dragover {
3382
+ background: #e6f4ff;
3383
+ border-color: #91caff;
3384
+ }
3385
+ .rpc_kanban_board_column_header {
3386
+ display: flex;
3387
+ align-items: center;
3388
+ justify-content: space-between;
3389
+ padding-bottom: 10px;
3390
+ margin-bottom: 8px;
3391
+ border-bottom: 1px solid #f0f0f0;
3392
+ }
3393
+ .rpc_kanban_board_column_title_wrap {
3394
+ display: flex;
3395
+ align-items: center;
3396
+ gap: 8px;
3397
+ font-weight: 600;
3398
+ font-size: 14px;
3399
+ color: #1f1f1f;
3400
+ }
3401
+ .rpc_kanban_board_column_dot {
3402
+ width: 8px;
3403
+ height: 8px;
3404
+ border-radius: 50%;
3405
+ }
3406
+ .rpc_kanban_board_column_count {
3407
+ font-size: 12px;
3408
+ color: #8c8c8c;
3409
+ background: #e8e8e8;
3410
+ padding: 1px 6px;
3411
+ border-radius: 10px;
3412
+ font-weight: normal;
3413
+ }
3414
+ .rpc_kanban_board_column_body {
3415
+ flex: 1;
3416
+ display: flex;
3417
+ flex-direction: column;
3418
+ gap: 10px;
3419
+ min-height: 120px;
3420
+ }
3421
+ .rpc_kanban_board_card {
3422
+ background: #ffffff;
3423
+ border-radius: 8px;
3424
+ padding: 12px;
3425
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
3426
+ border: 1px solid #e8e8e8;
3427
+ cursor: grab;
3428
+ transition: all 0.15s ease;
3429
+ }
3430
+ .rpc_kanban_board_card:hover {
3431
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
3432
+ border-color: #d9d9d9;
3433
+ }
3434
+ .rpc_kanban_board_card_dragging {
3435
+ opacity: 0.4;
3436
+ border-style: dashed;
3437
+ }
3438
+
3439
+ /* TreeFilterPanel/index.less */
3440
+ .rpc_tree_filter_panel {
3441
+ background: #ffffff;
3442
+ border: 1px solid #f0f0f0;
3443
+ border-radius: 8px;
3444
+ padding: 16px;
3445
+ box-sizing: border-box;
3446
+ user-select: none;
3447
+ display: flex;
3448
+ flex-direction: column;
3449
+ gap: 12px;
3450
+ }
3451
+ .rpc_tree_filter_panel_row {
3452
+ display: flex;
3453
+ align-items: flex-start;
3454
+ font-size: 13px;
3455
+ line-height: 1.6;
3456
+ }
3457
+ .rpc_tree_filter_panel_label {
3458
+ width: 80px;
3459
+ flex-shrink: 0;
3460
+ color: #8c8c8c;
3461
+ font-weight: 500;
3462
+ padding-top: 2px;
3463
+ }
3464
+ .rpc_tree_filter_panel_options {
3465
+ flex: 1;
3466
+ display: flex;
3467
+ flex-wrap: wrap;
3468
+ gap: 8px;
3469
+ }
3470
+ .rpc_tree_filter_panel_item {
3471
+ padding: 2px 10px;
3472
+ border-radius: 4px;
3473
+ cursor: pointer;
3474
+ color: #595959;
3475
+ transition: all 0.15s;
3476
+ }
3477
+ .rpc_tree_filter_panel_item:hover {
3478
+ color: #1677ff;
3479
+ }
3480
+ .rpc_tree_filter_panel_item_active {
3481
+ background: #e6f4ff;
3482
+ color: #1677ff;
3483
+ font-weight: 500;
3484
+ }
3485
+ .rpc_tree_filter_panel_footer {
3486
+ display: flex;
3487
+ align-items: center;
3488
+ justify-content: space-between;
3489
+ padding-top: 10px;
3490
+ border-top: 1px dashed #f0f0f0;
3491
+ font-size: 12px;
3492
+ color: #8c8c8c;
3493
+ }
3494
+ .rpc_tree_filter_panel_clear_btn {
3495
+ color: #1677ff;
3496
+ cursor: pointer;
3497
+ background: none;
3498
+ border: none;
3499
+ padding: 0;
3500
+ font-size: 12px;
3501
+ }
3502
+ .rpc_tree_filter_panel_clear_btn:hover {
3503
+ text-decoration: underline;
3504
+ }
3505
+
3506
+ /* EnvBadge/index.less */
3507
+ .rpc_env_badge {
3508
+ position: fixed;
3509
+ z-index: 99999;
3510
+ user-select: none;
3511
+ box-sizing: border-box;
3512
+ }
3513
+ .rpc_env_badge_top_right {
3514
+ top: 18px;
3515
+ right: 18px;
3516
+ }
3517
+ .rpc_env_badge_top_left {
3518
+ top: 18px;
3519
+ left: 18px;
3520
+ }
3521
+ .rpc_env_badge_bottom_right {
3522
+ bottom: 18px;
3523
+ right: 18px;
3524
+ }
3525
+ .rpc_env_badge_tag {
3526
+ display: inline-flex;
3527
+ align-items: center;
3528
+ gap: 6px;
3529
+ padding: 4px 12px;
3530
+ border-radius: 20px;
3531
+ font-size: 12px;
3532
+ font-weight: 700;
3533
+ color: #ffffff;
3534
+ cursor: pointer;
3535
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
3536
+ backdrop-filter: blur(8px);
3537
+ transition: transform 0.2s, box-shadow 0.2s;
3538
+ }
3539
+ .rpc_env_badge_tag:hover {
3540
+ transform: scale(1.06);
3541
+ box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
3542
+ }
3543
+ .rpc_env_badge_tag_dev {
3544
+ background: #52c41a;
3545
+ }
3546
+ .rpc_env_badge_tag_test,
3547
+ .rpc_env_badge_tag_uat {
3548
+ background: #fa8c16;
3549
+ }
3550
+ .rpc_env_badge_tag_staging {
3551
+ background: #722ed1;
3552
+ }
3553
+ .rpc_env_badge_tag_prod {
3554
+ background: #f5222d;
3555
+ animation: rpcEnvProdPulse 2s infinite ease-in-out;
3556
+ }
3557
+ .rpc_env_badge_popover {
3558
+ position: absolute;
3559
+ top: 100%;
3560
+ right: 0;
3561
+ margin-top: 10px;
3562
+ width: 280px;
3563
+ background: #ffffff;
3564
+ border-radius: 10px;
3565
+ box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
3566
+ border: 1px solid #f0f0f0;
3567
+ padding: 14px;
3568
+ box-sizing: border-box;
3569
+ color: #262626;
3570
+ font-size: 13px;
3571
+ }
3572
+ .rpc_env_badge_pop_header {
3573
+ display: flex;
3574
+ align-items: center;
3575
+ justify-content: space-between;
3576
+ font-weight: 600;
3577
+ margin-bottom: 10px;
3578
+ padding-bottom: 8px;
3579
+ border-bottom: 1px solid #f0f0f0;
3580
+ }
3581
+ .rpc_env_badge_pop_row {
3582
+ display: flex;
3583
+ align-items: center;
3584
+ justify-content: space-between;
3585
+ margin-bottom: 6px;
3586
+ font-size: 12px;
3587
+ }
3588
+ .rpc_env_badge_pop_row span:first-child {
3589
+ color: #8c8c8c;
3590
+ }
3591
+ .rpc_env_badge_pop_row span:last-child {
3592
+ font-family: monospace;
3593
+ color: #1f1f1f;
3594
+ font-weight: 500;
3595
+ }
3596
+ .rpc_env_badge_switch_wrap {
3597
+ margin-top: 10px;
3598
+ padding-top: 8px;
3599
+ border-top: 1px dashed #f0f0f0;
3600
+ display: flex;
3601
+ gap: 6px;
3602
+ flex-wrap: wrap;
3603
+ }
3604
+ .rpc_env_badge_switch_btn {
3605
+ font-size: 11px;
3606
+ padding: 2px 8px;
3607
+ border-radius: 4px;
3608
+ border: 1px solid #d9d9d9;
3609
+ background: #f5f5f5;
3610
+ color: #595959;
3611
+ cursor: pointer;
3612
+ text-decoration: none;
3613
+ transition: all 0.15s;
3614
+ }
3615
+ .rpc_env_badge_switch_btn:hover {
3616
+ border-color: #1677ff;
3617
+ color: #1677ff;
3618
+ background: #e6f4ff;
3619
+ }
3620
+ @keyframes rpcEnvProdPulse {
3621
+ 0%, 100% {
3622
+ opacity: 1;
3623
+ }
3624
+ 50% {
3625
+ opacity: 0.85;
3626
+ }
3627
+ }
3628
+
3629
+ /* StatusTimeline/index.less */
3630
+ .rpc_status_timeline {
3631
+ display: flex;
3632
+ flex-direction: column;
3633
+ box-sizing: border-box;
3634
+ user-select: none;
3635
+ }
3636
+ .rpc_status_timeline_item {
3637
+ display: flex;
3638
+ gap: 14px;
3639
+ position: relative;
3640
+ padding-bottom: 24px;
3641
+ }
3642
+ .rpc_status_timeline_item:last-child {
3643
+ padding-bottom: 0;
3644
+ }
3645
+ .rpc_status_timeline_item:last-child .rpc_status_timeline_line {
3646
+ display: none;
3647
+ }
3648
+ .rpc_status_timeline_axis {
3649
+ display: flex;
3650
+ flex-direction: column;
3651
+ align-items: center;
3652
+ width: 24px;
3653
+ flex-shrink: 0;
3654
+ }
3655
+ .rpc_status_timeline_dot {
3656
+ width: 20px;
3657
+ height: 20px;
3658
+ border-radius: 50%;
3659
+ display: flex;
3660
+ align-items: center;
3661
+ justify-content: center;
3662
+ font-size: 11px;
3663
+ font-weight: 700;
3664
+ color: #ffffff;
3665
+ z-index: 2;
3666
+ }
3667
+ .rpc_status_timeline_dot_finish {
3668
+ background: #52c41a;
3669
+ }
3670
+ .rpc_status_timeline_dot_process {
3671
+ background: #1677ff;
3672
+ box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.2);
3673
+ animation: rpcTimelinePulse 1.8s infinite;
3674
+ }
3675
+ .rpc_status_timeline_dot_error {
3676
+ background: #ff4d4f;
3677
+ }
3678
+ .rpc_status_timeline_dot_wait {
3679
+ background: #d9d9d9;
3680
+ color: #8c8c8c;
3681
+ }
3682
+ .rpc_status_timeline_line {
3683
+ width: 2px;
3684
+ flex: 1;
3685
+ background: #e8e8e8;
3686
+ margin-top: 4px;
3687
+ margin-bottom: -4px;
3688
+ }
3689
+ .rpc_status_timeline_content {
3690
+ flex: 1;
3691
+ display: flex;
3692
+ flex-direction: column;
3693
+ gap: 4px;
3694
+ font-size: 13px;
3695
+ }
3696
+ .rpc_status_timeline_header {
3697
+ display: flex;
3698
+ align-items: center;
3699
+ justify-content: space-between;
3700
+ }
3701
+ .rpc_status_timeline_title {
3702
+ font-weight: 600;
3703
+ color: #1f1f1f;
3704
+ }
3705
+ .rpc_status_timeline_time {
3706
+ font-size: 12px;
3707
+ color: #8c8c8c;
3708
+ }
3709
+ .rpc_status_timeline_operator {
3710
+ display: flex;
3711
+ align-items: center;
3712
+ gap: 6px;
3713
+ font-size: 12px;
3714
+ color: #595959;
3715
+ }
3716
+ .rpc_status_timeline_duration {
3717
+ display: inline-block;
3718
+ font-size: 11px;
3719
+ padding: 1px 6px;
3720
+ background: #f5f5f5;
3721
+ color: #8c8c8c;
3722
+ border-radius: 4px;
3723
+ margin-top: 2px;
3724
+ }
3725
+ .rpc_status_timeline_desc {
3726
+ color: #595959;
3727
+ line-height: 1.5;
3728
+ font-size: 12px;
3729
+ margin-top: 4px;
3730
+ }
3731
+ @keyframes rpcTimelinePulse {
3732
+ 0%, 100% {
3733
+ transform: scale(1);
3734
+ }
3735
+ 50% {
3736
+ transform: scale(1.15);
3737
+ }
3738
+ }
3739
+
3740
+ /* GradientText/index.less */
3741
+ .rpc_gradient_text {
3742
+ display: inline-block;
3743
+ font-weight: 700;
3744
+ background-clip: text;
3745
+ -webkit-background-clip: text;
3746
+ color: transparent;
3747
+ -webkit-text-fill-color: transparent;
3748
+ background-size: 200% auto;
3749
+ }
3750
+ .rpc_gradient_text_animate {
3751
+ animation: rpcGradientTextFlow 4s linear infinite;
3752
+ }
3753
+ @keyframes rpcGradientTextFlow {
3754
+ 0% {
3755
+ background-position: 0% center;
3756
+ }
3757
+ 100% {
3758
+ background-position: 200% center;
3759
+ }
3760
+ }
3761
+
3762
+ /* KeyValEditor/index.less */
3763
+ .rpc_key_val_editor {
3764
+ display: flex;
3765
+ flex-direction: column;
3766
+ gap: 8px;
3767
+ box-sizing: border-box;
3768
+ user-select: none;
3769
+ }
3770
+ .rpc_key_val_editor_row {
3771
+ display: flex;
3772
+ align-items: center;
3773
+ gap: 8px;
3774
+ }
3775
+ .rpc_key_val_editor_checkbox {
3776
+ cursor: pointer;
3777
+ }
3778
+ .rpc_key_val_editor_input {
3779
+ flex: 1;
3780
+ padding: 6px 10px;
3781
+ border: 1px solid #d9d9d9;
3782
+ border-radius: 6px;
3783
+ font-size: 13px;
3784
+ color: #262626;
3785
+ outline: none;
3786
+ transition: all 0.15s;
3787
+ }
3788
+ .rpc_key_val_editor_input:focus {
3789
+ border-color: #1677ff;
3790
+ box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
3791
+ }
3792
+ .rpc_key_val_editor_input:disabled {
3793
+ background: #f5f5f5;
3794
+ color: #bfbfbf;
3795
+ }
3796
+ .rpc_key_val_editor_btn_icon {
3797
+ background: none;
3798
+ border: none;
3799
+ color: #8c8c8c;
3800
+ cursor: pointer;
3801
+ font-size: 14px;
3802
+ padding: 4px;
3803
+ display: flex;
3804
+ align-items: center;
3805
+ transition: color 0.15s;
3806
+ }
3807
+ .rpc_key_val_editor_btn_icon:hover {
3808
+ color: #ff4d4f;
3809
+ }
3810
+ .rpc_key_val_editor_footer {
3811
+ display: flex;
3812
+ align-items: center;
3813
+ justify-content: space-between;
3814
+ margin-top: 4px;
3815
+ }
3816
+ .rpc_key_val_editor_add_btn {
3817
+ display: inline-flex;
3818
+ align-items: center;
3819
+ gap: 4px;
3820
+ padding: 4px 12px;
3821
+ border: 1px dashed #d9d9d9;
3822
+ border-radius: 6px;
3823
+ background: #ffffff;
3824
+ color: #595959;
3825
+ font-size: 12px;
3826
+ cursor: pointer;
3827
+ transition: all 0.15s;
3828
+ }
3829
+ .rpc_key_val_editor_add_btn:hover {
3830
+ border-color: #1677ff;
3831
+ color: #1677ff;
3832
+ }
3833
+
3834
+ /* QuickDateRange/index.less */
3835
+ .rpc_quick_date_range {
3836
+ display: inline-flex;
3837
+ align-items: center;
3838
+ gap: 6px;
3839
+ flex-wrap: wrap;
3840
+ user-select: none;
3841
+ box-sizing: border-box;
3842
+ }
3843
+ .rpc_quick_date_range_pill {
3844
+ padding: 3px 10px;
3845
+ border-radius: 14px;
3846
+ background: #f5f5f5;
3847
+ border: 1px solid #e8e8e8;
3848
+ font-size: 12px;
3849
+ color: #595959;
3850
+ cursor: pointer;
3851
+ transition: all 0.15s ease;
3852
+ }
3853
+ .rpc_quick_date_range_pill:hover {
3854
+ color: #1677ff;
3855
+ border-color: #91caff;
3856
+ }
3857
+ .rpc_quick_date_range_pill_active {
3858
+ background: #e6f4ff;
3859
+ border-color: #1677ff;
3860
+ color: #1677ff;
3861
+ font-weight: 500;
3862
+ }
3863
+
3864
+ /* PhotoViewer/index.less */
3865
+ .rpc_photo_viewer {
3866
+ display: flex;
3867
+ flex-direction: column;
3868
+ background: #0f1117;
3869
+ border: 1px solid rgba(255, 255, 255, 0.08);
3870
+ border-radius: 14px;
3871
+ overflow: hidden;
3872
+ box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
3873
+ user-select: none;
3874
+ box-sizing: border-box;
3875
+ }
3876
+ .rpc_photo_viewer_top_bar {
3877
+ display: flex;
3878
+ align-items: center;
3879
+ justify-content: space-between;
3880
+ padding: 10px 16px;
3881
+ background: rgba(255, 255, 255, 0.03);
3882
+ border-bottom: 1px solid rgba(255, 255, 255, 0.06);
3883
+ color: #ffffff;
3884
+ font-size: 13px;
3885
+ }
3886
+ .rpc_photo_viewer_top_title {
3887
+ font-weight: 500;
3888
+ color: #e6e6e6;
3889
+ overflow: hidden;
3890
+ text-overflow: ellipsis;
3891
+ white-space: nowrap;
3892
+ }
3893
+ .rpc_photo_viewer_counter {
3894
+ font-size: 12px;
3895
+ color: #8c8c8c;
3896
+ font-family: monospace;
3897
+ background: rgba(255, 255, 255, 0.08);
3898
+ padding: 2px 8px;
3899
+ border-radius: 10px;
3900
+ }
3901
+ .rpc_photo_viewer_main_wrap {
3902
+ position: relative;
3903
+ width: 100%;
3904
+ height: 380px;
3905
+ display: flex;
3906
+ align-items: center;
3907
+ justify-content: center;
3908
+ background:
3909
+ radial-gradient(
3910
+ circle at center,
3911
+ #1a1d26 0%,
3912
+ #0b0c10 100%);
3913
+ overflow: hidden;
3914
+ }
3915
+ .rpc_photo_viewer_main_img {
3916
+ max-width: 92%;
3917
+ max-height: 90%;
3918
+ object-fit: contain;
3919
+ border-radius: 8px;
3920
+ box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
3921
+ transition: opacity 0.25s ease, transform 0.25s ease;
3922
+ }
3923
+ .rpc_photo_viewer_nav_btn {
3924
+ position: absolute;
3925
+ top: 50%;
3926
+ transform: translateY(-50%);
3927
+ width: 42px;
3928
+ height: 42px;
3929
+ border-radius: 50%;
3930
+ background: rgba(255, 255, 255, 0.12);
3931
+ backdrop-filter: blur(10px);
3932
+ -webkit-backdrop-filter: blur(10px);
3933
+ border: 1px solid rgba(255, 255, 255, 0.15);
3934
+ color: #ffffff;
3935
+ font-size: 20px;
3936
+ cursor: pointer;
3937
+ display: flex;
3938
+ align-items: center;
3939
+ justify-content: center;
3940
+ transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
3941
+ z-index: 10;
3942
+ }
3943
+ .rpc_photo_viewer_nav_btn:hover {
3944
+ background: rgba(255, 255, 255, 0.25);
3945
+ transform: translateY(-50%) scale(1.08);
3946
+ box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
3947
+ }
3948
+ .rpc_photo_viewer_nav_btn_prev {
3949
+ left: 16px;
3950
+ }
3951
+ .rpc_photo_viewer_nav_btn_next {
3952
+ right: 16px;
3953
+ }
3954
+ .rpc_photo_viewer_thumbs_wrap {
3955
+ display: flex;
3956
+ align-items: center;
3957
+ justify-content: center;
3958
+ gap: 10px;
3959
+ padding: 12px 18px;
3960
+ background: #090a0d;
3961
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
3962
+ overflow-x: auto;
3963
+ }
3964
+ .rpc_photo_viewer_thumb {
3965
+ width: 68px;
3966
+ height: 44px;
3967
+ border-radius: 6px;
3968
+ overflow: hidden;
3969
+ cursor: pointer;
3970
+ opacity: 0.38;
3971
+ border: 2px solid transparent;
3972
+ transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
3973
+ flex-shrink: 0;
3974
+ background: #14161f;
3975
+ }
3976
+ .rpc_photo_viewer_thumb img {
3977
+ width: 100%;
3978
+ height: 100%;
3979
+ object-fit: cover;
3980
+ display: block;
3981
+ }
3982
+ .rpc_photo_viewer_thumb:hover {
3983
+ opacity: 0.75;
3984
+ transform: translateY(-2px);
3985
+ }
3986
+ .rpc_photo_viewer_thumb_active {
3987
+ opacity: 1 !important;
3988
+ border-color: #1677ff;
3989
+ transform: translateY(-2px);
3990
+ box-shadow: 0 0 12px rgba(22, 119, 255, 0.6);
3991
+ }
3992
+
3993
+ /* TrendIndicator/index.less */
3994
+ .rpc_trend_indicator {
3995
+ display: inline-flex;
3996
+ align-items: center;
3997
+ gap: 3px;
3998
+ font-size: 12px;
3999
+ font-weight: 600;
4000
+ user-select: none;
4001
+ box-sizing: border-box;
4002
+ }
4003
+ .rpc_trend_indicator_filled {
4004
+ padding: 2px 6px;
4005
+ border-radius: 4px;
4006
+ }
4007
+ .rpc_trend_indicator_outlined {
4008
+ padding: 1px 5px;
4009
+ border-radius: 4px;
4010
+ border: 1px solid currentColor;
4011
+ }
4012
+ .rpc_trend_indicator_up {
4013
+ color: #52c41a;
4014
+ }
4015
+ .rpc_trend_indicator_up.rpc_trend_indicator_filled {
4016
+ background: rgba(82, 196, 26, 0.12);
4017
+ }
4018
+ .rpc_trend_indicator_down {
4019
+ color: #ff4d4f;
4020
+ }
4021
+ .rpc_trend_indicator_down.rpc_trend_indicator_filled {
4022
+ background: rgba(255, 77, 79, 0.12);
4023
+ }
4024
+ .rpc_trend_indicator_flat {
4025
+ color: #8c8c8c;
4026
+ }
4027
+ .rpc_trend_indicator_flat.rpc_trend_indicator_filled {
4028
+ background: rgba(0, 0, 0, 0.05);
4029
+ }
4030
+ .rpc_trend_indicator_arrow {
4031
+ font-size: 11px;
4032
+ line-height: 1;
4033
+ }
4034
+
4035
+ /* SegmentedProgress/index.less */
4036
+ .rpc_seg_progress {
4037
+ display: flex;
4038
+ flex-direction: column;
4039
+ gap: 8px;
4040
+ box-sizing: border-box;
4041
+ user-select: none;
4042
+ }
4043
+ .rpc_seg_progress_bar {
4044
+ width: 100%;
4045
+ border-radius: 6px;
4046
+ background: #f0f0f0;
4047
+ overflow: hidden;
4048
+ display: flex;
4049
+ }
4050
+ .rpc_seg_progress_segment {
4051
+ height: 100%;
4052
+ transition: width 0.3s ease;
4053
+ cursor: pointer;
4054
+ }
4055
+ .rpc_seg_progress_segment:hover {
4056
+ filter: brightness(1.1);
4057
+ }
4058
+ .rpc_seg_progress_legend {
4059
+ display: flex;
4060
+ flex-wrap: wrap;
4061
+ align-items: center;
4062
+ gap: 16px;
4063
+ font-size: 12px;
4064
+ color: #595959;
4065
+ }
4066
+ .rpc_seg_progress_legend_item {
4067
+ display: flex;
4068
+ align-items: center;
4069
+ gap: 6px;
4070
+ }
4071
+ .rpc_seg_progress_dot {
4072
+ width: 8px;
4073
+ height: 8px;
4074
+ border-radius: 50%;
4075
+ }
4076
+
4077
+ /* HoverCard/index.less */
4078
+ .rpc_hover_card {
4079
+ position: relative;
4080
+ display: inline-block;
4081
+ box-sizing: border-box;
4082
+ }
4083
+ .rpc_hover_card_popover {
4084
+ position: absolute;
4085
+ top: 100%;
4086
+ left: 0;
4087
+ margin-top: 8px;
4088
+ width: 280px;
4089
+ background: #ffffff;
4090
+ border-radius: 10px;
4091
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
4092
+ border: 1px solid #f0f0f0;
4093
+ padding: 14px;
4094
+ z-index: 1000;
4095
+ animation: rpcHoverCardFade 0.18s cubic-bezier(0.25, 1, 0.5, 1);
4096
+ }
4097
+ @keyframes rpcHoverCardFade {
4098
+ from {
4099
+ opacity: 0;
4100
+ transform: translateY(6px);
4101
+ }
4102
+ to {
4103
+ opacity: 1;
4104
+ transform: translateY(0);
4105
+ }
4106
+ }
4107
+
4108
+ /* TreeTransfer/index.less */
4109
+ .rpc_tree_transfer {
4110
+ display: flex;
4111
+ align-items: center;
4112
+ gap: 16px;
4113
+ box-sizing: border-box;
4114
+ user-select: none;
4115
+ }
4116
+ .rpc_tree_transfer_panel {
4117
+ width: 240px;
4118
+ height: 300px;
4119
+ border: 1px solid #d9d9d9;
4120
+ border-radius: 8px;
4121
+ background: #ffffff;
4122
+ display: flex;
4123
+ flex-direction: column;
4124
+ overflow: hidden;
4125
+ }
4126
+ .rpc_tree_transfer_header {
4127
+ padding: 8px 12px;
4128
+ border-bottom: 1px solid #f0f0f0;
4129
+ font-size: 13px;
4130
+ font-weight: 600;
4131
+ color: #262626;
4132
+ display: flex;
4133
+ align-items: center;
4134
+ justify-content: space-between;
4135
+ background: #fafafa;
4136
+ }
4137
+ .rpc_tree_transfer_body {
4138
+ flex: 1;
4139
+ overflow-y: auto;
4140
+ padding: 8px 12px;
4141
+ display: flex;
4142
+ flex-direction: column;
4143
+ gap: 6px;
4144
+ font-size: 13px;
4145
+ }
4146
+ .rpc_tree_transfer_tree_item {
4147
+ display: flex;
4148
+ align-items: center;
4149
+ gap: 6px;
4150
+ }
4151
+ .rpc_tree_transfer_tree_child {
4152
+ padding-left: 18px;
4153
+ }
4154
+ .rpc_tree_transfer_target_item {
4155
+ display: flex;
4156
+ align-items: center;
4157
+ justify-content: space-between;
4158
+ padding: 4px 6px;
4159
+ border-radius: 4px;
4160
+ }
4161
+ .rpc_tree_transfer_target_item:hover {
4162
+ background: #fafafa;
4163
+ }
4164
+ .rpc_tree_transfer_del_btn {
4165
+ background: none;
4166
+ border: none;
4167
+ color: #8c8c8c;
4168
+ cursor: pointer;
4169
+ font-size: 12px;
4170
+ }
4171
+ .rpc_tree_transfer_del_btn:hover {
4172
+ color: #ff4d4f;
4173
+ }
4174
+
4175
+ /* NumberStepper/index.less */
4176
+ .rpc_num_stepper {
4177
+ display: inline-flex;
4178
+ align-items: center;
4179
+ border: 1px solid #d9d9d9;
4180
+ border-radius: 6px;
4181
+ background: #ffffff;
4182
+ overflow: hidden;
4183
+ user-select: none;
4184
+ box-sizing: border-box;
4185
+ }
4186
+ .rpc_num_stepper_btn {
4187
+ width: 32px;
4188
+ height: 32px;
4189
+ border: none;
4190
+ background: #fafafa;
4191
+ color: #595959;
4192
+ font-size: 16px;
4193
+ cursor: pointer;
4194
+ display: flex;
4195
+ align-items: center;
4196
+ justify-content: center;
4197
+ transition: all 0.15s;
4198
+ }
4199
+ .rpc_num_stepper_btn:hover:not(:disabled) {
4200
+ background: #f0f0f0;
4201
+ color: #1677ff;
4202
+ }
4203
+ .rpc_num_stepper_btn:disabled {
4204
+ color: #bfbfbf;
4205
+ cursor: not-allowed;
4206
+ }
4207
+ .rpc_num_stepper_input {
4208
+ width: 48px;
4209
+ height: 32px;
4210
+ border: none;
4211
+ border-left: 1px solid #f0f0f0;
4212
+ border-right: 1px solid #f0f0f0;
4213
+ text-align: center;
4214
+ font-size: 13px;
4215
+ font-weight: 600;
4216
+ color: #262626;
4217
+ outline: none;
4218
+ }
4219
+
4220
+ /* JsonTree/index.less */
4221
+ .rpc_json_tree {
4222
+ font-family: monospace;
4223
+ font-size: 13px;
4224
+ line-height: 1.6;
4225
+ background: #1e1e1e;
4226
+ color: #d4d4d4;
4227
+ padding: 12px 16px;
4228
+ border-radius: 8px;
4229
+ overflow-x: auto;
4230
+ box-sizing: border-box;
4231
+ user-select: text;
4232
+ }
4233
+ .rpc_json_tree_node {
4234
+ margin-left: 14px;
4235
+ }
4236
+ .rpc_json_tree_toggle {
4237
+ cursor: pointer;
4238
+ display: inline-block;
4239
+ width: 14px;
4240
+ color: #858585;
4241
+ user-select: none;
4242
+ transition: transform 0.15s;
4243
+ }
4244
+ .rpc_json_tree_toggle_collapsed {
4245
+ transform: rotate(-90deg);
4246
+ }
4247
+ .rpc_json_tree_key {
4248
+ color: #9cdcfe;
4249
+ font-weight: 500;
4250
+ }
4251
+ .rpc_json_tree_colon {
4252
+ color: #d4d4d4;
4253
+ margin-right: 6px;
4254
+ }
4255
+ .rpc_json_tree_string {
4256
+ color: #ce9178;
4257
+ }
4258
+ .rpc_json_tree_number {
4259
+ color: #b5cea8;
4260
+ }
4261
+ .rpc_json_tree_boolean {
4262
+ color: #569cd6;
4263
+ font-weight: 600;
4264
+ }
4265
+ .rpc_json_tree_null {
4266
+ color: #808080;
4267
+ font-style: italic;
4268
+ }
4269
+ .rpc_json_tree_bracket {
4270
+ color: #d4d4d4;
4271
+ }
4272
+ .rpc_json_tree_count {
4273
+ color: #6a9955;
4274
+ font-size: 11px;
4275
+ margin-left: 6px;
4276
+ }
4277
+
4278
+ /* CodeSnippet/index.less */
4279
+ .rpc_code_snippet {
4280
+ background: #141414;
4281
+ border-radius: 8px;
4282
+ border: 1px solid #303030;
4283
+ overflow: hidden;
4284
+ font-family: monospace;
4285
+ font-size: 13px;
4286
+ box-sizing: border-box;
4287
+ user-select: text;
4288
+ }
4289
+ .rpc_code_snippet_top_bar {
4290
+ display: flex;
4291
+ align-items: center;
4292
+ justify-content: space-between;
4293
+ padding: 8px 12px;
4294
+ background: #1f1f1f;
4295
+ border-bottom: 1px solid #303030;
4296
+ user-select: none;
4297
+ }
4298
+ .rpc_code_snippet_dots {
4299
+ display: flex;
4300
+ gap: 6px;
4301
+ }
4302
+ .rpc_code_snippet_dot {
4303
+ width: 10px;
4304
+ height: 10px;
4305
+ border-radius: 50%;
4306
+ }
4307
+ .rpc_code_snippet_dot_red {
4308
+ background: #ff5f56;
4309
+ }
4310
+ .rpc_code_snippet_dot_yellow {
4311
+ background: #ffbd2e;
4312
+ }
4313
+ .rpc_code_snippet_dot_green {
4314
+ background: #27c93f;
4315
+ }
4316
+ .rpc_code_snippet_lang {
4317
+ font-size: 11px;
4318
+ color: #8c8c8c;
4319
+ text-transform: uppercase;
4320
+ font-weight: 600;
4321
+ }
4322
+ .rpc_code_snippet_copy_btn {
4323
+ background: none;
4324
+ border: none;
4325
+ color: #8c8c8c;
4326
+ cursor: pointer;
4327
+ font-size: 12px;
4328
+ transition: color 0.15s;
4329
+ }
4330
+ .rpc_code_snippet_copy_btn:hover {
4331
+ color: #ffffff;
4332
+ }
4333
+ .rpc_code_snippet_content {
4334
+ padding: 12px 16px;
4335
+ overflow-x: auto;
4336
+ color: #e6e6e6;
4337
+ line-height: 1.5;
4338
+ margin: 0;
4339
+ }
4340
+
4341
+ /* MiniSparkline/index.less */
4342
+ .rpc_mini_sparkline {
4343
+ display: inline-block;
4344
+ vertical-align: middle;
4345
+ user-select: none;
4346
+ box-sizing: border-box;
4347
+ }
4348
+ .rpc_mini_sparkline svg {
4349
+ display: block;
4350
+ }
4351
+
4352
+ /* FileDropZone/index.less */
4353
+ .rpc_file_dropzone {
4354
+ border: 2px dashed #d9d9d9;
4355
+ border-radius: 12px;
4356
+ background: #fafafa;
4357
+ padding: 32px 20px;
4358
+ text-align: center;
4359
+ cursor: pointer;
4360
+ transition: all 0.2s;
4361
+ display: flex;
4362
+ flex-direction: column;
4363
+ align-items: center;
4364
+ justify-content: center;
4365
+ gap: 8px;
4366
+ user-select: none;
4367
+ box-sizing: border-box;
4368
+ }
4369
+ .rpc_file_dropzone:hover {
4370
+ border-color: #1677ff;
4371
+ background: #f0f7ff;
4372
+ }
4373
+ .rpc_file_dropzone_active {
4374
+ border-color: #1677ff;
4375
+ background: #e6f4ff;
4376
+ box-shadow: 0 0 16px rgba(22, 119, 255, 0.2);
4377
+ }
4378
+ .rpc_file_dropzone_icon {
4379
+ font-size: 36px;
4380
+ }
4381
+ .rpc_file_dropzone_title {
4382
+ font-size: 14px;
4383
+ font-weight: 600;
4384
+ color: #262626;
4385
+ }
4386
+ .rpc_file_dropzone_hint {
4387
+ font-size: 12px;
4388
+ color: #8c8c8c;
4389
+ }
4390
+
4391
+ /* CascadeDrawer/index.less */
4392
+ .rpc_cascade_drawer {
4393
+ position: fixed;
4394
+ top: 0;
4395
+ left: 0;
4396
+ right: 0;
4397
+ bottom: 0;
4398
+ z-index: 1000;
4399
+ box-sizing: border-box;
4400
+ }
4401
+ .rpc_cascade_drawer_mask {
4402
+ position: absolute;
4403
+ top: 0;
4404
+ left: 0;
4405
+ right: 0;
4406
+ bottom: 0;
4407
+ background: rgba(0, 0, 0, 0.45);
4408
+ }
4409
+ .rpc_cascade_drawer_content {
4410
+ position: absolute;
4411
+ top: 0;
4412
+ right: 0;
4413
+ bottom: 0;
4414
+ width: 440px;
4415
+ background: #ffffff;
4416
+ box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
4417
+ display: flex;
4418
+ flex-direction: column;
4419
+ overflow: hidden;
4420
+ }
4421
+ .rpc_cascade_drawer_header {
4422
+ padding: 14px 20px;
4423
+ border-bottom: 1px solid #f0f0f0;
4424
+ display: flex;
4425
+ align-items: center;
4426
+ justify-content: space-between;
4427
+ }
4428
+ .rpc_cascade_drawer_breadcrumbs {
4429
+ display: flex;
4430
+ align-items: center;
4431
+ gap: 6px;
4432
+ font-size: 14px;
4433
+ font-weight: 600;
4434
+ color: #262626;
4435
+ }
4436
+ .rpc_cascade_drawer_crumb_btn {
4437
+ background: none;
4438
+ border: none;
4439
+ color: #1677ff;
4440
+ cursor: pointer;
4441
+ font-size: inherit;
4442
+ font-weight: inherit;
4443
+ padding: 0;
4444
+ }
4445
+ .rpc_cascade_drawer_crumb_btn:hover {
4446
+ text-decoration: underline;
4447
+ }
4448
+ .rpc_cascade_drawer_close_btn {
4449
+ background: none;
4450
+ border: none;
4451
+ color: #8c8c8c;
4452
+ cursor: pointer;
4453
+ font-size: 16px;
4454
+ }
4455
+ .rpc_cascade_drawer_close_btn:hover {
4456
+ color: #262626;
4457
+ }
4458
+ .rpc_cascade_drawer_body {
4459
+ flex: 1;
4460
+ overflow-y: auto;
4461
+ padding: 20px;
4462
+ }
4463
+
4464
+ /* DualRangeSlider/index.less */
4465
+ .rpc_dual_slider {
4466
+ position: relative;
4467
+ width: 100%;
4468
+ padding: 10px 0;
4469
+ box-sizing: border-box;
4470
+ user-select: none;
4471
+ }
4472
+ .rpc_dual_slider_track {
4473
+ position: relative;
4474
+ height: 6px;
4475
+ background: #f0f0f0;
4476
+ border-radius: 3px;
4477
+ }
4478
+ .rpc_dual_slider_highlight {
4479
+ position: absolute;
4480
+ top: 0;
4481
+ height: 100%;
4482
+ background: #1677ff;
4483
+ border-radius: 3px;
4484
+ }
4485
+ .rpc_dual_slider_thumb {
4486
+ position: absolute;
4487
+ top: 50%;
4488
+ transform: translate(-50%, -50%);
4489
+ width: 16px;
4490
+ height: 16px;
4491
+ border-radius: 50%;
4492
+ background: #ffffff;
4493
+ border: 2px solid #1677ff;
4494
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
4495
+ cursor: grab;
4496
+ transition: transform 0.1s;
4497
+ }
4498
+ .rpc_dual_slider_thumb:hover {
4499
+ transform: translate(-50%, -50%) scale(1.15);
4500
+ }
4501
+ .rpc_dual_slider_thumb:active {
4502
+ cursor: grabbing;
4503
+ }
4504
+
4505
+ /* FilterChips/index.less */
4506
+ .rpc_filter_chips {
4507
+ display: flex;
4508
+ align-items: center;
4509
+ flex-wrap: wrap;
4510
+ gap: 8px;
4511
+ box-sizing: border-box;
4512
+ user-select: none;
4513
+ }
4514
+ .rpc_filter_chips_chip {
4515
+ display: inline-flex;
4516
+ align-items: center;
4517
+ gap: 6px;
4518
+ background: #f5f5f5;
4519
+ border: 1px solid #e8e8e8;
4520
+ border-radius: 16px;
4521
+ padding: 3px 10px;
4522
+ font-size: 12px;
4523
+ color: #595959;
4524
+ transition: all 0.15s;
4525
+ }
4526
+ .rpc_filter_chips_chip:hover {
4527
+ border-color: #d9d9d9;
4528
+ background: #fafafa;
4529
+ }
4530
+ .rpc_filter_chips_label {
4531
+ color: #8c8c8c;
4532
+ }
4533
+ .rpc_filter_chips_val {
4534
+ color: #262626;
4535
+ font-weight: 500;
4536
+ }
4537
+ .rpc_filter_chips_close {
4538
+ cursor: pointer;
4539
+ font-size: 11px;
4540
+ color: #8c8c8c;
4541
+ }
4542
+ .rpc_filter_chips_close:hover {
4543
+ color: #ff4d4f;
4544
+ }
4545
+ .rpc_filter_chips_clear_all {
4546
+ background: none;
4547
+ border: none;
4548
+ color: #1677ff;
4549
+ font-size: 12px;
4550
+ cursor: pointer;
4551
+ padding: 0 4px;
4552
+ }
4553
+ .rpc_filter_chips_clear_all:hover {
4554
+ text-decoration: underline;
4555
+ }
4556
+
4557
+ /* AnnouncementBar/index.less */
4558
+ .rpc_announcement_bar {
4559
+ width: 100%;
4560
+ background:
4561
+ linear-gradient(
4562
+ 90deg,
4563
+ #1677ff 0%,
4564
+ #722ed1 100%);
4565
+ color: #ffffff;
4566
+ padding: 8px 16px;
4567
+ display: flex;
4568
+ align-items: center;
4569
+ justify-content: center;
4570
+ position: relative;
4571
+ font-size: 13px;
4572
+ font-weight: 500;
4573
+ box-sizing: border-box;
4574
+ user-select: none;
4575
+ }
4576
+ .rpc_announcement_bar_content {
4577
+ display: flex;
4578
+ align-items: center;
4579
+ gap: 8px;
4580
+ }
4581
+ .rpc_announcement_bar_close {
4582
+ position: absolute;
4583
+ right: 16px;
4584
+ background: none;
4585
+ border: none;
4586
+ color: rgba(255, 255, 255, 0.8);
4587
+ cursor: pointer;
4588
+ font-size: 14px;
4589
+ }
4590
+ .rpc_announcement_bar_close:hover {
4591
+ color: #ffffff;
4592
+ }
4593
+
4594
+ /* JsonDiffViewer/index.less */
4595
+ .rpc_json_diff {
4596
+ background: #1e1e1e;
4597
+ color: #d4d4d4;
4598
+ font-family: monospace;
4599
+ font-size: 13px;
4600
+ line-height: 1.6;
4601
+ padding: 14px 18px;
4602
+ border-radius: 8px;
4603
+ overflow-x: auto;
4604
+ box-sizing: border-box;
4605
+ user-select: text;
4606
+ }
4607
+ .rpc_json_diff_row {
4608
+ display: flex;
4609
+ align-items: center;
4610
+ gap: 8px;
4611
+ padding: 2px 4px;
4612
+ border-radius: 4px;
4613
+ }
4614
+ .rpc_json_diff_row_added {
4615
+ background: rgba(82, 196, 26, 0.15);
4616
+ color: #73d13d;
4617
+ }
4618
+ .rpc_json_diff_row_removed {
4619
+ background: rgba(255, 77, 79, 0.15);
4620
+ color: #ff7875;
4621
+ text-decoration: line-through;
4622
+ }
4623
+ .rpc_json_diff_row_modified {
4624
+ background: rgba(250, 173, 20, 0.15);
4625
+ color: #ffc53d;
4626
+ }
4627
+ .rpc_json_diff_row_unchanged {
4628
+ color: #8c8c8c;
4629
+ }
4630
+ .rpc_json_diff_sign {
4631
+ width: 14px;
4632
+ font-weight: 700;
4633
+ }
4634
+ .rpc_json_diff_key {
4635
+ color: #9cdcfe;
4636
+ }
4637
+ .rpc_json_diff_arrow {
4638
+ color: #8c8c8c;
4639
+ margin: 0 4px;
4640
+ }
196
4641
  /*# sourceMappingURL=index.css.map */