@streamoid/ui 0.6.14 → 0.6.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +856 -127
- package/dist/index.d.mts +242 -18
- package/dist/index.d.ts +242 -18
- package/dist/index.js +1517 -858
- package/dist/index.mjs +1528 -852
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1305,6 +1305,7 @@
|
|
|
1305
1305
|
position: relative;
|
|
1306
1306
|
overflow: hidden;
|
|
1307
1307
|
cursor: pointer;
|
|
1308
|
+
transition: transform 0.2s ease, background 0.2s ease;
|
|
1308
1309
|
}
|
|
1309
1310
|
.ScButton_container {
|
|
1310
1311
|
display: flex;
|
|
@@ -2396,7 +2397,7 @@
|
|
|
2396
2397
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true.ScMenuOptions_variant-default,
|
|
2397
2398
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_variant-with-v:hover,
|
|
2398
2399
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true.ScMenuOptions_variant-with-v {
|
|
2399
|
-
background: var(--alias-fill-neutral-
|
|
2400
|
+
background: var(--alias-fill-neutral-neutralhover, #242424);
|
|
2400
2401
|
}
|
|
2401
2402
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_variant-error:hover,
|
|
2402
2403
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true.ScMenuOptions_variant-error {
|
|
@@ -3680,6 +3681,77 @@
|
|
|
3680
3681
|
flex: unset;
|
|
3681
3682
|
}
|
|
3682
3683
|
|
|
3684
|
+
/* src/SC-AskAgentButton/ScAskAgentButton.module.css */
|
|
3685
|
+
.ScAskAgentButton_askAgent,
|
|
3686
|
+
.ScAskAgentButton_askAgentCollapsed {
|
|
3687
|
+
display: flex;
|
|
3688
|
+
align-items: center;
|
|
3689
|
+
justify-content: center;
|
|
3690
|
+
gap: var(--spacing-md, 0.5rem);
|
|
3691
|
+
cursor: pointer;
|
|
3692
|
+
color: #f5f5f5;
|
|
3693
|
+
background:
|
|
3694
|
+
linear-gradient(
|
|
3695
|
+
135deg,
|
|
3696
|
+
rgba(217, 21, 54, 1) 0%,
|
|
3697
|
+
rgba(238, 94, 58, 1) 100%);
|
|
3698
|
+
border: 0.5px solid rgba(255, 0, 0, 0.32);
|
|
3699
|
+
border-radius: var(--radius-2xl, 0.75rem);
|
|
3700
|
+
}
|
|
3701
|
+
.ScAskAgentButton_askAgent {
|
|
3702
|
+
width: 100%;
|
|
3703
|
+
padding: var(--spacing-xl, 0.75rem);
|
|
3704
|
+
}
|
|
3705
|
+
.ScAskAgentButton_askAgentCollapsed {
|
|
3706
|
+
width: 2.5rem;
|
|
3707
|
+
height: 2.5rem;
|
|
3708
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3709
|
+
flex-shrink: 0;
|
|
3710
|
+
}
|
|
3711
|
+
.ScAskAgentButton_askAgent:hover,
|
|
3712
|
+
.ScAskAgentButton_askAgentCollapsed:hover {
|
|
3713
|
+
filter: brightness(1.08);
|
|
3714
|
+
}
|
|
3715
|
+
.ScAskAgentButton_askAgentActive {
|
|
3716
|
+
box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
|
|
3717
|
+
}
|
|
3718
|
+
.ScAskAgentButton_askAgent:focus-visible,
|
|
3719
|
+
.ScAskAgentButton_askAgentCollapsed:focus-visible {
|
|
3720
|
+
outline: 2px solid rgba(255, 255, 255, 0.9);
|
|
3721
|
+
outline-offset: 2px;
|
|
3722
|
+
}
|
|
3723
|
+
.ScAskAgentButton_askAgentLabel {
|
|
3724
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3725
|
+
font-size: 0.75rem;
|
|
3726
|
+
font-weight: 600;
|
|
3727
|
+
line-height: 1.125rem;
|
|
3728
|
+
color: #f5f5f5;
|
|
3729
|
+
white-space: nowrap;
|
|
3730
|
+
}
|
|
3731
|
+
.ScAskAgentButton_askAgentIcon {
|
|
3732
|
+
display: inline-flex;
|
|
3733
|
+
align-items: center;
|
|
3734
|
+
justify-content: center;
|
|
3735
|
+
flex-shrink: 0;
|
|
3736
|
+
color: #f5f5f5;
|
|
3737
|
+
}
|
|
3738
|
+
.ScAskAgentButton_askAgentIcon :where(svg) {
|
|
3739
|
+
width: 1.25rem;
|
|
3740
|
+
height: 1.25rem;
|
|
3741
|
+
}
|
|
3742
|
+
.ScAskAgentButton_askAgentSlot {
|
|
3743
|
+
width: 100%;
|
|
3744
|
+
flex-shrink: 0;
|
|
3745
|
+
padding: 0 var(--spacing-md, 0.5rem) var(--spacing-3xl, 1rem);
|
|
3746
|
+
}
|
|
3747
|
+
.ScAskAgentButton_askAgentSlotCollapsed {
|
|
3748
|
+
display: flex;
|
|
3749
|
+
justify-content: center;
|
|
3750
|
+
width: 100%;
|
|
3751
|
+
flex-shrink: 0;
|
|
3752
|
+
padding: var(--spacing-md, 0.5rem) 0;
|
|
3753
|
+
}
|
|
3754
|
+
|
|
3683
3755
|
/* src/SC-Artifax-Sidebar/ScArtifaxSidebar.module.css */
|
|
3684
3756
|
.ScArtifaxSidebar_scArtifaxSidebar,
|
|
3685
3757
|
.ScArtifaxSidebar_scArtifaxSidebar * {
|
|
@@ -3894,75 +3966,6 @@
|
|
|
3894
3966
|
align-items: center;
|
|
3895
3967
|
justify-content: center;
|
|
3896
3968
|
}
|
|
3897
|
-
.ScArtifaxSidebar_askAgentSlot {
|
|
3898
|
-
width: 100%;
|
|
3899
|
-
flex-shrink: 0;
|
|
3900
|
-
padding: 0 var(--spacing-md, 0.5rem) var(--spacing-3xl, 1rem);
|
|
3901
|
-
}
|
|
3902
|
-
.ScArtifaxSidebar_askAgentSlotCollapsed {
|
|
3903
|
-
display: flex;
|
|
3904
|
-
justify-content: center;
|
|
3905
|
-
width: 100%;
|
|
3906
|
-
flex-shrink: 0;
|
|
3907
|
-
padding: var(--spacing-md, 0.5rem) 0;
|
|
3908
|
-
}
|
|
3909
|
-
.ScArtifaxSidebar_askAgent,
|
|
3910
|
-
.ScArtifaxSidebar_askAgentCollapsed {
|
|
3911
|
-
display: flex;
|
|
3912
|
-
align-items: center;
|
|
3913
|
-
justify-content: center;
|
|
3914
|
-
gap: var(--spacing-md, 0.5rem);
|
|
3915
|
-
cursor: pointer;
|
|
3916
|
-
color: #f5f5f5;
|
|
3917
|
-
background:
|
|
3918
|
-
linear-gradient(
|
|
3919
|
-
135deg,
|
|
3920
|
-
rgba(217, 21, 54, 1) 0%,
|
|
3921
|
-
rgba(238, 94, 58, 1) 100%);
|
|
3922
|
-
border: 0.5px solid rgba(255, 0, 0, 0.32);
|
|
3923
|
-
border-radius: var(--radius-2xl, 0.75rem);
|
|
3924
|
-
}
|
|
3925
|
-
.ScArtifaxSidebar_askAgent {
|
|
3926
|
-
width: 100%;
|
|
3927
|
-
padding: var(--spacing-xl, 0.75rem);
|
|
3928
|
-
}
|
|
3929
|
-
.ScArtifaxSidebar_askAgentCollapsed {
|
|
3930
|
-
width: 2.5rem;
|
|
3931
|
-
height: 2.5rem;
|
|
3932
|
-
padding: var(--spacing-md, 0.5rem);
|
|
3933
|
-
flex-shrink: 0;
|
|
3934
|
-
}
|
|
3935
|
-
.ScArtifaxSidebar_askAgent:hover,
|
|
3936
|
-
.ScArtifaxSidebar_askAgentCollapsed:hover {
|
|
3937
|
-
filter: brightness(1.08);
|
|
3938
|
-
}
|
|
3939
|
-
.ScArtifaxSidebar_askAgentActive {
|
|
3940
|
-
box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
|
|
3941
|
-
}
|
|
3942
|
-
.ScArtifaxSidebar_askAgent:focus-visible,
|
|
3943
|
-
.ScArtifaxSidebar_askAgentCollapsed:focus-visible {
|
|
3944
|
-
outline: 2px solid rgba(255, 255, 255, 0.9);
|
|
3945
|
-
outline-offset: 2px;
|
|
3946
|
-
}
|
|
3947
|
-
.ScArtifaxSidebar_askAgentLabel {
|
|
3948
|
-
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3949
|
-
font-size: 0.75rem;
|
|
3950
|
-
font-weight: 600;
|
|
3951
|
-
line-height: 1.125rem;
|
|
3952
|
-
color: #f5f5f5;
|
|
3953
|
-
white-space: nowrap;
|
|
3954
|
-
}
|
|
3955
|
-
.ScArtifaxSidebar_askAgentIcon {
|
|
3956
|
-
display: inline-flex;
|
|
3957
|
-
align-items: center;
|
|
3958
|
-
justify-content: center;
|
|
3959
|
-
flex-shrink: 0;
|
|
3960
|
-
color: #f5f5f5;
|
|
3961
|
-
}
|
|
3962
|
-
.ScArtifaxSidebar_askAgentIcon :where(svg) {
|
|
3963
|
-
width: 1.25rem;
|
|
3964
|
-
height: 1.25rem;
|
|
3965
|
-
}
|
|
3966
3969
|
.ScArtifaxSidebar_footerToggle {
|
|
3967
3970
|
display: flex;
|
|
3968
3971
|
align-items: center;
|
|
@@ -5986,6 +5989,12 @@
|
|
|
5986
5989
|
flex-direction: column;
|
|
5987
5990
|
overflow: hidden;
|
|
5988
5991
|
}
|
|
5992
|
+
.ScDrawer_backdrop {
|
|
5993
|
+
position: fixed;
|
|
5994
|
+
inset: 0;
|
|
5995
|
+
background: rgba(0, 0, 0, 0.5);
|
|
5996
|
+
z-index: 9;
|
|
5997
|
+
}
|
|
5989
5998
|
|
|
5990
5999
|
/* src/SC-Tabs/ScTabs.module.css */
|
|
5991
6000
|
.ScTabs_tabs,
|
|
@@ -6350,87 +6359,592 @@
|
|
|
6350
6359
|
width: 10rem;
|
|
6351
6360
|
}
|
|
6352
6361
|
|
|
6353
|
-
/* src/SC-
|
|
6354
|
-
.
|
|
6355
|
-
.
|
|
6362
|
+
/* src/SC-DefaultCard/ScDefaultCard.module.css */
|
|
6363
|
+
.ScDefaultCard_scDefaultCard,
|
|
6364
|
+
.ScDefaultCard_scDefaultCard * {
|
|
6356
6365
|
box-sizing: border-box;
|
|
6357
6366
|
}
|
|
6358
|
-
.
|
|
6359
|
-
|
|
6367
|
+
.ScDefaultCard_scDefaultCard {
|
|
6368
|
+
background: var(--alias-surface-base, #101010);
|
|
6369
|
+
border: 0.03125rem solid var(--alias-border-subtle, #242424);
|
|
6370
|
+
border-radius: var(--radius-4xl, 1.125rem);
|
|
6371
|
+
display: flex;
|
|
6372
|
+
flex-direction: column;
|
|
6373
|
+
align-items: flex-start;
|
|
6374
|
+
width: 100%;
|
|
6375
|
+
position: relative;
|
|
6376
|
+
cursor: pointer;
|
|
6377
|
+
transition: background-color 120ms ease, border-color 120ms ease;
|
|
6378
|
+
}
|
|
6379
|
+
.ScDefaultCard_scDefaultCard:hover,
|
|
6380
|
+
.ScDefaultCard_scDefaultCard.ScDefaultCard_state-hover {
|
|
6381
|
+
background: var(--alias-surface-basesubtle, #151515);
|
|
6382
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
6383
|
+
}
|
|
6384
|
+
.ScDefaultCard_content {
|
|
6385
|
+
display: flex;
|
|
6386
|
+
flex-direction: column;
|
|
6360
6387
|
align-items: center;
|
|
6361
6388
|
justify-content: center;
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6389
|
+
gap: var(--spacing-md, 0.5rem);
|
|
6390
|
+
padding: var(--spacing-5xl, 1.25rem);
|
|
6391
|
+
width: 100%;
|
|
6392
|
+
text-align: center;
|
|
6365
6393
|
}
|
|
6366
|
-
.
|
|
6367
|
-
|
|
6368
|
-
|
|
6394
|
+
.ScDefaultCard_title {
|
|
6395
|
+
margin: 0;
|
|
6396
|
+
width: 100%;
|
|
6397
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6398
|
+
font-family: var(--text-text-md-regular-font-family, "Inter-Regular", sans-serif);
|
|
6399
|
+
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
6400
|
+
line-height: var(--text-text-md-regular-line-height, 1.5rem);
|
|
6401
|
+
font-weight: var(--text-text-md-regular-font-weight, 400);
|
|
6402
|
+
word-break: break-word;
|
|
6369
6403
|
}
|
|
6370
|
-
.
|
|
6371
|
-
|
|
6404
|
+
.ScDefaultCard_description {
|
|
6405
|
+
margin: 0;
|
|
6406
|
+
width: 100%;
|
|
6407
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6408
|
+
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
6409
|
+
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
6410
|
+
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
6411
|
+
font-weight: var(--text-text-xs-regular-font-weight, 400);
|
|
6412
|
+
word-break: break-word;
|
|
6372
6413
|
}
|
|
6373
|
-
|
|
6374
|
-
|
|
6414
|
+
|
|
6415
|
+
/* src/SC-ValueMappingL1/ScValueMappingL1.module.css */
|
|
6416
|
+
.ScValueMappingL1_scValueMappingL1,
|
|
6417
|
+
.ScValueMappingL1_scValueMappingL1 * {
|
|
6418
|
+
box-sizing: border-box;
|
|
6375
6419
|
}
|
|
6376
|
-
.
|
|
6377
|
-
|
|
6420
|
+
.ScValueMappingL1_scValueMappingL1 {
|
|
6421
|
+
background: var(--alias-surface-base, #101010);
|
|
6422
|
+
border: 0.03125rem solid var(--alias-border-subtle, #242424);
|
|
6423
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
6424
|
+
display: flex;
|
|
6425
|
+
align-items: center;
|
|
6426
|
+
width: 100%;
|
|
6427
|
+
position: relative;
|
|
6428
|
+
cursor: pointer;
|
|
6429
|
+
transition: background-color 120ms ease, border-color 120ms ease;
|
|
6378
6430
|
}
|
|
6379
|
-
.
|
|
6380
|
-
|
|
6431
|
+
.ScValueMappingL1_scValueMappingL1:hover,
|
|
6432
|
+
.ScValueMappingL1_scValueMappingL1.ScValueMappingL1_state-hover {
|
|
6433
|
+
background: var(--alias-surface-basesubtle, #151515);
|
|
6434
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
6381
6435
|
}
|
|
6382
|
-
.
|
|
6383
|
-
|
|
6436
|
+
.ScValueMappingL1_scValueMappingL1.ScValueMappingL1_state-active {
|
|
6437
|
+
background: var(--alias-surface-raisedoverlay, #313131);
|
|
6438
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
6384
6439
|
}
|
|
6385
|
-
.
|
|
6386
|
-
|
|
6387
|
-
transform-origin: center;
|
|
6388
|
-
animation: ScThinkingStepIcon_scThinkingStepIconSpin 1s linear infinite;
|
|
6440
|
+
.ScValueMappingL1_scValueMappingL1.ScValueMappingL1_updated {
|
|
6441
|
+
padding-right: var(--spacing-md, 0.5rem);
|
|
6389
6442
|
}
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6443
|
+
.ScValueMappingL1_labelWrap {
|
|
6444
|
+
display: flex;
|
|
6445
|
+
flex: 1 0 0;
|
|
6446
|
+
flex-direction: column;
|
|
6447
|
+
align-items: center;
|
|
6448
|
+
justify-content: center;
|
|
6449
|
+
min-width: 0;
|
|
6450
|
+
padding: var(--spacing-xl, 0.75rem);
|
|
6397
6451
|
}
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6452
|
+
.ScValueMappingL1_label {
|
|
6453
|
+
width: 100%;
|
|
6454
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6455
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6456
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6457
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6458
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6459
|
+
white-space: nowrap;
|
|
6460
|
+
overflow: hidden;
|
|
6461
|
+
text-overflow: ellipsis;
|
|
6462
|
+
}
|
|
6463
|
+
.ScValueMappingL1_dot {
|
|
6464
|
+
display: inline-flex;
|
|
6465
|
+
align-items: center;
|
|
6466
|
+
justify-content: center;
|
|
6467
|
+
width: 1.5rem;
|
|
6468
|
+
height: 1.5rem;
|
|
6469
|
+
flex-shrink: 0;
|
|
6470
|
+
}
|
|
6471
|
+
.ScValueMappingL1_dotInner {
|
|
6472
|
+
width: 0.5rem;
|
|
6473
|
+
height: 0.5rem;
|
|
6474
|
+
border-radius: var(--radius-full, 999px);
|
|
6475
|
+
background: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
6402
6476
|
}
|
|
6403
6477
|
|
|
6404
|
-
/* src/SC-
|
|
6405
|
-
.
|
|
6406
|
-
.
|
|
6478
|
+
/* src/SC-TaxonomyPill/ScTaxonomyPill.module.css */
|
|
6479
|
+
.ScTaxonomyPill_scTaxonomyPill,
|
|
6480
|
+
.ScTaxonomyPill_scTaxonomyPill * {
|
|
6407
6481
|
box-sizing: border-box;
|
|
6408
6482
|
}
|
|
6409
|
-
.
|
|
6410
|
-
|
|
6411
|
-
|
|
6483
|
+
.ScTaxonomyPill_scTaxonomyPill {
|
|
6484
|
+
background: var(--alias-fill-neutral-neutralactive, #313131);
|
|
6485
|
+
border: 0.03125rem solid var(--alias-border-default, #3e3e3e);
|
|
6486
|
+
border-radius: var(--radius-xl, 0.75rem);
|
|
6487
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6488
|
+
display: inline-flex;
|
|
6489
|
+
flex-direction: column;
|
|
6412
6490
|
align-items: flex-start;
|
|
6413
|
-
gap: var(--spacing-md, 8px);
|
|
6414
|
-
max-width: 600px;
|
|
6415
|
-
width: 100%;
|
|
6416
6491
|
position: relative;
|
|
6492
|
+
cursor: pointer;
|
|
6493
|
+
transition: background-color 120ms ease;
|
|
6417
6494
|
}
|
|
6418
|
-
.
|
|
6495
|
+
.ScTaxonomyPill_scTaxonomyPill:hover,
|
|
6496
|
+
.ScTaxonomyPill_scTaxonomyPill.ScTaxonomyPill_state-hover {
|
|
6497
|
+
background: var(--alias-fill-neutral-neutralhovertoactive, #2a2a2a);
|
|
6498
|
+
}
|
|
6499
|
+
.ScTaxonomyPill_inner {
|
|
6419
6500
|
display: flex;
|
|
6420
|
-
flex-direction: row;
|
|
6421
6501
|
align-items: center;
|
|
6422
|
-
justify-content:
|
|
6423
|
-
width: 20px;
|
|
6424
|
-
height: 26px;
|
|
6425
|
-
padding: var(--spacing-none, 0) 2px;
|
|
6502
|
+
justify-content: center;
|
|
6426
6503
|
flex-shrink: 0;
|
|
6427
|
-
position: relative;
|
|
6428
6504
|
}
|
|
6429
|
-
.
|
|
6430
|
-
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6505
|
+
.ScTaxonomyPill_type-pill .ScTaxonomyPill_inner {
|
|
6506
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-3xl, 1rem);
|
|
6507
|
+
}
|
|
6508
|
+
.ScTaxonomyPill_type-expand .ScTaxonomyPill_inner {
|
|
6509
|
+
gap: 0;
|
|
6510
|
+
padding: var(--spacing-xxs, 0.125rem) var(--spacing-xs, 0.25rem) var(--spacing-xxs, 0.125rem) var(--spacing-md, 0.5rem);
|
|
6511
|
+
}
|
|
6512
|
+
.ScTaxonomyPill_type-collapse .ScTaxonomyPill_inner {
|
|
6513
|
+
padding: var(--spacing-xs, 0.25rem);
|
|
6514
|
+
}
|
|
6515
|
+
.ScTaxonomyPill_label {
|
|
6516
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6517
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6518
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6519
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6520
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6521
|
+
white-space: nowrap;
|
|
6522
|
+
text-align: center;
|
|
6523
|
+
}
|
|
6524
|
+
.ScTaxonomyPill_icon {
|
|
6525
|
+
width: 0.75rem !important;
|
|
6526
|
+
height: 0.75rem !important;
|
|
6527
|
+
flex-shrink: 0;
|
|
6528
|
+
color: inherit;
|
|
6529
|
+
}
|
|
6530
|
+
|
|
6531
|
+
/* src/SC-SelectionPill/ScSelectionPill.module.css */
|
|
6532
|
+
.ScSelectionPill_scSelectionPill,
|
|
6533
|
+
.ScSelectionPill_scSelectionPill * {
|
|
6534
|
+
box-sizing: border-box;
|
|
6535
|
+
}
|
|
6536
|
+
.ScSelectionPill_scSelectionPill {
|
|
6537
|
+
display: inline-flex;
|
|
6538
|
+
align-items: center;
|
|
6539
|
+
justify-content: center;
|
|
6540
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-3xl, 1rem);
|
|
6541
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
6542
|
+
border: 0.03125rem solid var(--alias-border-subtle, #242424);
|
|
6543
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6544
|
+
cursor: pointer;
|
|
6545
|
+
position: relative;
|
|
6546
|
+
font: inherit;
|
|
6547
|
+
transition: background-color 120ms ease, border-color 120ms ease;
|
|
6548
|
+
}
|
|
6549
|
+
.ScSelectionPill_scSelectionPill:hover,
|
|
6550
|
+
.ScSelectionPill_scSelectionPill.ScSelectionPill_state-hover {
|
|
6551
|
+
background: var(--alias-fill-neutral-neutralhovertoactive, #2a2a2a);
|
|
6552
|
+
}
|
|
6553
|
+
.ScSelectionPill_scSelectionPill:focus {
|
|
6554
|
+
outline: none;
|
|
6555
|
+
}
|
|
6556
|
+
.ScSelectionPill_scSelectionPill:focus-visible {
|
|
6557
|
+
outline: 0.125rem solid var(--alias-border-focus, #1a6fff);
|
|
6558
|
+
outline-offset: 0.125rem;
|
|
6559
|
+
}
|
|
6560
|
+
.ScSelectionPill_scSelectionPill.ScSelectionPill_state-selected {
|
|
6561
|
+
background: var(--alias-fill-base-basehover, #bfbfbf);
|
|
6562
|
+
border-color: transparent;
|
|
6563
|
+
}
|
|
6564
|
+
.ScSelectionPill_label {
|
|
6565
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6566
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6567
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6568
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6569
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6570
|
+
white-space: nowrap;
|
|
6571
|
+
text-align: center;
|
|
6572
|
+
}
|
|
6573
|
+
.ScSelectionPill_scSelectionPill.ScSelectionPill_state-selected .ScSelectionPill_label {
|
|
6574
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
6575
|
+
}
|
|
6576
|
+
|
|
6577
|
+
/* src/SC-SelectionPillGroup/ScSelectionPillGroup.module.css */
|
|
6578
|
+
.ScSelectionPillGroup_scSelectionPillGroup,
|
|
6579
|
+
.ScSelectionPillGroup_scSelectionPillGroup * {
|
|
6580
|
+
box-sizing: border-box;
|
|
6581
|
+
}
|
|
6582
|
+
.ScSelectionPillGroup_scSelectionPillGroup {
|
|
6583
|
+
display: flex;
|
|
6584
|
+
flex-wrap: wrap;
|
|
6585
|
+
align-items: center;
|
|
6586
|
+
gap: var(--spacing-md, 0.5rem);
|
|
6587
|
+
position: relative;
|
|
6588
|
+
width: 100%;
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6591
|
+
/* src/SC-MappingCard/ScMappingCard.module.css */
|
|
6592
|
+
.ScMappingCard_scMappingCard,
|
|
6593
|
+
.ScMappingCard_scMappingCard * {
|
|
6594
|
+
box-sizing: border-box;
|
|
6595
|
+
}
|
|
6596
|
+
.ScMappingCard_scMappingCard {
|
|
6597
|
+
display: flex;
|
|
6598
|
+
align-items: flex-start;
|
|
6599
|
+
width: 100%;
|
|
6600
|
+
flex-shrink: 0;
|
|
6601
|
+
position: relative;
|
|
6602
|
+
background: var(--alias-surface-base, #101010);
|
|
6603
|
+
border: 0.5px solid var(--alias-border-default, #3e3e3e);
|
|
6604
|
+
border-radius: var(--radius-3xl, 16px);
|
|
6605
|
+
overflow: hidden;
|
|
6606
|
+
}
|
|
6607
|
+
.ScMappingCard_scMappingCard.ScMappingCard_status-confirmed {
|
|
6608
|
+
border: 1px solid var(--alias-border-success, #007d48);
|
|
6609
|
+
}
|
|
6610
|
+
.ScMappingCard_scMappingCard.ScMappingCard_status-ignored {
|
|
6611
|
+
border: 1px solid var(--alias-border-error, #8f1414);
|
|
6612
|
+
}
|
|
6613
|
+
.ScMappingCard_badge {
|
|
6614
|
+
flex: 0 0 3rem;
|
|
6615
|
+
width: 3rem;
|
|
6616
|
+
display: flex;
|
|
6617
|
+
align-items: center;
|
|
6618
|
+
justify-content: center;
|
|
6619
|
+
align-self: stretch;
|
|
6620
|
+
background: var(--alias-surface-subtle, #1a1a1a);
|
|
6621
|
+
}
|
|
6622
|
+
.ScMappingCard_badgeLetter {
|
|
6623
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6624
|
+
font-family: var(--text-text-md-medium-font-family, "Inter-Medium", sans-serif);
|
|
6625
|
+
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
6626
|
+
line-height: var(--text-text-md-medium-line-height, 1.5rem);
|
|
6627
|
+
font-weight: var(--text-text-md-medium-font-weight, 500);
|
|
6628
|
+
text-transform: uppercase;
|
|
6629
|
+
}
|
|
6630
|
+
.ScMappingCard_status-confirmed .ScMappingCard_badgeLetter {
|
|
6631
|
+
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6632
|
+
}
|
|
6633
|
+
.ScMappingCard_status-ignored .ScMappingCard_badgeLetter {
|
|
6634
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6635
|
+
}
|
|
6636
|
+
.ScMappingCard_content {
|
|
6637
|
+
display: flex;
|
|
6638
|
+
flex: 1 1 auto;
|
|
6639
|
+
align-items: flex-start;
|
|
6640
|
+
gap: var(--spacing-6xl, 24px);
|
|
6641
|
+
padding: var(--spacing-6xl, 24px);
|
|
6642
|
+
min-width: 0;
|
|
6643
|
+
}
|
|
6644
|
+
.ScMappingCard_source {
|
|
6645
|
+
flex: 1 1 0;
|
|
6646
|
+
min-width: 0;
|
|
6647
|
+
}
|
|
6648
|
+
.ScMappingCard_sourceCard {
|
|
6649
|
+
display: flex;
|
|
6650
|
+
flex-direction: column;
|
|
6651
|
+
align-self: stretch;
|
|
6652
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6653
|
+
border-radius: var(--radius-3xl, 16px);
|
|
6654
|
+
overflow: hidden;
|
|
6655
|
+
box-shadow: var(--alias-shadow-sm);
|
|
6656
|
+
}
|
|
6657
|
+
.ScMappingCard_sourceCard .ScMappingCard_sourceHeader {
|
|
6658
|
+
min-height: 3rem;
|
|
6659
|
+
padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
|
|
6660
|
+
background: var(--alias-surface-raised, #242424);
|
|
6661
|
+
border-radius: var(--radius-3xl, 16px);
|
|
6662
|
+
}
|
|
6663
|
+
.ScMappingCard_sourceCard .ScMappingCard_sampleRows {
|
|
6664
|
+
padding: var(--spacing-3xl, 16px);
|
|
6665
|
+
}
|
|
6666
|
+
.ScMappingCard_sourceHeader {
|
|
6667
|
+
display: flex;
|
|
6668
|
+
align-items: center;
|
|
6669
|
+
gap: var(--spacing-3xl, 16px);
|
|
6670
|
+
width: 100%;
|
|
6671
|
+
min-width: 0;
|
|
6672
|
+
}
|
|
6673
|
+
.ScMappingCard_columnName {
|
|
6674
|
+
flex: 1 1 auto;
|
|
6675
|
+
min-width: 0;
|
|
6676
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6677
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6678
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6679
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6680
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6681
|
+
white-space: nowrap;
|
|
6682
|
+
overflow: hidden;
|
|
6683
|
+
text-overflow: ellipsis;
|
|
6684
|
+
}
|
|
6685
|
+
.ScMappingCard_addBtn {
|
|
6686
|
+
flex: 0 0 auto;
|
|
6687
|
+
display: inline-flex;
|
|
6688
|
+
align-items: center;
|
|
6689
|
+
justify-content: center;
|
|
6690
|
+
width: 1.5rem;
|
|
6691
|
+
height: 1.5rem;
|
|
6692
|
+
padding: 0;
|
|
6693
|
+
margin: 0;
|
|
6694
|
+
border: none;
|
|
6695
|
+
background: transparent;
|
|
6696
|
+
cursor: pointer;
|
|
6697
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6698
|
+
}
|
|
6699
|
+
.ScMappingCard_sampleRows {
|
|
6700
|
+
display: flex;
|
|
6701
|
+
flex-direction: column;
|
|
6702
|
+
gap: var(--spacing-3xl, 16px);
|
|
6703
|
+
min-width: 0;
|
|
6704
|
+
}
|
|
6705
|
+
.ScMappingCard_sampleRow {
|
|
6706
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6707
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6708
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6709
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6710
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6711
|
+
white-space: nowrap;
|
|
6712
|
+
overflow: hidden;
|
|
6713
|
+
text-overflow: ellipsis;
|
|
6714
|
+
}
|
|
6715
|
+
.ScMappingCard_sourceCollapsed {
|
|
6716
|
+
display: flex;
|
|
6717
|
+
align-items: center;
|
|
6718
|
+
min-height: 3rem;
|
|
6719
|
+
padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
|
|
6720
|
+
background: var(--alias-surface-raised, #242424);
|
|
6721
|
+
border-radius: var(--radius-3xl, 16px);
|
|
6722
|
+
box-shadow: var(--alias-shadow-sm);
|
|
6723
|
+
}
|
|
6724
|
+
.ScMappingCard_status-ignored .ScMappingCard_sourceCollapsed .ScMappingCard_columnName {
|
|
6725
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6726
|
+
}
|
|
6727
|
+
.ScMappingCard_targetRegion {
|
|
6728
|
+
display: flex;
|
|
6729
|
+
flex-direction: column;
|
|
6730
|
+
gap: var(--spacing-md, 8px);
|
|
6731
|
+
flex: 1 1 0;
|
|
6732
|
+
min-width: 0;
|
|
6733
|
+
align-self: flex-start;
|
|
6734
|
+
}
|
|
6735
|
+
.ScMappingCard_targetRow {
|
|
6736
|
+
display: flex;
|
|
6737
|
+
align-items: center;
|
|
6738
|
+
gap: var(--spacing-3xl, 16px);
|
|
6739
|
+
min-width: 0;
|
|
6740
|
+
}
|
|
6741
|
+
.ScMappingCard_connector {
|
|
6742
|
+
flex: 0 0 auto;
|
|
6743
|
+
width: 24px;
|
|
6744
|
+
height: 24px;
|
|
6745
|
+
display: inline-flex;
|
|
6746
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6747
|
+
}
|
|
6748
|
+
.ScMappingCard_targetBox {
|
|
6749
|
+
flex: 1 1 auto;
|
|
6750
|
+
min-width: 0;
|
|
6751
|
+
min-height: 3rem;
|
|
6752
|
+
display: flex;
|
|
6753
|
+
align-items: center;
|
|
6754
|
+
padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
|
|
6755
|
+
background: var(--alias-surface-raised, #242424);
|
|
6756
|
+
border-radius: var(--radius-3xl, 16px);
|
|
6757
|
+
box-shadow: var(--alias-shadow-sm);
|
|
6758
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6759
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6760
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6761
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6762
|
+
white-space: nowrap;
|
|
6763
|
+
overflow: hidden;
|
|
6764
|
+
text-overflow: ellipsis;
|
|
6765
|
+
}
|
|
6766
|
+
.ScMappingCard_targetBoxDash {
|
|
6767
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6768
|
+
}
|
|
6769
|
+
.ScMappingCard_warning {
|
|
6770
|
+
display: flex;
|
|
6771
|
+
align-items: flex-start;
|
|
6772
|
+
gap: var(--spacing-sm, 6px);
|
|
6773
|
+
min-width: 0;
|
|
6774
|
+
padding-left: 40px;
|
|
6775
|
+
}
|
|
6776
|
+
.ScMappingCard_warningIcon {
|
|
6777
|
+
flex: 0 0 auto;
|
|
6778
|
+
width: 20px;
|
|
6779
|
+
height: 20px;
|
|
6780
|
+
display: inline-flex;
|
|
6781
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6782
|
+
}
|
|
6783
|
+
.ScMappingCard_warningText {
|
|
6784
|
+
min-width: 0;
|
|
6785
|
+
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
6786
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6787
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6788
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6789
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6790
|
+
}
|
|
6791
|
+
.ScMappingCard_actions {
|
|
6792
|
+
flex: 0 0 336px;
|
|
6793
|
+
width: 336px;
|
|
6794
|
+
display: flex;
|
|
6795
|
+
flex-direction: column;
|
|
6796
|
+
align-items: flex-start;
|
|
6797
|
+
gap: var(--spacing-3xl, 16px);
|
|
6798
|
+
align-self: flex-start;
|
|
6799
|
+
}
|
|
6800
|
+
.ScMappingCard_actionRow {
|
|
6801
|
+
display: flex;
|
|
6802
|
+
align-items: center;
|
|
6803
|
+
gap: var(--spacing-3xl, 16px);
|
|
6804
|
+
width: 100%;
|
|
6805
|
+
}
|
|
6806
|
+
.ScMappingCard_btn {
|
|
6807
|
+
display: inline-flex;
|
|
6808
|
+
align-items: center;
|
|
6809
|
+
justify-content: center;
|
|
6810
|
+
gap: var(--spacing-sm, 6px);
|
|
6811
|
+
height: 3rem;
|
|
6812
|
+
padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
|
|
6813
|
+
border-radius: var(--radius-xl, 12px);
|
|
6814
|
+
font-family: var(--text-text-md-medium-font-family, "Inter-Medium", sans-serif);
|
|
6815
|
+
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
6816
|
+
line-height: var(--text-text-md-medium-line-height, 1.5rem);
|
|
6817
|
+
font-weight: var(--text-text-md-medium-font-weight, 500);
|
|
6818
|
+
white-space: nowrap;
|
|
6819
|
+
cursor: pointer;
|
|
6820
|
+
border: 1px solid transparent;
|
|
6821
|
+
}
|
|
6822
|
+
.ScMappingCard_ignoreBtn {
|
|
6823
|
+
background: transparent;
|
|
6824
|
+
border: 1.25px solid var(--alias-border-default, #3e3e3e);
|
|
6825
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6826
|
+
}
|
|
6827
|
+
.ScMappingCard_whiteBtn {
|
|
6828
|
+
background: var(--alias-fill-base-base, #f5f5f5);
|
|
6829
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
6830
|
+
}
|
|
6831
|
+
.ScMappingCard_confirmBtn {
|
|
6832
|
+
flex: 1 1 auto;
|
|
6833
|
+
}
|
|
6834
|
+
.ScMappingCard_statusLabel {
|
|
6835
|
+
flex: 1 1 auto;
|
|
6836
|
+
display: inline-flex;
|
|
6837
|
+
align-items: center;
|
|
6838
|
+
gap: var(--spacing-md, 8px);
|
|
6839
|
+
white-space: nowrap;
|
|
6840
|
+
font-family: var(--text-text-sm-medium-font-family, "Inter-Medium", sans-serif);
|
|
6841
|
+
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
6842
|
+
line-height: var(--text-text-sm-medium-line-height, 1.25rem);
|
|
6843
|
+
font-weight: var(--text-text-sm-medium-font-weight, 500);
|
|
6844
|
+
}
|
|
6845
|
+
.ScMappingCard_statusIcon {
|
|
6846
|
+
flex: 0 0 auto;
|
|
6847
|
+
width: 24px;
|
|
6848
|
+
height: 24px;
|
|
6849
|
+
display: inline-flex;
|
|
6850
|
+
}
|
|
6851
|
+
.ScMappingCard_statusSuccess {
|
|
6852
|
+
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6853
|
+
}
|
|
6854
|
+
.ScMappingCard_statusError {
|
|
6855
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6856
|
+
}
|
|
6857
|
+
.ScMappingCard_validityText {
|
|
6858
|
+
width: 100%;
|
|
6859
|
+
text-align: left;
|
|
6860
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6861
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6862
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6863
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6864
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6865
|
+
}
|
|
6866
|
+
|
|
6867
|
+
/* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
|
|
6868
|
+
.ScThinkingStepIcon_scThinkingStepIcon,
|
|
6869
|
+
.ScThinkingStepIcon_scThinkingStepIcon * {
|
|
6870
|
+
box-sizing: border-box;
|
|
6871
|
+
}
|
|
6872
|
+
.ScThinkingStepIcon_scThinkingStepIcon {
|
|
6873
|
+
display: inline-flex;
|
|
6874
|
+
align-items: center;
|
|
6875
|
+
justify-content: center;
|
|
6876
|
+
flex-shrink: 0;
|
|
6877
|
+
position: relative;
|
|
6878
|
+
line-height: 0;
|
|
6879
|
+
}
|
|
6880
|
+
.ScThinkingStepIcon_glyph {
|
|
6881
|
+
display: block;
|
|
6882
|
+
overflow: visible;
|
|
6883
|
+
}
|
|
6884
|
+
.ScThinkingStepIcon_stroke {
|
|
6885
|
+
fill: none;
|
|
6886
|
+
}
|
|
6887
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-default .ScThinkingStepIcon_stroke {
|
|
6888
|
+
stroke: var(--alias-border-divider, #242424);
|
|
6889
|
+
}
|
|
6890
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-working .ScThinkingStepIcon_stroke {
|
|
6891
|
+
stroke: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6892
|
+
}
|
|
6893
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-completed .ScThinkingStepIcon_stroke {
|
|
6894
|
+
stroke: var(--alias-text-and-icons-success, #00b96b);
|
|
6895
|
+
}
|
|
6896
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-error .ScThinkingStepIcon_stroke {
|
|
6897
|
+
stroke: var(--alias-text-and-icons-error, #d11a1a);
|
|
6898
|
+
}
|
|
6899
|
+
.ScThinkingStepIcon_spinner {
|
|
6900
|
+
transform-box: fill-box;
|
|
6901
|
+
transform-origin: center;
|
|
6902
|
+
animation: ScThinkingStepIcon_scThinkingStepIconSpin 1s linear infinite;
|
|
6903
|
+
}
|
|
6904
|
+
@keyframes ScThinkingStepIcon_scThinkingStepIconSpin {
|
|
6905
|
+
from {
|
|
6906
|
+
transform: rotate(0deg);
|
|
6907
|
+
}
|
|
6908
|
+
to {
|
|
6909
|
+
transform: rotate(360deg);
|
|
6910
|
+
}
|
|
6911
|
+
}
|
|
6912
|
+
@media (prefers-reduced-motion: reduce) {
|
|
6913
|
+
.ScThinkingStepIcon_spinner {
|
|
6914
|
+
animation: none;
|
|
6915
|
+
}
|
|
6916
|
+
}
|
|
6917
|
+
|
|
6918
|
+
/* src/SC-InChatList/ScInChatList.module.css */
|
|
6919
|
+
.ScInChatList_scInChatList,
|
|
6920
|
+
.ScInChatList_scInChatList * {
|
|
6921
|
+
box-sizing: border-box;
|
|
6922
|
+
}
|
|
6923
|
+
.ScInChatList_scInChatList {
|
|
6924
|
+
display: flex;
|
|
6925
|
+
flex-direction: row;
|
|
6926
|
+
align-items: flex-start;
|
|
6927
|
+
gap: var(--spacing-md, 8px);
|
|
6928
|
+
max-width: 600px;
|
|
6929
|
+
width: 100%;
|
|
6930
|
+
position: relative;
|
|
6931
|
+
}
|
|
6932
|
+
.ScInChatList_indicatorWrapper {
|
|
6933
|
+
display: flex;
|
|
6934
|
+
flex-direction: row;
|
|
6935
|
+
align-items: center;
|
|
6936
|
+
justify-content: flex-start;
|
|
6937
|
+
width: 20px;
|
|
6938
|
+
height: 26px;
|
|
6939
|
+
padding: var(--spacing-none, 0) 2px;
|
|
6940
|
+
flex-shrink: 0;
|
|
6941
|
+
position: relative;
|
|
6942
|
+
}
|
|
6943
|
+
.ScInChatList_content {
|
|
6944
|
+
flex: 1 0 0;
|
|
6945
|
+
min-width: 0;
|
|
6946
|
+
display: flex;
|
|
6947
|
+
flex-direction: column;
|
|
6434
6948
|
gap: var(--spacing-md, 8px);
|
|
6435
6949
|
position: relative;
|
|
6436
6950
|
}
|
|
@@ -9162,3 +9676,218 @@
|
|
|
9162
9676
|
background-position: -100% 0;
|
|
9163
9677
|
}
|
|
9164
9678
|
}
|
|
9679
|
+
|
|
9680
|
+
/* src/SC-ProfilePopup/ScProfilePopup.module.css */
|
|
9681
|
+
.ScProfilePopup_scProfilePopup,
|
|
9682
|
+
.ScProfilePopup_scProfilePopup * {
|
|
9683
|
+
box-sizing: border-box;
|
|
9684
|
+
}
|
|
9685
|
+
.ScProfilePopup_scProfilePopup {
|
|
9686
|
+
background: var(--alias-surface-subtle, #1a1a1a);
|
|
9687
|
+
border-radius: var(--radius-4xl, 1.125rem);
|
|
9688
|
+
box-shadow: inset 0 0 0 var(--stroke-st0p5, 0.5px) var(--alias-border-subtle, #242424);
|
|
9689
|
+
padding: var(--spacing-md, 0.5rem);
|
|
9690
|
+
display: flex;
|
|
9691
|
+
flex-direction: column;
|
|
9692
|
+
gap: var(--spacing-xl, 0.75rem);
|
|
9693
|
+
align-items: flex-start;
|
|
9694
|
+
justify-content: flex-start;
|
|
9695
|
+
width: var(--sc-profile-popup-width, 20rem);
|
|
9696
|
+
position: relative;
|
|
9697
|
+
backdrop-filter: blur(2.625rem);
|
|
9698
|
+
}
|
|
9699
|
+
.ScProfilePopup_scProfilePopup > *,
|
|
9700
|
+
.ScProfilePopup_settingsOptions > *,
|
|
9701
|
+
.ScProfilePopup_profileDetails > *,
|
|
9702
|
+
.ScProfilePopup_switchWorkspaceRow > * {
|
|
9703
|
+
align-self: stretch !important;
|
|
9704
|
+
flex-shrink: 0 !important;
|
|
9705
|
+
width: unset !important;
|
|
9706
|
+
}
|
|
9707
|
+
.ScProfilePopup_profileHeader {
|
|
9708
|
+
display: flex;
|
|
9709
|
+
flex-direction: row;
|
|
9710
|
+
align-items: center;
|
|
9711
|
+
justify-content: flex-start;
|
|
9712
|
+
align-self: stretch;
|
|
9713
|
+
flex-shrink: 0;
|
|
9714
|
+
position: relative;
|
|
9715
|
+
}
|
|
9716
|
+
.ScProfilePopup_headerActions {
|
|
9717
|
+
display: flex;
|
|
9718
|
+
flex-direction: row;
|
|
9719
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
9720
|
+
align-items: center;
|
|
9721
|
+
justify-content: flex-end;
|
|
9722
|
+
align-self: stretch;
|
|
9723
|
+
flex-shrink: 0;
|
|
9724
|
+
position: relative;
|
|
9725
|
+
}
|
|
9726
|
+
.ScProfilePopup_scProfileInstance {
|
|
9727
|
+
flex: 1 !important;
|
|
9728
|
+
width: unset !important;
|
|
9729
|
+
min-width: 0 !important;
|
|
9730
|
+
}
|
|
9731
|
+
.ScProfilePopup_scProfileInstance img {
|
|
9732
|
+
width: 2rem !important;
|
|
9733
|
+
height: 2rem !important;
|
|
9734
|
+
}
|
|
9735
|
+
.ScProfilePopup_scProfileInstance > div {
|
|
9736
|
+
min-width: 0;
|
|
9737
|
+
}
|
|
9738
|
+
.ScProfilePopup_profileBlock {
|
|
9739
|
+
background: none;
|
|
9740
|
+
border: none;
|
|
9741
|
+
margin: 0;
|
|
9742
|
+
font: inherit;
|
|
9743
|
+
color: inherit;
|
|
9744
|
+
text-align: left;
|
|
9745
|
+
flex: 1;
|
|
9746
|
+
min-width: 0;
|
|
9747
|
+
display: flex;
|
|
9748
|
+
align-items: center;
|
|
9749
|
+
padding: var(--spacing-md, 0.5rem);
|
|
9750
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
9751
|
+
position: relative;
|
|
9752
|
+
}
|
|
9753
|
+
.ScProfilePopup_profileBlockInteractive {
|
|
9754
|
+
cursor: pointer;
|
|
9755
|
+
}
|
|
9756
|
+
.ScProfilePopup_profileBlockInteractive:hover {
|
|
9757
|
+
background: var(--alias-fill-neutral-neutralhover, #242424);
|
|
9758
|
+
}
|
|
9759
|
+
.ScProfilePopup_profileBlockInteractive:focus-visible {
|
|
9760
|
+
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|
|
9761
|
+
outline-offset: calc(-1 * var(--spacing-xxs, 2px));
|
|
9762
|
+
}
|
|
9763
|
+
.ScProfilePopup_logoutButton {
|
|
9764
|
+
align-self: stretch;
|
|
9765
|
+
aspect-ratio: 1;
|
|
9766
|
+
padding: var(--spacing-md, 0.5rem);
|
|
9767
|
+
display: flex;
|
|
9768
|
+
align-items: center;
|
|
9769
|
+
justify-content: center;
|
|
9770
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
9771
|
+
flex-shrink: 0;
|
|
9772
|
+
position: relative;
|
|
9773
|
+
background: none;
|
|
9774
|
+
border: none;
|
|
9775
|
+
cursor: pointer;
|
|
9776
|
+
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
9777
|
+
}
|
|
9778
|
+
.ScProfilePopup_logoutButton:hover {
|
|
9779
|
+
background: var(--alias-fill-error-secondaryhover, #2a0606);
|
|
9780
|
+
box-shadow: inset 0 0 0 var(--stroke-st1, 1px) var(--alias-border-error, #8f1414);
|
|
9781
|
+
}
|
|
9782
|
+
.ScProfilePopup_logoutButton:focus-visible {
|
|
9783
|
+
outline: var(--stroke-st2, 2px) solid var(--alias-border-error, #8f1414);
|
|
9784
|
+
outline-offset: var(--spacing-xxs, 2px);
|
|
9785
|
+
}
|
|
9786
|
+
.ScProfilePopup_profileDetails {
|
|
9787
|
+
display: flex;
|
|
9788
|
+
flex-direction: column;
|
|
9789
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
9790
|
+
align-items: flex-start;
|
|
9791
|
+
justify-content: flex-start;
|
|
9792
|
+
align-self: stretch;
|
|
9793
|
+
flex-shrink: 0;
|
|
9794
|
+
padding-bottom: var(--spacing-md, 0.5rem);
|
|
9795
|
+
position: relative;
|
|
9796
|
+
}
|
|
9797
|
+
.ScProfilePopup_workspaceInfo {
|
|
9798
|
+
padding: var(--spacing-md, 0.5rem);
|
|
9799
|
+
display: flex;
|
|
9800
|
+
flex-direction: row;
|
|
9801
|
+
gap: var(--spacing-3xl, 1rem);
|
|
9802
|
+
align-items: center;
|
|
9803
|
+
justify-content: flex-start;
|
|
9804
|
+
align-self: stretch;
|
|
9805
|
+
flex-shrink: 0;
|
|
9806
|
+
position: relative;
|
|
9807
|
+
}
|
|
9808
|
+
.ScProfilePopup_scWorkspaceInstance {
|
|
9809
|
+
flex: 1 !important;
|
|
9810
|
+
width: unset !important;
|
|
9811
|
+
min-width: 0 !important;
|
|
9812
|
+
}
|
|
9813
|
+
.ScProfilePopup_scWorkspaceInstance img {
|
|
9814
|
+
width: 2rem !important;
|
|
9815
|
+
height: 2rem !important;
|
|
9816
|
+
}
|
|
9817
|
+
.ScProfilePopup_scWorkspaceInstance > div {
|
|
9818
|
+
min-width: 0;
|
|
9819
|
+
}
|
|
9820
|
+
.ScProfilePopup_creditsPill {
|
|
9821
|
+
background: var(--alias-surface-canvas, #0b0b0b);
|
|
9822
|
+
box-shadow: inset 0 0 0 var(--stroke-st1, 1px) var(--alias-border-divider, #242424);
|
|
9823
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
9824
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
|
|
9825
|
+
display: flex;
|
|
9826
|
+
flex-direction: row;
|
|
9827
|
+
gap: var(--spacing-sm, 0.375rem);
|
|
9828
|
+
align-items: center;
|
|
9829
|
+
justify-content: center;
|
|
9830
|
+
flex-shrink: 0;
|
|
9831
|
+
position: relative;
|
|
9832
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9833
|
+
}
|
|
9834
|
+
.ScProfilePopup_creditsValue {
|
|
9835
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9836
|
+
text-align: left;
|
|
9837
|
+
font-family: var(--font-family-font-family-body, Inter), sans-serif;
|
|
9838
|
+
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
9839
|
+
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
9840
|
+
letter-spacing: var(--letter-spacing-letter-spacing-normal, 0);
|
|
9841
|
+
font-weight: 500;
|
|
9842
|
+
white-space: nowrap;
|
|
9843
|
+
position: relative;
|
|
9844
|
+
}
|
|
9845
|
+
.ScProfilePopup_switchWorkspaceRow {
|
|
9846
|
+
display: flex;
|
|
9847
|
+
flex-direction: column;
|
|
9848
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
9849
|
+
align-items: flex-start;
|
|
9850
|
+
justify-content: flex-start;
|
|
9851
|
+
padding: 0 var(--spacing-md, 0.5rem);
|
|
9852
|
+
align-self: stretch;
|
|
9853
|
+
flex-shrink: 0;
|
|
9854
|
+
position: relative;
|
|
9855
|
+
}
|
|
9856
|
+
.ScProfilePopup_switchWorkspaceButton {
|
|
9857
|
+
background: var(--alias-fill-neutral-neutralactive, #313131) !important;
|
|
9858
|
+
cursor: pointer;
|
|
9859
|
+
}
|
|
9860
|
+
.ScProfilePopup_switchWorkspaceButton:hover {
|
|
9861
|
+
background: var(--alias-fill-neutral-neutralselected, #242424) !important;
|
|
9862
|
+
}
|
|
9863
|
+
.ScProfilePopup_settingsOptions {
|
|
9864
|
+
display: flex;
|
|
9865
|
+
flex-direction: column;
|
|
9866
|
+
gap: var(--spacing-md, 0.5rem);
|
|
9867
|
+
align-items: flex-start;
|
|
9868
|
+
justify-content: flex-start;
|
|
9869
|
+
align-self: stretch;
|
|
9870
|
+
flex-shrink: 0;
|
|
9871
|
+
position: relative;
|
|
9872
|
+
}
|
|
9873
|
+
.ScProfilePopup_menuOptionInstance {
|
|
9874
|
+
cursor: pointer;
|
|
9875
|
+
}
|
|
9876
|
+
.ScProfilePopup_menuOptionInstance:focus-visible {
|
|
9877
|
+
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|
|
9878
|
+
outline-offset: calc(-1 * var(--spacing-xxs, 2px));
|
|
9879
|
+
}
|
|
9880
|
+
.ScProfilePopup_themeTab {
|
|
9881
|
+
flex: 1 !important;
|
|
9882
|
+
align-self: unset !important;
|
|
9883
|
+
flex-shrink: unset !important;
|
|
9884
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
9885
|
+
cursor: pointer;
|
|
9886
|
+
}
|
|
9887
|
+
.ScProfilePopup_themeTabActive {
|
|
9888
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
9889
|
+
}
|
|
9890
|
+
.ScProfilePopup_themeTab:focus-visible {
|
|
9891
|
+
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|
|
9892
|
+
outline-offset: calc(-1 * var(--spacing-xxs, 2px));
|
|
9893
|
+
}
|