@streamoid/ui 0.6.10 → 0.6.12
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 +1117 -0
- package/dist/index.d.mts +130 -1
- package/dist/index.d.ts +130 -1
- package/dist/index.js +1357 -210
- package/dist/index.mjs +1357 -210
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2904,6 +2904,7 @@
|
|
|
2904
2904
|
align-self: stretch;
|
|
2905
2905
|
flex-shrink: 0;
|
|
2906
2906
|
position: relative;
|
|
2907
|
+
cursor: pointer;
|
|
2907
2908
|
}
|
|
2908
2909
|
.ScTabComp_textContainer {
|
|
2909
2910
|
display: flex;
|
|
@@ -5833,6 +5834,242 @@
|
|
|
5833
5834
|
background: var(--alias-fill-error-solidhover, #e04444);
|
|
5834
5835
|
}
|
|
5835
5836
|
|
|
5837
|
+
/* src/SC-Beacon/ScBeacon.module.css */
|
|
5838
|
+
.ScBeacon_scBeacon,
|
|
5839
|
+
.ScBeacon_scBeacon * {
|
|
5840
|
+
box-sizing: border-box;
|
|
5841
|
+
}
|
|
5842
|
+
.ScBeacon_scBeacon {
|
|
5843
|
+
display: inline-flex;
|
|
5844
|
+
width: 1.25rem;
|
|
5845
|
+
height: 1.25rem;
|
|
5846
|
+
flex-shrink: 0;
|
|
5847
|
+
}
|
|
5848
|
+
.ScBeacon_success {
|
|
5849
|
+
color: var(--alias-text-and-icons-success, #00b96b);
|
|
5850
|
+
}
|
|
5851
|
+
.ScBeacon_warning {
|
|
5852
|
+
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
5853
|
+
}
|
|
5854
|
+
.ScBeacon_error {
|
|
5855
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
5856
|
+
}
|
|
5857
|
+
.ScBeacon_neutral {
|
|
5858
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5859
|
+
}
|
|
5860
|
+
|
|
5861
|
+
/* src/SC-StoreCard/ScStoreCard.module.css */
|
|
5862
|
+
.ScStoreCard_scStoreCard,
|
|
5863
|
+
.ScStoreCard_scStoreCard * {
|
|
5864
|
+
box-sizing: border-box;
|
|
5865
|
+
}
|
|
5866
|
+
.ScStoreCard_scStoreCard {
|
|
5867
|
+
background: var(--alias-surface-base, #101010);
|
|
5868
|
+
border: 0.03125rem solid var(--alias-border-subtle, #242424);
|
|
5869
|
+
border-radius: var(--radius-4xl, 1.125rem);
|
|
5870
|
+
display: flex;
|
|
5871
|
+
flex-direction: column;
|
|
5872
|
+
align-items: flex-start;
|
|
5873
|
+
width: 100%;
|
|
5874
|
+
position: relative;
|
|
5875
|
+
overflow: hidden;
|
|
5876
|
+
cursor: pointer;
|
|
5877
|
+
transition:
|
|
5878
|
+
background-color 120ms ease,
|
|
5879
|
+
border-color 120ms ease,
|
|
5880
|
+
transform 120ms ease;
|
|
5881
|
+
}
|
|
5882
|
+
.ScStoreCard_scStoreCard:hover,
|
|
5883
|
+
.ScStoreCard_scStoreCard:focus-visible {
|
|
5884
|
+
background: var(--alias-surface-basesubtle, #151515);
|
|
5885
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
5886
|
+
transform: scale(1.01);
|
|
5887
|
+
outline: none;
|
|
5888
|
+
}
|
|
5889
|
+
.ScStoreCard_nameSection {
|
|
5890
|
+
display: flex;
|
|
5891
|
+
align-items: center;
|
|
5892
|
+
justify-content: center;
|
|
5893
|
+
padding: var(--spacing-5xl, 1.25rem);
|
|
5894
|
+
width: 100%;
|
|
5895
|
+
}
|
|
5896
|
+
.ScStoreCard_storeName {
|
|
5897
|
+
flex: 1;
|
|
5898
|
+
min-width: 0;
|
|
5899
|
+
margin: 0;
|
|
5900
|
+
height: 3.5rem;
|
|
5901
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5902
|
+
text-align: left;
|
|
5903
|
+
font-family: var( --lead-text-lead-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5904
|
+
font-size: var(--lead-text-lead-text-xs-regular-font-size, 1.125rem);
|
|
5905
|
+
line-height: var(--lead-text-lead-text-xs-regular-line-height, 1.625rem);
|
|
5906
|
+
font-weight: var(--lead-text-lead-text-xs-regular-font-weight, 400);
|
|
5907
|
+
display: -webkit-box;
|
|
5908
|
+
-webkit-line-clamp: 2;
|
|
5909
|
+
-webkit-box-orient: vertical;
|
|
5910
|
+
overflow: hidden;
|
|
5911
|
+
word-break: break-word;
|
|
5912
|
+
}
|
|
5913
|
+
.ScStoreCard_divider {
|
|
5914
|
+
width: 100%;
|
|
5915
|
+
}
|
|
5916
|
+
.ScStoreCard_footer {
|
|
5917
|
+
display: flex;
|
|
5918
|
+
align-items: center;
|
|
5919
|
+
justify-content: center;
|
|
5920
|
+
gap: 0.5rem;
|
|
5921
|
+
padding: var(--spacing-5xl, 1.25rem);
|
|
5922
|
+
width: 100%;
|
|
5923
|
+
}
|
|
5924
|
+
.ScStoreCard_products {
|
|
5925
|
+
flex: 1;
|
|
5926
|
+
min-width: 0;
|
|
5927
|
+
overflow: hidden;
|
|
5928
|
+
text-overflow: ellipsis;
|
|
5929
|
+
white-space: nowrap;
|
|
5930
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5931
|
+
text-align: left;
|
|
5932
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5933
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
5934
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
5935
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
5936
|
+
}
|
|
5937
|
+
.ScStoreCard_date {
|
|
5938
|
+
flex-shrink: 0;
|
|
5939
|
+
overflow: hidden;
|
|
5940
|
+
text-overflow: ellipsis;
|
|
5941
|
+
white-space: nowrap;
|
|
5942
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5943
|
+
text-align: right;
|
|
5944
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5945
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
5946
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
5947
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
5948
|
+
}
|
|
5949
|
+
|
|
5950
|
+
/* src/SC-Catalogix-Store-Header/ScCatalogixStoreHeader.module.css */
|
|
5951
|
+
.ScCatalogixStoreHeader_scCatalogixStoreHeader,
|
|
5952
|
+
.ScCatalogixStoreHeader_scCatalogixStoreHeader * {
|
|
5953
|
+
box-sizing: border-box;
|
|
5954
|
+
}
|
|
5955
|
+
.ScCatalogixStoreHeader_scCatalogixStoreHeader {
|
|
5956
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
5957
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
5958
|
+
display: flex;
|
|
5959
|
+
flex-direction: row;
|
|
5960
|
+
gap: var(--spacing-6xl, 1.5rem);
|
|
5961
|
+
align-items: center;
|
|
5962
|
+
justify-content: flex-start;
|
|
5963
|
+
position: relative;
|
|
5964
|
+
width: 100%;
|
|
5965
|
+
}
|
|
5966
|
+
.ScCatalogixStoreHeader_label {
|
|
5967
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5968
|
+
text-align: left;
|
|
5969
|
+
text-transform: uppercase;
|
|
5970
|
+
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5971
|
+
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
5972
|
+
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
5973
|
+
font-weight: var(--text-text-xs-regular-font-weight, 400);
|
|
5974
|
+
white-space: nowrap;
|
|
5975
|
+
overflow: hidden;
|
|
5976
|
+
text-overflow: ellipsis;
|
|
5977
|
+
flex-shrink: 0;
|
|
5978
|
+
}
|
|
5979
|
+
.ScCatalogixStoreHeader_colName {
|
|
5980
|
+
flex: 1;
|
|
5981
|
+
min-width: 0;
|
|
5982
|
+
}
|
|
5983
|
+
.ScCatalogixStoreHeader_colStatus {
|
|
5984
|
+
width: 7.5rem;
|
|
5985
|
+
}
|
|
5986
|
+
.ScCatalogixStoreHeader_colNum {
|
|
5987
|
+
width: 6rem;
|
|
5988
|
+
}
|
|
5989
|
+
.ScCatalogixStoreHeader_colDate {
|
|
5990
|
+
width: 7.5rem;
|
|
5991
|
+
}
|
|
5992
|
+
.ScCatalogixStoreHeader_colBy {
|
|
5993
|
+
width: 10rem;
|
|
5994
|
+
}
|
|
5995
|
+
|
|
5996
|
+
/* src/SC-CatalogixStoreTableList/ScCatalogixStoreTableList.module.css */
|
|
5997
|
+
.ScCatalogixStoreTableList_scCatalogixStoreTableList,
|
|
5998
|
+
.ScCatalogixStoreTableList_scCatalogixStoreTableList * {
|
|
5999
|
+
box-sizing: border-box;
|
|
6000
|
+
}
|
|
6001
|
+
.ScCatalogixStoreTableList_scCatalogixStoreTableList {
|
|
6002
|
+
border-style: solid;
|
|
6003
|
+
border-color: var(--alias-border-subtle, #242424);
|
|
6004
|
+
border-width: 0 0 0.0625rem 0;
|
|
6005
|
+
padding: var(--spacing-5xl, 1.25rem) var(--spacing-3xl, 1rem);
|
|
6006
|
+
display: flex;
|
|
6007
|
+
flex-direction: row;
|
|
6008
|
+
gap: var(--spacing-6xl, 1.5rem);
|
|
6009
|
+
align-items: center;
|
|
6010
|
+
justify-content: flex-start;
|
|
6011
|
+
position: relative;
|
|
6012
|
+
width: 100%;
|
|
6013
|
+
}
|
|
6014
|
+
.ScCatalogixStoreTableList_name {
|
|
6015
|
+
flex: 1;
|
|
6016
|
+
min-width: 0;
|
|
6017
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6018
|
+
text-align: left;
|
|
6019
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6020
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6021
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6022
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6023
|
+
white-space: nowrap;
|
|
6024
|
+
overflow: hidden;
|
|
6025
|
+
text-overflow: ellipsis;
|
|
6026
|
+
}
|
|
6027
|
+
.ScCatalogixStoreTableList_status {
|
|
6028
|
+
width: 7.5rem;
|
|
6029
|
+
flex-shrink: 0;
|
|
6030
|
+
text-align: left;
|
|
6031
|
+
font-family: var( --text-text-md-regular-font-family, "Inter-Regular", sans-serif );
|
|
6032
|
+
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
6033
|
+
line-height: var(--text-text-md-regular-line-height, 1.5rem);
|
|
6034
|
+
font-weight: var(--text-text-md-regular-font-weight, 400);
|
|
6035
|
+
white-space: nowrap;
|
|
6036
|
+
overflow: hidden;
|
|
6037
|
+
text-overflow: ellipsis;
|
|
6038
|
+
}
|
|
6039
|
+
.ScCatalogixStoreTableList_statusSuccess {
|
|
6040
|
+
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6041
|
+
}
|
|
6042
|
+
.ScCatalogixStoreTableList_statusWarning {
|
|
6043
|
+
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6044
|
+
}
|
|
6045
|
+
.ScCatalogixStoreTableList_statusError {
|
|
6046
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6047
|
+
}
|
|
6048
|
+
.ScCatalogixStoreTableList_statusNeutral {
|
|
6049
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6050
|
+
}
|
|
6051
|
+
.ScCatalogixStoreTableList_cell {
|
|
6052
|
+
flex-shrink: 0;
|
|
6053
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6054
|
+
text-align: left;
|
|
6055
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6056
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6057
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6058
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6059
|
+
white-space: nowrap;
|
|
6060
|
+
overflow: hidden;
|
|
6061
|
+
text-overflow: ellipsis;
|
|
6062
|
+
}
|
|
6063
|
+
.ScCatalogixStoreTableList_colNum {
|
|
6064
|
+
width: 6rem;
|
|
6065
|
+
}
|
|
6066
|
+
.ScCatalogixStoreTableList_colDate {
|
|
6067
|
+
width: 7.5rem;
|
|
6068
|
+
}
|
|
6069
|
+
.ScCatalogixStoreTableList_colBy {
|
|
6070
|
+
width: 10rem;
|
|
6071
|
+
}
|
|
6072
|
+
|
|
5836
6073
|
/* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
|
|
5837
6074
|
.ScThinkingStepIcon_scThinkingStepIcon,
|
|
5838
6075
|
.ScThinkingStepIcon_scThinkingStepIcon * {
|
|
@@ -6285,6 +6522,886 @@
|
|
|
6285
6522
|
pointer-events: none;
|
|
6286
6523
|
}
|
|
6287
6524
|
|
|
6525
|
+
/* src/SC-textArea/ScTextArea.module.css */
|
|
6526
|
+
.ScTextArea_scTextArea,
|
|
6527
|
+
.ScTextArea_scTextArea * {
|
|
6528
|
+
box-sizing: border-box;
|
|
6529
|
+
}
|
|
6530
|
+
.ScTextArea_scTextArea {
|
|
6531
|
+
display: flex;
|
|
6532
|
+
flex-direction: column;
|
|
6533
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
6534
|
+
align-items: flex-start;
|
|
6535
|
+
justify-content: center;
|
|
6536
|
+
width: 100%;
|
|
6537
|
+
position: relative;
|
|
6538
|
+
}
|
|
6539
|
+
.ScTextArea_scTextArea.ScTextArea_label-group-none {
|
|
6540
|
+
gap: 0;
|
|
6541
|
+
}
|
|
6542
|
+
.ScTextArea_labelContainer {
|
|
6543
|
+
display: flex;
|
|
6544
|
+
flex-direction: row;
|
|
6545
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6546
|
+
align-items: center;
|
|
6547
|
+
justify-content: flex-start;
|
|
6548
|
+
align-self: stretch;
|
|
6549
|
+
flex-shrink: 0;
|
|
6550
|
+
height: 1.5rem;
|
|
6551
|
+
position: relative;
|
|
6552
|
+
}
|
|
6553
|
+
.ScTextArea_label {
|
|
6554
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6555
|
+
text-align: left;
|
|
6556
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6557
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6558
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6559
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6560
|
+
position: relative;
|
|
6561
|
+
flex: 1;
|
|
6562
|
+
height: 1.25rem;
|
|
6563
|
+
display: flex;
|
|
6564
|
+
align-items: center;
|
|
6565
|
+
justify-content: flex-start;
|
|
6566
|
+
}
|
|
6567
|
+
.ScTextArea_info {
|
|
6568
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6569
|
+
text-align: right;
|
|
6570
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6571
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6572
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6573
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6574
|
+
position: relative;
|
|
6575
|
+
display: flex;
|
|
6576
|
+
align-items: center;
|
|
6577
|
+
justify-content: flex-end;
|
|
6578
|
+
}
|
|
6579
|
+
.ScTextArea_inputContainer {
|
|
6580
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6581
|
+
border: 1px solid var(--alias-border-subtle, transparent);
|
|
6582
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
6583
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem) var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
6584
|
+
display: flex;
|
|
6585
|
+
flex-direction: row;
|
|
6586
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6587
|
+
align-items: flex-start;
|
|
6588
|
+
justify-content: flex-start;
|
|
6589
|
+
align-self: stretch;
|
|
6590
|
+
flex-shrink: 0;
|
|
6591
|
+
height: auto;
|
|
6592
|
+
min-height: 4.5rem;
|
|
6593
|
+
position: relative;
|
|
6594
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6595
|
+
}
|
|
6596
|
+
.ScTextArea_inputText {
|
|
6597
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6598
|
+
text-align: left;
|
|
6599
|
+
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6600
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6601
|
+
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
6602
|
+
font-weight: var(--text-text-sm-regular-font-weight, 400);
|
|
6603
|
+
position: relative;
|
|
6604
|
+
flex: 1;
|
|
6605
|
+
min-width: 0;
|
|
6606
|
+
width: 100%;
|
|
6607
|
+
min-height: 4rem;
|
|
6608
|
+
background: transparent;
|
|
6609
|
+
outline: none;
|
|
6610
|
+
border: none;
|
|
6611
|
+
resize: vertical;
|
|
6612
|
+
white-space: normal;
|
|
6613
|
+
overflow: auto;
|
|
6614
|
+
}
|
|
6615
|
+
.ScTextArea_scTextArea:hover .ScTextArea_inputContainer,
|
|
6616
|
+
.ScTextArea_scTextArea.ScTextArea_state-hover .ScTextArea_inputContainer,
|
|
6617
|
+
.ScTextArea_scTextArea.ScTextArea_state-filled .ScTextArea_inputContainer {
|
|
6618
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6619
|
+
border-color: var(--alias-border-default, transparent);
|
|
6620
|
+
}
|
|
6621
|
+
.ScTextArea_scTextArea.ScTextArea_state-filled .ScTextArea_inputText {
|
|
6622
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6623
|
+
}
|
|
6624
|
+
.ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputContainer {
|
|
6625
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6626
|
+
border-style: solid;
|
|
6627
|
+
border-color: var(--alias-border-strong, #5c5c5c);
|
|
6628
|
+
border-width: 0.0625rem;
|
|
6629
|
+
}
|
|
6630
|
+
.ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputText {
|
|
6631
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6632
|
+
}
|
|
6633
|
+
.ScTextArea_scTextArea.ScTextArea_state-error .ScTextArea_inputContainer {
|
|
6634
|
+
border-style: solid;
|
|
6635
|
+
border-color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6636
|
+
border-width: 0.0625rem;
|
|
6637
|
+
}
|
|
6638
|
+
.ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputContainer {
|
|
6639
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6640
|
+
border-color: var(--alias-border-subtle, transparent);
|
|
6641
|
+
}
|
|
6642
|
+
.ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputText {
|
|
6643
|
+
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6644
|
+
cursor: not-allowed;
|
|
6645
|
+
resize: none;
|
|
6646
|
+
}
|
|
6647
|
+
.ScTextArea_scTextArea.ScTextArea_label-group-none .ScTextArea_labelContainer {
|
|
6648
|
+
display: none;
|
|
6649
|
+
}
|
|
6650
|
+
|
|
6651
|
+
/* src/SC-select/ScSelect.module.css */
|
|
6652
|
+
.ScSelect_scSelect,
|
|
6653
|
+
.ScSelect_scSelect * {
|
|
6654
|
+
box-sizing: border-box;
|
|
6655
|
+
}
|
|
6656
|
+
.ScSelect_scSelect {
|
|
6657
|
+
display: flex;
|
|
6658
|
+
flex-direction: column;
|
|
6659
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
6660
|
+
width: 100%;
|
|
6661
|
+
position: relative;
|
|
6662
|
+
}
|
|
6663
|
+
.ScSelect_scSelect.ScSelect_label-group- {
|
|
6664
|
+
gap: 0;
|
|
6665
|
+
}
|
|
6666
|
+
.ScSelect_labelContainer {
|
|
6667
|
+
display: flex;
|
|
6668
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6669
|
+
align-items: center;
|
|
6670
|
+
align-self: stretch;
|
|
6671
|
+
height: 1.5rem;
|
|
6672
|
+
}
|
|
6673
|
+
.ScSelect_label {
|
|
6674
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6675
|
+
font-family: Inter, sans-serif;
|
|
6676
|
+
font-size: 0.875rem;
|
|
6677
|
+
line-height: 1.25rem;
|
|
6678
|
+
font-weight: 400;
|
|
6679
|
+
flex: 1;
|
|
6680
|
+
}
|
|
6681
|
+
.ScSelect_selectArea {
|
|
6682
|
+
position: relative;
|
|
6683
|
+
width: 100%;
|
|
6684
|
+
}
|
|
6685
|
+
.ScSelect_trigger {
|
|
6686
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6687
|
+
border: 1px solid var(--alias-border-subtle, transparent);
|
|
6688
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
6689
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
6690
|
+
display: flex;
|
|
6691
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6692
|
+
align-items: center;
|
|
6693
|
+
align-self: stretch;
|
|
6694
|
+
width: 100%;
|
|
6695
|
+
height: 3rem;
|
|
6696
|
+
overflow: hidden;
|
|
6697
|
+
cursor: pointer;
|
|
6698
|
+
outline: none;
|
|
6699
|
+
font-family: Inter, sans-serif;
|
|
6700
|
+
text-align: left;
|
|
6701
|
+
}
|
|
6702
|
+
.ScSelect_triggerText {
|
|
6703
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6704
|
+
font-family: Inter, sans-serif;
|
|
6705
|
+
font-size: 0.875rem;
|
|
6706
|
+
line-height: 1.25rem;
|
|
6707
|
+
font-weight: 400;
|
|
6708
|
+
flex: 1;
|
|
6709
|
+
min-width: 0;
|
|
6710
|
+
overflow: hidden;
|
|
6711
|
+
text-overflow: ellipsis;
|
|
6712
|
+
white-space: nowrap;
|
|
6713
|
+
}
|
|
6714
|
+
.ScSelect_triggerText.ScSelect_placeholder {
|
|
6715
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6716
|
+
}
|
|
6717
|
+
.ScSelect_chevron {
|
|
6718
|
+
display: flex;
|
|
6719
|
+
align-items: center;
|
|
6720
|
+
justify-content: center;
|
|
6721
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6722
|
+
flex-shrink: 0;
|
|
6723
|
+
transition: transform 0.15s ease;
|
|
6724
|
+
}
|
|
6725
|
+
.ScSelect_chevronOpen {
|
|
6726
|
+
transform: rotate(180deg);
|
|
6727
|
+
}
|
|
6728
|
+
.ScSelect_scSelect:hover .ScSelect_trigger {
|
|
6729
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6730
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
6731
|
+
}
|
|
6732
|
+
.ScSelect_scSelect.ScSelect_state-filled .ScSelect_trigger {
|
|
6733
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6734
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
6735
|
+
}
|
|
6736
|
+
.ScSelect_scSelect.ScSelect_state-active .ScSelect_trigger {
|
|
6737
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6738
|
+
border-color: var(--alias-border-strong, #5c5c5c);
|
|
6739
|
+
}
|
|
6740
|
+
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_trigger {
|
|
6741
|
+
cursor: not-allowed;
|
|
6742
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6743
|
+
border-color: var(--alias-border-subtle, transparent);
|
|
6744
|
+
}
|
|
6745
|
+
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_triggerText {
|
|
6746
|
+
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6747
|
+
}
|
|
6748
|
+
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_chevron {
|
|
6749
|
+
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6750
|
+
}
|
|
6751
|
+
.ScSelect_menu {
|
|
6752
|
+
position: absolute;
|
|
6753
|
+
top: 100%;
|
|
6754
|
+
left: 0;
|
|
6755
|
+
width: 100%;
|
|
6756
|
+
margin-top: 4px;
|
|
6757
|
+
background: var(--alias-surface-subtleraised, #1f1f1f);
|
|
6758
|
+
border: 1px solid var(--alias-border-divider, #242424);
|
|
6759
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
6760
|
+
padding: var(--spacing-xs, 0.25rem);
|
|
6761
|
+
max-height: 14rem;
|
|
6762
|
+
overflow-y: auto;
|
|
6763
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
|
|
6764
|
+
z-index: 20;
|
|
6765
|
+
display: flex;
|
|
6766
|
+
flex-direction: column;
|
|
6767
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
6768
|
+
}
|
|
6769
|
+
.ScSelect_option {
|
|
6770
|
+
display: flex;
|
|
6771
|
+
flex-direction: column;
|
|
6772
|
+
gap: 2px;
|
|
6773
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
|
|
6774
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
6775
|
+
cursor: pointer;
|
|
6776
|
+
width: 100%;
|
|
6777
|
+
}
|
|
6778
|
+
.ScSelect_option:hover {
|
|
6779
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6780
|
+
}
|
|
6781
|
+
.ScSelect_option-selected {
|
|
6782
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6783
|
+
}
|
|
6784
|
+
.ScSelect_optionLabel {
|
|
6785
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6786
|
+
font-family: Inter, sans-serif;
|
|
6787
|
+
font-size: 0.875rem;
|
|
6788
|
+
line-height: 1.25rem;
|
|
6789
|
+
font-weight: 400;
|
|
6790
|
+
}
|
|
6791
|
+
.ScSelect_optionDescription {
|
|
6792
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6793
|
+
font-family: Inter, sans-serif;
|
|
6794
|
+
font-size: 0.75rem;
|
|
6795
|
+
line-height: 1rem;
|
|
6796
|
+
font-weight: 400;
|
|
6797
|
+
}
|
|
6798
|
+
|
|
6799
|
+
/* src/SC-fileField/ScFileField.module.css */
|
|
6800
|
+
.ScFileField_scFileField,
|
|
6801
|
+
.ScFileField_scFileField * {
|
|
6802
|
+
box-sizing: border-box;
|
|
6803
|
+
}
|
|
6804
|
+
.ScFileField_scFileField {
|
|
6805
|
+
display: flex;
|
|
6806
|
+
flex-direction: column;
|
|
6807
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
6808
|
+
width: 100%;
|
|
6809
|
+
position: relative;
|
|
6810
|
+
font-family: Inter, sans-serif;
|
|
6811
|
+
}
|
|
6812
|
+
.ScFileField_labelContainer {
|
|
6813
|
+
display: flex;
|
|
6814
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6815
|
+
align-items: center;
|
|
6816
|
+
align-self: stretch;
|
|
6817
|
+
height: 1.5rem;
|
|
6818
|
+
}
|
|
6819
|
+
.ScFileField_label {
|
|
6820
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6821
|
+
font-family: Inter, sans-serif;
|
|
6822
|
+
font-size: 0.875rem;
|
|
6823
|
+
line-height: 1.25rem;
|
|
6824
|
+
font-weight: 400;
|
|
6825
|
+
flex: 1;
|
|
6826
|
+
}
|
|
6827
|
+
.ScFileField_dropzone {
|
|
6828
|
+
display: flex;
|
|
6829
|
+
flex-direction: column;
|
|
6830
|
+
align-items: center;
|
|
6831
|
+
justify-content: center;
|
|
6832
|
+
gap: var(--spacing-md, 0.5rem);
|
|
6833
|
+
align-self: stretch;
|
|
6834
|
+
min-height: 8rem;
|
|
6835
|
+
padding: var(--spacing-6xl, 1.5rem);
|
|
6836
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6837
|
+
border: 1px dashed var(--alias-border-default, #3e3e3e);
|
|
6838
|
+
border-radius: var(--radius-xl, 0.75rem);
|
|
6839
|
+
cursor: pointer;
|
|
6840
|
+
text-align: center;
|
|
6841
|
+
}
|
|
6842
|
+
.ScFileField_dropzone:hover {
|
|
6843
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6844
|
+
}
|
|
6845
|
+
.ScFileField_hiddenInput {
|
|
6846
|
+
position: absolute;
|
|
6847
|
+
width: 1px;
|
|
6848
|
+
height: 1px;
|
|
6849
|
+
padding: 0;
|
|
6850
|
+
margin: -1px;
|
|
6851
|
+
overflow: hidden;
|
|
6852
|
+
clip: rect(0, 0, 0, 0);
|
|
6853
|
+
white-space: nowrap;
|
|
6854
|
+
border: 0;
|
|
6855
|
+
}
|
|
6856
|
+
.ScFileField_uploadIcon {
|
|
6857
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6858
|
+
flex-shrink: 0;
|
|
6859
|
+
}
|
|
6860
|
+
.ScFileField_dropzoneText {
|
|
6861
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6862
|
+
font-family: Inter, sans-serif;
|
|
6863
|
+
font-size: 0.875rem;
|
|
6864
|
+
line-height: 1.25rem;
|
|
6865
|
+
font-weight: 400;
|
|
6866
|
+
}
|
|
6867
|
+
.ScFileField_dropzoneAction {
|
|
6868
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6869
|
+
font-weight: 600;
|
|
6870
|
+
}
|
|
6871
|
+
.ScFileField_acceptedText {
|
|
6872
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6873
|
+
font-family: Inter, sans-serif;
|
|
6874
|
+
font-size: 0.75rem;
|
|
6875
|
+
line-height: 1rem;
|
|
6876
|
+
font-weight: 400;
|
|
6877
|
+
}
|
|
6878
|
+
.ScFileField_inputContainer {
|
|
6879
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6880
|
+
border: 1px solid var(--alias-border-subtle, transparent);
|
|
6881
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
6882
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
6883
|
+
display: flex;
|
|
6884
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6885
|
+
align-items: center;
|
|
6886
|
+
align-self: stretch;
|
|
6887
|
+
min-height: 3rem;
|
|
6888
|
+
overflow: hidden;
|
|
6889
|
+
}
|
|
6890
|
+
.ScFileField_fileIcon {
|
|
6891
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6892
|
+
flex-shrink: 0;
|
|
6893
|
+
}
|
|
6894
|
+
.ScFileField_fileInfo {
|
|
6895
|
+
display: flex;
|
|
6896
|
+
flex-direction: column;
|
|
6897
|
+
gap: var(--spacing-md, 0.5rem);
|
|
6898
|
+
flex: 1;
|
|
6899
|
+
min-width: 0;
|
|
6900
|
+
}
|
|
6901
|
+
.ScFileField_fileName {
|
|
6902
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6903
|
+
font-family: Inter, sans-serif;
|
|
6904
|
+
font-size: 0.875rem;
|
|
6905
|
+
line-height: 1.25rem;
|
|
6906
|
+
font-weight: 400;
|
|
6907
|
+
white-space: nowrap;
|
|
6908
|
+
overflow: hidden;
|
|
6909
|
+
text-overflow: ellipsis;
|
|
6910
|
+
}
|
|
6911
|
+
.ScFileField_progressTrack {
|
|
6912
|
+
height: 4px;
|
|
6913
|
+
width: 100%;
|
|
6914
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6915
|
+
border-radius: var(--radius-xs, 0.25rem);
|
|
6916
|
+
overflow: hidden;
|
|
6917
|
+
}
|
|
6918
|
+
.ScFileField_progressFill {
|
|
6919
|
+
height: 100%;
|
|
6920
|
+
background: var(--alias-fill-base-base, #f5f5f5);
|
|
6921
|
+
border-radius: var(--radius-xs, 0.25rem);
|
|
6922
|
+
transition: width 0.2s ease;
|
|
6923
|
+
}
|
|
6924
|
+
.ScFileField_clearButton {
|
|
6925
|
+
display: flex;
|
|
6926
|
+
align-items: center;
|
|
6927
|
+
justify-content: center;
|
|
6928
|
+
padding: 0;
|
|
6929
|
+
background: transparent;
|
|
6930
|
+
border: none;
|
|
6931
|
+
cursor: pointer;
|
|
6932
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6933
|
+
flex-shrink: 0;
|
|
6934
|
+
}
|
|
6935
|
+
.ScFileField_clearButton:hover {
|
|
6936
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6937
|
+
}
|
|
6938
|
+
.ScFileField_errorText {
|
|
6939
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6940
|
+
font-family: Inter, sans-serif;
|
|
6941
|
+
font-size: 0.75rem;
|
|
6942
|
+
line-height: 1rem;
|
|
6943
|
+
font-weight: 400;
|
|
6944
|
+
}
|
|
6945
|
+
|
|
6946
|
+
/* src/SC-mediaApproval/ScMediaApproval.module.css */
|
|
6947
|
+
.ScMediaApproval_scMediaApproval,
|
|
6948
|
+
.ScMediaApproval_scMediaApproval * {
|
|
6949
|
+
box-sizing: border-box;
|
|
6950
|
+
}
|
|
6951
|
+
.ScMediaApproval_scMediaApproval {
|
|
6952
|
+
display: flex;
|
|
6953
|
+
flex-direction: column;
|
|
6954
|
+
gap: var(--spacing-3xl, 1rem);
|
|
6955
|
+
width: 100%;
|
|
6956
|
+
}
|
|
6957
|
+
.ScMediaApproval_mediaFrame {
|
|
6958
|
+
position: relative;
|
|
6959
|
+
width: 100%;
|
|
6960
|
+
border: 1px solid var(--alias-border-divider, #242424);
|
|
6961
|
+
border-radius: var(--radius-xl, 12px);
|
|
6962
|
+
background: var(--alias-surface-base, #101010);
|
|
6963
|
+
overflow: hidden;
|
|
6964
|
+
}
|
|
6965
|
+
.ScMediaApproval_media {
|
|
6966
|
+
display: block;
|
|
6967
|
+
width: 100%;
|
|
6968
|
+
height: 13rem;
|
|
6969
|
+
object-fit: contain;
|
|
6970
|
+
background: #000000;
|
|
6971
|
+
cursor: zoom-in;
|
|
6972
|
+
}
|
|
6973
|
+
.ScMediaApproval_mediaEmpty {
|
|
6974
|
+
width: 100%;
|
|
6975
|
+
height: 13rem;
|
|
6976
|
+
background: #000000;
|
|
6977
|
+
}
|
|
6978
|
+
.ScMediaApproval_spinnerOverlay {
|
|
6979
|
+
position: absolute;
|
|
6980
|
+
inset: 0;
|
|
6981
|
+
display: flex;
|
|
6982
|
+
align-items: center;
|
|
6983
|
+
justify-content: center;
|
|
6984
|
+
background: rgba(0, 0, 0, 0.4);
|
|
6985
|
+
}
|
|
6986
|
+
.ScMediaApproval_spinner {
|
|
6987
|
+
animation: ScMediaApproval_spin 0.8s linear infinite;
|
|
6988
|
+
}
|
|
6989
|
+
@keyframes ScMediaApproval_spin {
|
|
6990
|
+
from {
|
|
6991
|
+
transform: rotate(0deg);
|
|
6992
|
+
}
|
|
6993
|
+
to {
|
|
6994
|
+
transform: rotate(360deg);
|
|
6995
|
+
}
|
|
6996
|
+
}
|
|
6997
|
+
.ScMediaApproval_navButton {
|
|
6998
|
+
position: absolute;
|
|
6999
|
+
top: 50%;
|
|
7000
|
+
transform: translateY(-50%);
|
|
7001
|
+
width: 1.75rem;
|
|
7002
|
+
height: 1.75rem;
|
|
7003
|
+
display: flex;
|
|
7004
|
+
align-items: center;
|
|
7005
|
+
justify-content: center;
|
|
7006
|
+
padding: 0;
|
|
7007
|
+
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
7008
|
+
border-radius: 50%;
|
|
7009
|
+
background: rgba(0, 0, 0, 0.55);
|
|
7010
|
+
backdrop-filter: blur(6px);
|
|
7011
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
7012
|
+
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
7013
|
+
cursor: pointer;
|
|
7014
|
+
}
|
|
7015
|
+
.ScMediaApproval_navPrev {
|
|
7016
|
+
left: var(--spacing-md, 8px);
|
|
7017
|
+
}
|
|
7018
|
+
.ScMediaApproval_navNext {
|
|
7019
|
+
right: var(--spacing-md, 8px);
|
|
7020
|
+
}
|
|
7021
|
+
.ScMediaApproval_counterBadge {
|
|
7022
|
+
position: absolute;
|
|
7023
|
+
top: var(--spacing-md, 8px);
|
|
7024
|
+
right: var(--spacing-md, 8px);
|
|
7025
|
+
padding: var(--spacing-xs, 4px) var(--spacing-md, 8px);
|
|
7026
|
+
border-radius: var(--radius-xs, 4px);
|
|
7027
|
+
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
7028
|
+
background: rgba(0, 0, 0, 0.55);
|
|
7029
|
+
backdrop-filter: blur(6px);
|
|
7030
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
7031
|
+
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
7032
|
+
font-family: Inter, sans-serif;
|
|
7033
|
+
font-size: 10px;
|
|
7034
|
+
line-height: 1;
|
|
7035
|
+
font-weight: 400;
|
|
7036
|
+
}
|
|
7037
|
+
.ScMediaApproval_dots {
|
|
7038
|
+
position: absolute;
|
|
7039
|
+
bottom: var(--spacing-md, 8px);
|
|
7040
|
+
left: 50%;
|
|
7041
|
+
transform: translateX(-50%);
|
|
7042
|
+
display: flex;
|
|
7043
|
+
align-items: center;
|
|
7044
|
+
gap: var(--spacing-xs, 4px);
|
|
7045
|
+
padding: var(--spacing-xs, 4px) var(--spacing-md, 8px);
|
|
7046
|
+
border-radius: 999px;
|
|
7047
|
+
background: rgba(0, 0, 0, 0.5);
|
|
7048
|
+
backdrop-filter: blur(6px);
|
|
7049
|
+
}
|
|
7050
|
+
.ScMediaApproval_dot {
|
|
7051
|
+
width: 0.375rem;
|
|
7052
|
+
height: 0.375rem;
|
|
7053
|
+
padding: 0;
|
|
7054
|
+
border: none;
|
|
7055
|
+
border-radius: 999px;
|
|
7056
|
+
background: rgba(255, 255, 255, 0.5);
|
|
7057
|
+
cursor: pointer;
|
|
7058
|
+
transition: width 0.15s ease, background 0.15s ease;
|
|
7059
|
+
}
|
|
7060
|
+
.ScMediaApproval_dot.ScMediaApproval_state-active {
|
|
7061
|
+
width: 1rem;
|
|
7062
|
+
background: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
7063
|
+
}
|
|
7064
|
+
.ScMediaApproval_feedbackBlock {
|
|
7065
|
+
display: flex;
|
|
7066
|
+
flex-direction: column;
|
|
7067
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
7068
|
+
width: 100%;
|
|
7069
|
+
}
|
|
7070
|
+
.ScMediaApproval_label {
|
|
7071
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7072
|
+
font-family: Inter, sans-serif;
|
|
7073
|
+
font-size: 0.875rem;
|
|
7074
|
+
line-height: 1.25rem;
|
|
7075
|
+
font-weight: 400;
|
|
7076
|
+
}
|
|
7077
|
+
.ScMediaApproval_inputContainer {
|
|
7078
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
7079
|
+
border: 1px solid var(--alias-border-subtle, transparent);
|
|
7080
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
7081
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
7082
|
+
display: flex;
|
|
7083
|
+
align-items: stretch;
|
|
7084
|
+
align-self: stretch;
|
|
7085
|
+
overflow: hidden;
|
|
7086
|
+
}
|
|
7087
|
+
.ScMediaApproval_textArea {
|
|
7088
|
+
width: 100%;
|
|
7089
|
+
min-height: 4.5rem;
|
|
7090
|
+
resize: vertical;
|
|
7091
|
+
background: transparent;
|
|
7092
|
+
outline: none;
|
|
7093
|
+
border: none;
|
|
7094
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7095
|
+
font-family: Inter, sans-serif;
|
|
7096
|
+
font-size: 0.875rem;
|
|
7097
|
+
line-height: 1.25rem;
|
|
7098
|
+
font-weight: 400;
|
|
7099
|
+
}
|
|
7100
|
+
.ScMediaApproval_textArea::placeholder {
|
|
7101
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7102
|
+
}
|
|
7103
|
+
|
|
7104
|
+
/* src/SC-mediaSelect/ScMediaSelect.module.css */
|
|
7105
|
+
.ScMediaSelect_scMediaSelect,
|
|
7106
|
+
.ScMediaSelect_scMediaSelect * {
|
|
7107
|
+
box-sizing: border-box;
|
|
7108
|
+
}
|
|
7109
|
+
.ScMediaSelect_scMediaSelect {
|
|
7110
|
+
display: flex;
|
|
7111
|
+
flex-direction: column;
|
|
7112
|
+
gap: var(--spacing-md, 0.5rem);
|
|
7113
|
+
width: 100%;
|
|
7114
|
+
font-family: Inter, sans-serif;
|
|
7115
|
+
}
|
|
7116
|
+
.ScMediaSelect_header {
|
|
7117
|
+
display: flex;
|
|
7118
|
+
align-items: center;
|
|
7119
|
+
justify-content: space-between;
|
|
7120
|
+
gap: var(--spacing-3xl, 1rem);
|
|
7121
|
+
align-self: stretch;
|
|
7122
|
+
}
|
|
7123
|
+
.ScMediaSelect_countLabel {
|
|
7124
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7125
|
+
font-family: Inter, sans-serif;
|
|
7126
|
+
font-size: 0.75rem;
|
|
7127
|
+
line-height: 1rem;
|
|
7128
|
+
font-weight: 400;
|
|
7129
|
+
}
|
|
7130
|
+
.ScMediaSelect_actions {
|
|
7131
|
+
display: flex;
|
|
7132
|
+
align-items: center;
|
|
7133
|
+
gap: var(--spacing-md, 0.5rem);
|
|
7134
|
+
}
|
|
7135
|
+
.ScMediaSelect_linkButton {
|
|
7136
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7137
|
+
font-family: Inter, sans-serif;
|
|
7138
|
+
font-size: 0.6875rem;
|
|
7139
|
+
line-height: 1rem;
|
|
7140
|
+
font-weight: 400;
|
|
7141
|
+
background: none;
|
|
7142
|
+
border: none;
|
|
7143
|
+
padding: 0;
|
|
7144
|
+
cursor: pointer;
|
|
7145
|
+
}
|
|
7146
|
+
.ScMediaSelect_linkButton:hover {
|
|
7147
|
+
text-decoration: underline;
|
|
7148
|
+
}
|
|
7149
|
+
.ScMediaSelect_divider {
|
|
7150
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7151
|
+
font-size: 0.6875rem;
|
|
7152
|
+
line-height: 1rem;
|
|
7153
|
+
}
|
|
7154
|
+
.ScMediaSelect_grid {
|
|
7155
|
+
display: grid;
|
|
7156
|
+
grid-template-columns: repeat(4, 1fr);
|
|
7157
|
+
gap: var(--spacing-md, 0.5rem);
|
|
7158
|
+
max-height: 18.75rem;
|
|
7159
|
+
overflow-y: auto;
|
|
7160
|
+
padding: var(--spacing-md, 0.5rem);
|
|
7161
|
+
border: 1px solid var(--alias-border-divider, #242424);
|
|
7162
|
+
border-radius: var(--radius-xl, 0.75rem);
|
|
7163
|
+
background: var(--alias-surface-base, #101010);
|
|
7164
|
+
}
|
|
7165
|
+
.ScMediaSelect_item {
|
|
7166
|
+
position: relative;
|
|
7167
|
+
aspect-ratio: 1 / 1;
|
|
7168
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
7169
|
+
overflow: hidden;
|
|
7170
|
+
cursor: pointer;
|
|
7171
|
+
border: 2px solid var(--alias-border-subtle, transparent);
|
|
7172
|
+
}
|
|
7173
|
+
.ScMediaSelect_item.ScMediaSelect_state-default {
|
|
7174
|
+
border-color: transparent;
|
|
7175
|
+
}
|
|
7176
|
+
.ScMediaSelect_item.ScMediaSelect_state-default:hover {
|
|
7177
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
7178
|
+
}
|
|
7179
|
+
.ScMediaSelect_item.ScMediaSelect_state-selected {
|
|
7180
|
+
border-color: var(--alias-border-strong, #5c5c5c);
|
|
7181
|
+
}
|
|
7182
|
+
.ScMediaSelect_media {
|
|
7183
|
+
width: 100%;
|
|
7184
|
+
height: 100%;
|
|
7185
|
+
object-fit: cover;
|
|
7186
|
+
background: #000000;
|
|
7187
|
+
display: block;
|
|
7188
|
+
}
|
|
7189
|
+
.ScMediaSelect_checkBadge {
|
|
7190
|
+
position: absolute;
|
|
7191
|
+
top: var(--spacing-xs, 0.25rem);
|
|
7192
|
+
right: var(--spacing-xs, 0.25rem);
|
|
7193
|
+
width: 1.25rem;
|
|
7194
|
+
height: 1.25rem;
|
|
7195
|
+
border-radius: 50%;
|
|
7196
|
+
background: var(--alias-fill-base-base, #f5f5f5);
|
|
7197
|
+
display: flex;
|
|
7198
|
+
align-items: center;
|
|
7199
|
+
justify-content: center;
|
|
7200
|
+
}
|
|
7201
|
+
.ScMediaSelect_previewButton {
|
|
7202
|
+
position: absolute;
|
|
7203
|
+
bottom: var(--spacing-xs, 0.25rem);
|
|
7204
|
+
right: var(--spacing-xs, 0.25rem);
|
|
7205
|
+
width: 1.5rem;
|
|
7206
|
+
height: 1.5rem;
|
|
7207
|
+
border-radius: var(--radius-xs, 0.25rem);
|
|
7208
|
+
border: none;
|
|
7209
|
+
background: rgba(0, 0, 0, 0.5);
|
|
7210
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7211
|
+
display: none;
|
|
7212
|
+
align-items: center;
|
|
7213
|
+
justify-content: center;
|
|
7214
|
+
cursor: pointer;
|
|
7215
|
+
padding: 0;
|
|
7216
|
+
}
|
|
7217
|
+
.ScMediaSelect_item:hover .ScMediaSelect_previewButton {
|
|
7218
|
+
display: flex;
|
|
7219
|
+
}
|
|
7220
|
+
@media (max-width: 22.5rem) {
|
|
7221
|
+
.ScMediaSelect_grid {
|
|
7222
|
+
grid-template-columns: repeat(3, 1fr);
|
|
7223
|
+
}
|
|
7224
|
+
}
|
|
7225
|
+
|
|
7226
|
+
/* src/SC-todoList/ScTodoList.module.css */
|
|
7227
|
+
.ScTodoList_scTodoList,
|
|
7228
|
+
.ScTodoList_scTodoList * {
|
|
7229
|
+
box-sizing: border-box;
|
|
7230
|
+
}
|
|
7231
|
+
.ScTodoList_scTodoList {
|
|
7232
|
+
display: flex;
|
|
7233
|
+
flex-direction: column;
|
|
7234
|
+
gap: var(--spacing-md, 0.5rem);
|
|
7235
|
+
width: 100%;
|
|
7236
|
+
font-family: Inter, sans-serif;
|
|
7237
|
+
}
|
|
7238
|
+
.ScTodoList_progress {
|
|
7239
|
+
display: flex;
|
|
7240
|
+
align-items: center;
|
|
7241
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
7242
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7243
|
+
padding: 0 var(--spacing-md, 0.5rem);
|
|
7244
|
+
}
|
|
7245
|
+
.ScTodoList_progressIcon {
|
|
7246
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7247
|
+
flex-shrink: 0;
|
|
7248
|
+
}
|
|
7249
|
+
.ScTodoList_progressText {
|
|
7250
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7251
|
+
font-family: Inter, sans-serif;
|
|
7252
|
+
font-size: 0.6875rem;
|
|
7253
|
+
line-height: 1rem;
|
|
7254
|
+
font-weight: 400;
|
|
7255
|
+
}
|
|
7256
|
+
.ScTodoList_rows {
|
|
7257
|
+
display: flex;
|
|
7258
|
+
flex-direction: column;
|
|
7259
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
7260
|
+
}
|
|
7261
|
+
.ScTodoList_row {
|
|
7262
|
+
display: flex;
|
|
7263
|
+
align-items: center;
|
|
7264
|
+
gap: var(--spacing-md, 0.5rem);
|
|
7265
|
+
padding: var(--spacing-xs, 0.25rem) var(--spacing-md, 0.5rem);
|
|
7266
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
7267
|
+
width: 100%;
|
|
7268
|
+
}
|
|
7269
|
+
.ScTodoList_row:hover {
|
|
7270
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
7271
|
+
}
|
|
7272
|
+
.ScTodoList_checkbox {
|
|
7273
|
+
display: inline-flex;
|
|
7274
|
+
align-items: center;
|
|
7275
|
+
justify-content: center;
|
|
7276
|
+
width: 1.125rem;
|
|
7277
|
+
height: 1.125rem;
|
|
7278
|
+
flex-shrink: 0;
|
|
7279
|
+
padding: 0;
|
|
7280
|
+
margin: 0;
|
|
7281
|
+
background: transparent;
|
|
7282
|
+
border: none;
|
|
7283
|
+
cursor: pointer;
|
|
7284
|
+
outline: none;
|
|
7285
|
+
}
|
|
7286
|
+
.ScTodoList_content {
|
|
7287
|
+
flex: 1;
|
|
7288
|
+
min-width: 0;
|
|
7289
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7290
|
+
font-family: Inter, sans-serif;
|
|
7291
|
+
font-size: 0.875rem;
|
|
7292
|
+
line-height: 1.25rem;
|
|
7293
|
+
font-weight: 400;
|
|
7294
|
+
word-break: break-word;
|
|
7295
|
+
}
|
|
7296
|
+
.ScTodoList_content.ScTodoList_status-completed {
|
|
7297
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7298
|
+
text-decoration: line-through;
|
|
7299
|
+
}
|
|
7300
|
+
.ScTodoList_editInput {
|
|
7301
|
+
flex: 1;
|
|
7302
|
+
min-width: 0;
|
|
7303
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7304
|
+
font-family: Inter, sans-serif;
|
|
7305
|
+
font-size: 0.875rem;
|
|
7306
|
+
line-height: 1.25rem;
|
|
7307
|
+
font-weight: 400;
|
|
7308
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
7309
|
+
border: 1px solid var(--alias-border-strong, #5c5c5c);
|
|
7310
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
7311
|
+
padding: var(--spacing-xs, 0.25rem) var(--spacing-md, 0.5rem);
|
|
7312
|
+
outline: none;
|
|
7313
|
+
}
|
|
7314
|
+
.ScTodoList_actions {
|
|
7315
|
+
display: flex;
|
|
7316
|
+
align-items: center;
|
|
7317
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
7318
|
+
flex-shrink: 0;
|
|
7319
|
+
opacity: 0;
|
|
7320
|
+
pointer-events: none;
|
|
7321
|
+
transition: opacity 0.12s ease;
|
|
7322
|
+
}
|
|
7323
|
+
.ScTodoList_row:hover .ScTodoList_actions,
|
|
7324
|
+
.ScTodoList_row:focus-within .ScTodoList_actions {
|
|
7325
|
+
opacity: 1;
|
|
7326
|
+
pointer-events: auto;
|
|
7327
|
+
}
|
|
7328
|
+
.ScTodoList_actionButton {
|
|
7329
|
+
display: inline-flex;
|
|
7330
|
+
align-items: center;
|
|
7331
|
+
justify-content: center;
|
|
7332
|
+
width: 1.5rem;
|
|
7333
|
+
height: 1.5rem;
|
|
7334
|
+
padding: 0;
|
|
7335
|
+
margin: 0;
|
|
7336
|
+
background: transparent;
|
|
7337
|
+
border: none;
|
|
7338
|
+
border-radius: var(--radius-xs, 0.25rem);
|
|
7339
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7340
|
+
cursor: pointer;
|
|
7341
|
+
outline: none;
|
|
7342
|
+
}
|
|
7343
|
+
.ScTodoList_actionButton:hover {
|
|
7344
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7345
|
+
}
|
|
7346
|
+
.ScTodoList_actionButtonDanger:hover {
|
|
7347
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7348
|
+
}
|
|
7349
|
+
.ScTodoList_addRow {
|
|
7350
|
+
display: flex;
|
|
7351
|
+
align-items: center;
|
|
7352
|
+
gap: var(--spacing-md, 0.5rem);
|
|
7353
|
+
width: 100%;
|
|
7354
|
+
}
|
|
7355
|
+
.ScTodoList_addInput {
|
|
7356
|
+
flex: 1;
|
|
7357
|
+
min-width: 0;
|
|
7358
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7359
|
+
font-family: Inter, sans-serif;
|
|
7360
|
+
font-size: 0.875rem;
|
|
7361
|
+
line-height: 1.25rem;
|
|
7362
|
+
font-weight: 400;
|
|
7363
|
+
height: 2.5rem;
|
|
7364
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
7365
|
+
border: 1px solid var(--alias-border-subtle, transparent);
|
|
7366
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
7367
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
|
|
7368
|
+
outline: none;
|
|
7369
|
+
}
|
|
7370
|
+
.ScTodoList_addInput::placeholder {
|
|
7371
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7372
|
+
}
|
|
7373
|
+
.ScTodoList_addInput:hover,
|
|
7374
|
+
.ScTodoList_addInput:focus {
|
|
7375
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
7376
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
7377
|
+
}
|
|
7378
|
+
.ScTodoList_addButton {
|
|
7379
|
+
display: inline-flex;
|
|
7380
|
+
align-items: center;
|
|
7381
|
+
justify-content: center;
|
|
7382
|
+
width: 2.5rem;
|
|
7383
|
+
height: 2.5rem;
|
|
7384
|
+
flex-shrink: 0;
|
|
7385
|
+
padding: 0;
|
|
7386
|
+
margin: 0;
|
|
7387
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
7388
|
+
border: 1px solid var(--alias-border-subtle, transparent);
|
|
7389
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
7390
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7391
|
+
cursor: pointer;
|
|
7392
|
+
outline: none;
|
|
7393
|
+
transition: opacity 0.12s ease;
|
|
7394
|
+
}
|
|
7395
|
+
.ScTodoList_addButton:hover:not(:disabled) {
|
|
7396
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
7397
|
+
border-color: var(--alias-border-default, #3e3e3e);
|
|
7398
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7399
|
+
}
|
|
7400
|
+
.ScTodoList_addButton:disabled {
|
|
7401
|
+
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7402
|
+
cursor: not-allowed;
|
|
7403
|
+
}
|
|
7404
|
+
|
|
6288
7405
|
/* src/SC-Role-Mobile/ScRoleMobile.module.css */
|
|
6289
7406
|
.ScRoleMobile_scRoleMobile {
|
|
6290
7407
|
display: flex;
|