@streamoid/ui 0.6.45 → 0.6.47
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 +320 -302
- package/dist/index.d.mts +129 -4
- package/dist/index.d.ts +129 -4
- package/dist/index.js +1102 -916
- package/dist/index.mjs +1081 -892
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -971,7 +971,7 @@
|
|
|
971
971
|
position: relative;
|
|
972
972
|
}
|
|
973
973
|
.ScBadges_badge {
|
|
974
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
974
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
975
975
|
text-align: left;
|
|
976
976
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
977
977
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -985,7 +985,7 @@
|
|
|
985
985
|
.ScBadges_scBadges.ScBadges_style-solid.ScBadges_variant-success .ScBadges_badge,
|
|
986
986
|
.ScBadges_scBadges.ScBadges_style-solid.ScBadges_variant-warning .ScBadges_badge,
|
|
987
987
|
.ScBadges_scBadges.ScBadges_style-solid.ScBadges_variant-error .ScBadges_badge {
|
|
988
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
988
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
989
989
|
}
|
|
990
990
|
.ScBadges_scBadges.ScBadges_style-solid.ScBadges_variant-warning {
|
|
991
991
|
background: var(--alias-fill-warning-solidactive, #b57200);
|
|
@@ -1005,31 +1005,31 @@
|
|
|
1005
1005
|
border-color: var(--alias-border-strong, #5c5c5c);
|
|
1006
1006
|
}
|
|
1007
1007
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-default .ScBadges_badge {
|
|
1008
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
1008
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
1009
1009
|
}
|
|
1010
1010
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-success {
|
|
1011
1011
|
border-color: var(--alias-border-successplus, #00351f);
|
|
1012
1012
|
}
|
|
1013
1013
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-success .ScBadges_badge {
|
|
1014
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
1014
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
1015
1015
|
}
|
|
1016
1016
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-warning {
|
|
1017
1017
|
border-color: var(--alias-border-warningplus, #382300);
|
|
1018
1018
|
}
|
|
1019
1019
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-warning .ScBadges_badge {
|
|
1020
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
1020
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
1021
1021
|
}
|
|
1022
1022
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-error {
|
|
1023
1023
|
border-color: var(--alias-border-errorplus, #3b0808);
|
|
1024
1024
|
}
|
|
1025
1025
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-error .ScBadges_badge {
|
|
1026
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
1026
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
1027
1027
|
}
|
|
1028
1028
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-info {
|
|
1029
1029
|
border-color: var(--alias-border-infoplus, #071c47);
|
|
1030
1030
|
}
|
|
1031
1031
|
.ScBadges_scBadges.ScBadges_style-opaque.ScBadges_variant-info .ScBadges_badge {
|
|
1032
|
-
color: var(--alias-text-and-icons-info, #155cd6);
|
|
1032
|
+
color: var(--alias-text---icons-info, var(--alias-text-and-icons-info, #155cd6));
|
|
1033
1033
|
}
|
|
1034
1034
|
|
|
1035
1035
|
/* src/SC-Billing logs table header/ScBillingLogsTableHeader.module.css */
|
|
@@ -1071,7 +1071,7 @@
|
|
|
1071
1071
|
position: relative;
|
|
1072
1072
|
}
|
|
1073
1073
|
.ScHeader_headerText {
|
|
1074
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
1074
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
1075
1075
|
text-align: left;
|
|
1076
1076
|
font-family: var(--font-family-font-family-body, "Inter-Regular", sans-serif);
|
|
1077
1077
|
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
@@ -1112,7 +1112,7 @@
|
|
|
1112
1112
|
position: relative;
|
|
1113
1113
|
}
|
|
1114
1114
|
.ScBillingLogsTableList_customerName {
|
|
1115
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1115
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1116
1116
|
text-align: left;
|
|
1117
1117
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
1118
1118
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -1125,7 +1125,7 @@
|
|
|
1125
1125
|
white-space: nowrap;
|
|
1126
1126
|
}
|
|
1127
1127
|
.ScBillingLogsTableList_userName {
|
|
1128
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1128
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1129
1129
|
text-align: left;
|
|
1130
1130
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
1131
1131
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -1138,7 +1138,7 @@
|
|
|
1138
1138
|
white-space: nowrap;
|
|
1139
1139
|
}
|
|
1140
1140
|
.ScBillingLogsTableList_date {
|
|
1141
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1141
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1142
1142
|
text-align: left;
|
|
1143
1143
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
1144
1144
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
white-space: nowrap;
|
|
1152
1152
|
}
|
|
1153
1153
|
.ScBillingLogsTableList_usage {
|
|
1154
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
1154
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
1155
1155
|
text-align: left;
|
|
1156
1156
|
font-family: var( --text-text-md-semibold-font-family, "Inter-SemiBold", sans-serif );
|
|
1157
1157
|
font-size: var(--text-text-md-semibold-font-size, 1rem);
|
|
@@ -1164,7 +1164,7 @@
|
|
|
1164
1164
|
white-space: nowrap;
|
|
1165
1165
|
}
|
|
1166
1166
|
.ScBillingLogsTableList_cost {
|
|
1167
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1167
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1168
1168
|
text-align: left;
|
|
1169
1169
|
font-family: var( --text-text-md-semibold-font-family, "Inter-SemiBold", sans-serif );
|
|
1170
1170
|
font-size: var(--text-text-md-semibold-font-size, 1rem);
|
|
@@ -1193,10 +1193,10 @@
|
|
|
1193
1193
|
align-items: center;
|
|
1194
1194
|
justify-content: flex-start;
|
|
1195
1195
|
position: relative;
|
|
1196
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1196
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1197
1197
|
}
|
|
1198
1198
|
.ScBillingHistoryTableList_invoiceNumber {
|
|
1199
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1199
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1200
1200
|
text-align: left;
|
|
1201
1201
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
1202
1202
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -1209,7 +1209,7 @@
|
|
|
1209
1209
|
white-space: nowrap;
|
|
1210
1210
|
}
|
|
1211
1211
|
.ScBillingHistoryTableList_amount {
|
|
1212
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
1212
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
1213
1213
|
text-align: left;
|
|
1214
1214
|
font-family: var( --text-text-md-semibold-font-family, "Inter-SemiBold", sans-serif );
|
|
1215
1215
|
font-size: var(--text-text-md-semibold-font-size, 1rem);
|
|
@@ -1222,7 +1222,7 @@
|
|
|
1222
1222
|
white-space: nowrap;
|
|
1223
1223
|
}
|
|
1224
1224
|
.ScBillingHistoryTableList_date {
|
|
1225
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1225
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1226
1226
|
text-align: left;
|
|
1227
1227
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
1228
1228
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -1254,7 +1254,7 @@
|
|
|
1254
1254
|
position: relative;
|
|
1255
1255
|
}
|
|
1256
1256
|
.ScPairtext_content {
|
|
1257
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1257
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1258
1258
|
text-align: left;
|
|
1259
1259
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
1260
1260
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -1362,7 +1362,7 @@
|
|
|
1362
1362
|
z-index: 1;
|
|
1363
1363
|
}
|
|
1364
1364
|
.ScButton_label {
|
|
1365
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
1365
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
1366
1366
|
text-align: left;
|
|
1367
1367
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
1368
1368
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -1420,7 +1420,7 @@
|
|
|
1420
1420
|
}
|
|
1421
1421
|
.ScButton_scButton.ScButton_type-primary.ScButton_variant-error .ScButton_label,
|
|
1422
1422
|
.ScButton_scButton.ScButton_type-primary.ScButton_variant-error .ScButton_container {
|
|
1423
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
1423
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
1424
1424
|
}
|
|
1425
1425
|
.ScButton_scButton.ScButton_type-secondary {
|
|
1426
1426
|
border-style: solid;
|
|
@@ -1433,7 +1433,7 @@
|
|
|
1433
1433
|
}
|
|
1434
1434
|
.ScButton_scButton.ScButton_type-secondary .ScButton_label,
|
|
1435
1435
|
.ScButton_scButton.ScButton_type-secondary .ScButton_container {
|
|
1436
|
-
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
1436
|
+
color: var(--alias-text---icons-errorcont, var(--alias-text-and-icons-errorcont, #eb6b6b));
|
|
1437
1437
|
}
|
|
1438
1438
|
.ScButton_scButton.ScButton_type-secondary:hover,
|
|
1439
1439
|
.ScButton_scButton.ScButton_state-hover.ScButton_type-secondary {
|
|
@@ -1448,16 +1448,16 @@
|
|
|
1448
1448
|
background: var(--alias-fill-base-base, #f5f5f5);
|
|
1449
1449
|
}
|
|
1450
1450
|
.ScButton_scButton.ScButton_variant-secondary .ScButton_label {
|
|
1451
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
1451
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
1452
1452
|
}
|
|
1453
1453
|
.ScButton_scButton.ScButton_variant-secondary .ScButton_container {
|
|
1454
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
1454
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
1455
1455
|
}
|
|
1456
1456
|
.ScButton_scButton.ScButton_variant-tertiary .ScButton_label,
|
|
1457
1457
|
.ScButton_scButton.ScButton_variant-outline .ScButton_label,
|
|
1458
1458
|
.ScButton_scButton.ScButton_variant-tertiary .ScButton_container,
|
|
1459
1459
|
.ScButton_scButton.ScButton_variant-outline .ScButton_container {
|
|
1460
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1460
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1461
1461
|
}
|
|
1462
1462
|
.ScButton_scButton.ScButton_state-default.ScButton_variant-tertiary,
|
|
1463
1463
|
.ScButton_scButton.ScButton_state-disabled.ScButton_variant-tertiary,
|
|
@@ -1469,7 +1469,7 @@
|
|
|
1469
1469
|
}
|
|
1470
1470
|
.ScButton_scButton.ScButton_type-tertiary .ScButton_label,
|
|
1471
1471
|
.ScButton_scButton.ScButton_type-tertiary .ScButton_container {
|
|
1472
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
1472
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
1473
1473
|
}
|
|
1474
1474
|
.ScButton_scButton.ScButton_type-tertiary:hover,
|
|
1475
1475
|
.ScButton_scButton.ScButton_state-hover.ScButton_type-tertiary {
|
|
@@ -1502,7 +1502,7 @@
|
|
|
1502
1502
|
}
|
|
1503
1503
|
.ScButton_scButton.ScButton_variant-mono .ScButton_label,
|
|
1504
1504
|
.ScButton_scButton.ScButton_variant-mono .ScButton_container {
|
|
1505
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
1505
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
1506
1506
|
}
|
|
1507
1507
|
.ScButton_scButton.ScButton_variant-mono:hover,
|
|
1508
1508
|
.ScButton_scButton.ScButton_state-hover.ScButton_variant-mono {
|
|
@@ -1790,7 +1790,7 @@
|
|
|
1790
1790
|
position: relative;
|
|
1791
1791
|
}
|
|
1792
1792
|
.ScCalendar_monthYear {
|
|
1793
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
1793
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
1794
1794
|
text-align: left;
|
|
1795
1795
|
font-family: var( --text-text-md-regular-font-family, "Inter-Regular", sans-serif );
|
|
1796
1796
|
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
@@ -2031,7 +2031,7 @@
|
|
|
2031
2031
|
position: relative;
|
|
2032
2032
|
}
|
|
2033
2033
|
.ScCalendarDateComps_date {
|
|
2034
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2034
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2035
2035
|
text-align: center;
|
|
2036
2036
|
font-family: var( --text-text-md-regular-font-family, "Inter-Regular", sans-serif );
|
|
2037
2037
|
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
@@ -2045,7 +2045,7 @@
|
|
|
2045
2045
|
}
|
|
2046
2046
|
.ScCalendarDateComps_scCalendarDateComps.ScCalendarDateComps_state-today {
|
|
2047
2047
|
border-style: solid;
|
|
2048
|
-
border-color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2048
|
+
border-color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2049
2049
|
border-width: 0rem 0rem 0.0625rem 0rem;
|
|
2050
2050
|
}
|
|
2051
2051
|
.ScCalendarDateComps_scCalendarDateComps.ScCalendarDateComps_state-range-start {
|
|
@@ -2093,13 +2093,13 @@
|
|
|
2093
2093
|
align-self: stretch;
|
|
2094
2094
|
flex-shrink: 0;
|
|
2095
2095
|
position: relative;
|
|
2096
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2096
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2097
2097
|
}
|
|
2098
2098
|
.ScCreditsUsageCard_scPairtextInstance {
|
|
2099
2099
|
flex: 1 !important;
|
|
2100
2100
|
}
|
|
2101
2101
|
.ScCreditsUsageCard_usageText {
|
|
2102
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2102
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2103
2103
|
text-align: right;
|
|
2104
2104
|
font-family: var( --lead-text-lead-text-xs-medium-font-family, "Inter-Medium", sans-serif );
|
|
2105
2105
|
font-size: var(--lead-text-lead-text-xs-medium-font-size, 1.125rem);
|
|
@@ -2128,7 +2128,7 @@
|
|
|
2128
2128
|
width: unset !important;
|
|
2129
2129
|
}
|
|
2130
2130
|
.ScCreditsUsageCard_remainingText {
|
|
2131
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2131
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2132
2132
|
text-align: right;
|
|
2133
2133
|
font-family: var( --text-text-md-regular-font-family, "Inter-Regular", sans-serif );
|
|
2134
2134
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
@@ -2151,7 +2151,7 @@
|
|
|
2151
2151
|
left: 50%;
|
|
2152
2152
|
transform: translateX(-50%);
|
|
2153
2153
|
background: var(--alias-surface-raised, #242424);
|
|
2154
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2154
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2155
2155
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
2156
2156
|
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
2157
2157
|
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
@@ -2231,8 +2231,8 @@
|
|
|
2231
2231
|
text-overflow: ellipsis;
|
|
2232
2232
|
white-space: nowrap;
|
|
2233
2233
|
text-align: center;
|
|
2234
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2235
|
-
font-family:
|
|
2234
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
2235
|
+
font-family: inherit;
|
|
2236
2236
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
2237
2237
|
font-weight: 500;
|
|
2238
2238
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -2277,7 +2277,7 @@
|
|
|
2277
2277
|
aspect-ratio: 1;
|
|
2278
2278
|
}
|
|
2279
2279
|
.ScGoogleSignIn_signInText {
|
|
2280
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2280
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2281
2281
|
text-align: left;
|
|
2282
2282
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
2283
2283
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -2294,7 +2294,7 @@
|
|
|
2294
2294
|
}
|
|
2295
2295
|
.ScGoogleSignIn_scGoogleSignIn:hover .ScGoogleSignIn_signInText,
|
|
2296
2296
|
.ScGoogleSignIn_scGoogleSignIn.ScGoogleSignIn_hover-true .ScGoogleSignIn_signInText {
|
|
2297
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
2297
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
2298
2298
|
}
|
|
2299
2299
|
|
|
2300
2300
|
/* src/SC-Intial Profile Cover/ScIntialProfileCover.module.css */
|
|
@@ -2317,7 +2317,7 @@
|
|
|
2317
2317
|
aspect-ratio: 1;
|
|
2318
2318
|
}
|
|
2319
2319
|
.ScIntialProfileCover_initials {
|
|
2320
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2320
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2321
2321
|
text-align: center;
|
|
2322
2322
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
2323
2323
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -2411,7 +2411,7 @@
|
|
|
2411
2411
|
position: relative;
|
|
2412
2412
|
}
|
|
2413
2413
|
.ScMenuOptions_content {
|
|
2414
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2414
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2415
2415
|
text-align: left;
|
|
2416
2416
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
2417
2417
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -2426,7 +2426,7 @@
|
|
|
2426
2426
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-false .ScMenuOptions_content2,
|
|
2427
2427
|
.ScMenuOptions_scMenuOptions:hover .ScMenuOptions_content2,
|
|
2428
2428
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true .ScMenuOptions_content2 {
|
|
2429
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
2429
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
2430
2430
|
text-align: right;
|
|
2431
2431
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
2432
2432
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -2438,7 +2438,7 @@
|
|
|
2438
2438
|
white-space: nowrap;
|
|
2439
2439
|
}
|
|
2440
2440
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_variant-error .ScMenuOptions_content {
|
|
2441
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
2441
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
2442
2442
|
}
|
|
2443
2443
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_variant-default:hover,
|
|
2444
2444
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true.ScMenuOptions_variant-default,
|
|
@@ -2500,7 +2500,7 @@
|
|
|
2500
2500
|
align-self: stretch;
|
|
2501
2501
|
flex-shrink: 0;
|
|
2502
2502
|
position: relative;
|
|
2503
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2503
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2504
2504
|
}
|
|
2505
2505
|
.ScPlanDetailsCard_scPairtextInstance {
|
|
2506
2506
|
flex: 1 !important;
|
|
@@ -2519,11 +2519,11 @@
|
|
|
2519
2519
|
width: 0.25rem;
|
|
2520
2520
|
height: 0.25rem;
|
|
2521
2521
|
border-radius: var(--radius-full, 999px);
|
|
2522
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2522
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2523
2523
|
flex-shrink: 0;
|
|
2524
2524
|
}
|
|
2525
2525
|
.ScPlanDetailsCard_badgeSubText {
|
|
2526
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2526
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2527
2527
|
font-family: var(--text-text-sm-medium-font-family, "Inter-Medium", sans-serif);
|
|
2528
2528
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
2529
2529
|
line-height: var(--text-text-sm-medium-line-height, 1.25rem);
|
|
@@ -2562,7 +2562,7 @@
|
|
|
2562
2562
|
align-self: stretch;
|
|
2563
2563
|
}
|
|
2564
2564
|
.ScPlanDetailsCard_planName {
|
|
2565
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2565
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2566
2566
|
font-family: var( --lead-text-lead-text-xs-medium-font-family, "Inter-Medium", sans-serif );
|
|
2567
2567
|
font-size: var(--font-size-font-size-lg, 1.125rem);
|
|
2568
2568
|
line-height: var(--line-height-line-height-lg, 1.625rem);
|
|
@@ -2583,10 +2583,10 @@
|
|
|
2583
2583
|
width: 0.25rem;
|
|
2584
2584
|
height: 0.25rem;
|
|
2585
2585
|
border-radius: var(--radius-full, 999px);
|
|
2586
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2586
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2587
2587
|
}
|
|
2588
2588
|
.ScPlanDetailsCard_planPrice {
|
|
2589
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2589
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2590
2590
|
text-align: left;
|
|
2591
2591
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
2592
2592
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -2679,7 +2679,7 @@
|
|
|
2679
2679
|
position: relative;
|
|
2680
2680
|
}
|
|
2681
2681
|
.ScProfile_userName {
|
|
2682
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2682
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2683
2683
|
text-align: left;
|
|
2684
2684
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
2685
2685
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -2692,7 +2692,7 @@
|
|
|
2692
2692
|
white-space: nowrap;
|
|
2693
2693
|
}
|
|
2694
2694
|
.ScProfile_userDescription {
|
|
2695
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2695
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2696
2696
|
text-align: left;
|
|
2697
2697
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
2698
2698
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -2756,7 +2756,7 @@
|
|
|
2756
2756
|
align-items: center;
|
|
2757
2757
|
justify-content: center;
|
|
2758
2758
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
2759
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2759
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2760
2760
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
2761
2761
|
font-size: var(--font-size-font-size-xxl, 1.75rem);
|
|
2762
2762
|
font-weight: 500;
|
|
@@ -2930,7 +2930,7 @@
|
|
|
2930
2930
|
position: relative;
|
|
2931
2931
|
}
|
|
2932
2932
|
.ScWorkspace_userName {
|
|
2933
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2933
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2934
2934
|
text-align: left;
|
|
2935
2935
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
2936
2936
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -2943,7 +2943,7 @@
|
|
|
2943
2943
|
white-space: nowrap;
|
|
2944
2944
|
}
|
|
2945
2945
|
.ScWorkspace_userRole {
|
|
2946
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2946
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2947
2947
|
text-align: left;
|
|
2948
2948
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
2949
2949
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -2991,7 +2991,7 @@
|
|
|
2991
2991
|
position: relative;
|
|
2992
2992
|
}
|
|
2993
2993
|
.ScTabComp_tabText {
|
|
2994
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
2994
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
2995
2995
|
text-align: center;
|
|
2996
2996
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
2997
2997
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3022,7 +3022,7 @@
|
|
|
3022
3022
|
background: var(--alias-fill-base-basehover, #bfbfbf);
|
|
3023
3023
|
}
|
|
3024
3024
|
.ScTabComp_scTabComp.ScTabComp_active-true .ScTabComp_tabText {
|
|
3025
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
3025
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
3026
3026
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
3027
3027
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
3028
3028
|
line-height: var(--text-text-sm-medium-line-height, 1.25rem);
|
|
@@ -3133,7 +3133,7 @@
|
|
|
3133
3133
|
position: relative;
|
|
3134
3134
|
}
|
|
3135
3135
|
.ScTextField_label {
|
|
3136
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3136
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3137
3137
|
text-align: left;
|
|
3138
3138
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3139
3139
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3161,10 +3161,10 @@
|
|
|
3161
3161
|
height: 3rem;
|
|
3162
3162
|
position: relative;
|
|
3163
3163
|
overflow: hidden;
|
|
3164
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3164
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3165
3165
|
}
|
|
3166
3166
|
.ScTextField_inputText {
|
|
3167
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3167
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3168
3168
|
text-align: left;
|
|
3169
3169
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3170
3170
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3184,7 +3184,7 @@
|
|
|
3184
3184
|
white-space: nowrap;
|
|
3185
3185
|
}
|
|
3186
3186
|
.ScTextField_scTextField.ScTextField_label-group-text .ScTextField_info {
|
|
3187
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3187
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3188
3188
|
text-align: right;
|
|
3189
3189
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3190
3190
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3206,7 +3206,7 @@
|
|
|
3206
3206
|
border-color: var(--alias-border-default, transparent);
|
|
3207
3207
|
}
|
|
3208
3208
|
.ScTextField_scTextField.ScTextField_state-filled .ScTextField_inputText {
|
|
3209
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3209
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3210
3210
|
}
|
|
3211
3211
|
.ScTextField_scTextField.ScTextField_state-active .ScTextField_inputContainer {
|
|
3212
3212
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
@@ -3215,18 +3215,18 @@
|
|
|
3215
3215
|
border-width: 0.0625rem;
|
|
3216
3216
|
}
|
|
3217
3217
|
.ScTextField_scTextField.ScTextField_state-active .ScTextField_inputText {
|
|
3218
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3218
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3219
3219
|
}
|
|
3220
3220
|
.ScTextField_ScTextField_labelContainer,
|
|
3221
3221
|
.ScTextField_scTextField.ScTextField_label-group-none .ScTextField_labelContainer {
|
|
3222
3222
|
display: none;
|
|
3223
3223
|
}
|
|
3224
3224
|
.ScTextField_required {
|
|
3225
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
3225
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
3226
3226
|
margin-left: 0.125rem;
|
|
3227
3227
|
}
|
|
3228
3228
|
.ScTextField_desc {
|
|
3229
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3229
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3230
3230
|
text-align: left;
|
|
3231
3231
|
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
3232
3232
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -3288,7 +3288,7 @@
|
|
|
3288
3288
|
max-height: 100px;
|
|
3289
3289
|
overflow-y: auto;
|
|
3290
3290
|
line-height: 1.4;
|
|
3291
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3291
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3292
3292
|
}
|
|
3293
3293
|
|
|
3294
3294
|
/* src/SC-Role/ScRole.module.css */
|
|
@@ -3313,7 +3313,7 @@
|
|
|
3313
3313
|
position: relative;
|
|
3314
3314
|
}
|
|
3315
3315
|
.ScRole_role {
|
|
3316
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
3316
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
3317
3317
|
text-align: left;
|
|
3318
3318
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
3319
3319
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -3326,7 +3326,7 @@
|
|
|
3326
3326
|
border-color: var(--alias-border-strong, #5c5c5c);
|
|
3327
3327
|
}
|
|
3328
3328
|
.ScRole_scRole.ScRole_type-member .ScRole_role {
|
|
3329
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3329
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3330
3330
|
}
|
|
3331
3331
|
|
|
3332
3332
|
/* src/SC-Sidebar/ScSidebar.module.css */
|
|
@@ -3409,7 +3409,7 @@
|
|
|
3409
3409
|
position: relative;
|
|
3410
3410
|
}
|
|
3411
3411
|
.ScSidebar_content {
|
|
3412
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3412
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3413
3413
|
text-align: left;
|
|
3414
3414
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
3415
3415
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -3561,7 +3561,7 @@
|
|
|
3561
3561
|
flex-shrink: 0;
|
|
3562
3562
|
}
|
|
3563
3563
|
.ScSidebarMenu_content {
|
|
3564
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3564
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
3565
3565
|
text-align: left;
|
|
3566
3566
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3567
3567
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3587,17 +3587,17 @@
|
|
|
3587
3587
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
3588
3588
|
}
|
|
3589
3589
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-active .ScSidebarMenu_content {
|
|
3590
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3590
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
3591
3591
|
}
|
|
3592
3592
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-highlight .ScSidebarMenu_content {
|
|
3593
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3593
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
3594
3594
|
}
|
|
3595
3595
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-active {
|
|
3596
3596
|
background: var(--alias-surface-canvas, #0B0B0B);
|
|
3597
3597
|
box-shadow: inset 0 0 0 0.5px var(--alias-border-subtle, #242424);
|
|
3598
3598
|
}
|
|
3599
3599
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-active .ScSidebarMenu_content {
|
|
3600
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3600
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
3601
3601
|
}
|
|
3602
3602
|
.ScSidebarMenu_scSidebarMenu:hover,
|
|
3603
3603
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-hover {
|
|
@@ -3689,7 +3689,7 @@
|
|
|
3689
3689
|
position: relative;
|
|
3690
3690
|
}
|
|
3691
3691
|
.ScVersion_content {
|
|
3692
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3692
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3693
3693
|
text-align: left;
|
|
3694
3694
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3695
3695
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -4241,7 +4241,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4241
4241
|
.ScArtifaxSidebar_sectionLabel {
|
|
4242
4242
|
flex: 1 1 0;
|
|
4243
4243
|
min-width: 0;
|
|
4244
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4244
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4245
4245
|
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
4246
4246
|
font-size: 0.625rem;
|
|
4247
4247
|
line-height: 1.25rem;
|
|
@@ -4256,7 +4256,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4256
4256
|
width: 1rem;
|
|
4257
4257
|
height: 1rem;
|
|
4258
4258
|
flex-shrink: 0;
|
|
4259
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4259
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4260
4260
|
}
|
|
4261
4261
|
.ScArtifaxSidebar_profileRow {
|
|
4262
4262
|
display: flex;
|
|
@@ -4356,7 +4356,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4356
4356
|
font-size: 0.875rem;
|
|
4357
4357
|
font-weight: 500;
|
|
4358
4358
|
line-height: 1.25rem;
|
|
4359
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4359
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
4360
4360
|
overflow: hidden;
|
|
4361
4361
|
text-overflow: ellipsis;
|
|
4362
4362
|
white-space: nowrap;
|
|
@@ -4366,7 +4366,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4366
4366
|
font-size: 0.75rem;
|
|
4367
4367
|
font-weight: 400;
|
|
4368
4368
|
line-height: 1.125rem;
|
|
4369
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4369
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4370
4370
|
overflow: hidden;
|
|
4371
4371
|
text-overflow: ellipsis;
|
|
4372
4372
|
white-space: nowrap;
|
|
@@ -4418,7 +4418,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4418
4418
|
content: "";
|
|
4419
4419
|
width: 0.625rem;
|
|
4420
4420
|
height: 0.625rem;
|
|
4421
|
-
border: 1px dashed var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4421
|
+
border: 1px dashed var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4422
4422
|
border-radius: var(--radius-full, 999px);
|
|
4423
4423
|
}
|
|
4424
4424
|
.ScArtifaxSidebar_versionText {
|
|
@@ -4507,6 +4507,24 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4507
4507
|
[data-theme=Light] .ScArtifaxSidebar_sectionLabel {
|
|
4508
4508
|
font-weight: 500;
|
|
4509
4509
|
}
|
|
4510
|
+
.ScArtifaxSidebar_header {
|
|
4511
|
+
display: flex;
|
|
4512
|
+
flex-direction: column;
|
|
4513
|
+
width: 100%;
|
|
4514
|
+
min-width: 0;
|
|
4515
|
+
gap: var(--spacing-sm, 6px);
|
|
4516
|
+
}
|
|
4517
|
+
.ScArtifaxSidebar_headerCollapsed {
|
|
4518
|
+
align-items: center;
|
|
4519
|
+
}
|
|
4520
|
+
.ScArtifaxSidebar_headerTriggerSlot {
|
|
4521
|
+
display: block;
|
|
4522
|
+
width: 100%;
|
|
4523
|
+
min-width: 0;
|
|
4524
|
+
}
|
|
4525
|
+
.ScArtifaxSidebar_headerDivider {
|
|
4526
|
+
margin-top: var(--spacing-sm, 6px);
|
|
4527
|
+
}
|
|
4510
4528
|
|
|
4511
4529
|
/* src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.module.css */
|
|
4512
4530
|
.ScSidebarSwitchMenu_scSidebarSwitchMenu,
|
|
@@ -4546,7 +4564,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4546
4564
|
flex: 1 0 0;
|
|
4547
4565
|
min-width: 0;
|
|
4548
4566
|
position: relative;
|
|
4549
|
-
font-family: var(--
|
|
4567
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
4550
4568
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
4551
4569
|
text-align: left;
|
|
4552
4570
|
}
|
|
@@ -4672,7 +4690,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4672
4690
|
display: inline-flex;
|
|
4673
4691
|
align-items: center;
|
|
4674
4692
|
justify-content: center;
|
|
4675
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4693
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4676
4694
|
}
|
|
4677
4695
|
.ScSideBarLogoUnit_scSideBarLogoUnit.ScSideBarLogoUnit_collapsed {
|
|
4678
4696
|
width: auto;
|
|
@@ -4742,7 +4760,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4742
4760
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
4743
4761
|
font-weight: 500;
|
|
4744
4762
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
4745
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4763
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4746
4764
|
width: 100%;
|
|
4747
4765
|
margin: 0;
|
|
4748
4766
|
}
|
|
@@ -4751,7 +4769,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4751
4769
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4752
4770
|
font-weight: 400;
|
|
4753
4771
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4754
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4772
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4755
4773
|
width: 100%;
|
|
4756
4774
|
margin: 0;
|
|
4757
4775
|
}
|
|
@@ -4772,7 +4790,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4772
4790
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4773
4791
|
font-weight: 400;
|
|
4774
4792
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4775
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4793
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4776
4794
|
white-space: nowrap;
|
|
4777
4795
|
}
|
|
4778
4796
|
.ScGuide_skipButton {
|
|
@@ -4784,7 +4802,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4784
4802
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4785
4803
|
font-weight: 400;
|
|
4786
4804
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4787
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4805
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4788
4806
|
white-space: nowrap;
|
|
4789
4807
|
}
|
|
4790
4808
|
.ScGuide_skipButton:disabled {
|
|
@@ -4869,7 +4887,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4869
4887
|
position: relative;
|
|
4870
4888
|
}
|
|
4871
4889
|
.ScSlider_progressDot2 {
|
|
4872
|
-
background: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4890
|
+
background: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4873
4891
|
border-radius: var(--radius-full, 62.4375rem);
|
|
4874
4892
|
flex-shrink: 0;
|
|
4875
4893
|
width: 0.5rem;
|
|
@@ -4927,7 +4945,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4927
4945
|
position: relative;
|
|
4928
4946
|
}
|
|
4929
4947
|
.ScAppListingCard_title {
|
|
4930
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4948
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4931
4949
|
text-align: left;
|
|
4932
4950
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
4933
4951
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -4937,7 +4955,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4937
4955
|
flex: 1;
|
|
4938
4956
|
}
|
|
4939
4957
|
.ScAppListingCard_description {
|
|
4940
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4958
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4941
4959
|
text-align: left;
|
|
4942
4960
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
4943
4961
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -4984,7 +5002,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4984
5002
|
justify-content: flex-start;
|
|
4985
5003
|
flex-shrink: 0;
|
|
4986
5004
|
position: relative;
|
|
4987
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5005
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4988
5006
|
}
|
|
4989
5007
|
.ScAppCard_textContainer {
|
|
4990
5008
|
display: flex;
|
|
@@ -4996,7 +5014,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4996
5014
|
position: relative;
|
|
4997
5015
|
}
|
|
4998
5016
|
.ScAppCard_title {
|
|
4999
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5017
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5000
5018
|
text-align: left;
|
|
5001
5019
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
5002
5020
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -5009,7 +5027,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5009
5027
|
white-space: nowrap;
|
|
5010
5028
|
}
|
|
5011
5029
|
.ScAppCard_subtitle {
|
|
5012
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5030
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5013
5031
|
text-align: left;
|
|
5014
5032
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5015
5033
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -5112,7 +5130,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5112
5130
|
}
|
|
5113
5131
|
.ScAppCardV3_appName {
|
|
5114
5132
|
flex: 1 0 0;
|
|
5115
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5133
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5116
5134
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
5117
5135
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
5118
5136
|
line-height: var(--text-text-md-medium-line-height, 1.5rem);
|
|
@@ -5150,14 +5168,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5150
5168
|
width: 20px;
|
|
5151
5169
|
height: 20px;
|
|
5152
5170
|
flex-shrink: 0;
|
|
5153
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5171
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5154
5172
|
}
|
|
5155
5173
|
.ScAppCardV3_iconPillIcon > * {
|
|
5156
5174
|
width: 100%;
|
|
5157
5175
|
height: 100%;
|
|
5158
5176
|
}
|
|
5159
5177
|
.ScAppCardV3_description {
|
|
5160
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5178
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5161
5179
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5162
5180
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
5163
5181
|
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
@@ -5249,7 +5267,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5249
5267
|
flex-shrink: 0;
|
|
5250
5268
|
}
|
|
5251
5269
|
.ScBriefCard_description {
|
|
5252
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5270
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5253
5271
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5254
5272
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
5255
5273
|
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
@@ -5286,7 +5304,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5286
5304
|
position: relative;
|
|
5287
5305
|
}
|
|
5288
5306
|
.ScAppField_title {
|
|
5289
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5307
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5290
5308
|
text-align: left;
|
|
5291
5309
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5292
5310
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5469,7 +5487,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5469
5487
|
position: relative;
|
|
5470
5488
|
}
|
|
5471
5489
|
.ScCatalogixInvite_scCatalogixInvite.ScCatalogixInvite_active-true .ScCatalogixInvite_storeAccessTitle {
|
|
5472
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5490
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5473
5491
|
text-align: left;
|
|
5474
5492
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5475
5493
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5482,7 +5500,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5482
5500
|
white-space: nowrap;
|
|
5483
5501
|
}
|
|
5484
5502
|
.ScCatalogixInvite_scCatalogixInvite.ScCatalogixInvite_active-true .ScCatalogixInvite_selectedCount {
|
|
5485
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5503
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5486
5504
|
text-align: right;
|
|
5487
5505
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5488
5506
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -5546,10 +5564,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5546
5564
|
flex-shrink: 0;
|
|
5547
5565
|
height: 3rem;
|
|
5548
5566
|
position: relative;
|
|
5549
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5567
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5550
5568
|
}
|
|
5551
5569
|
.ScOnlyField_inputText {
|
|
5552
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5570
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5553
5571
|
text-align: left;
|
|
5554
5572
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5555
5573
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5562,7 +5580,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5562
5580
|
justify-content: flex-start;
|
|
5563
5581
|
}
|
|
5564
5582
|
.ScOnlyField_inputText::placeholder {
|
|
5565
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5583
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5566
5584
|
}
|
|
5567
5585
|
.ScOnlyField_iconWrapper {
|
|
5568
5586
|
display: flex;
|
|
@@ -5604,7 +5622,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5604
5622
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
5605
5623
|
}
|
|
5606
5624
|
.ScOnlyField_scOnlyField.ScOnlyField_state-filled .ScOnlyField_inputText {
|
|
5607
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5625
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5608
5626
|
}
|
|
5609
5627
|
.ScOnlyField_scOnlyField.ScOnlyField_state-ative-focused .ScOnlyField_inputContainer {
|
|
5610
5628
|
border-style: solid;
|
|
@@ -5679,7 +5697,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5679
5697
|
position: relative;
|
|
5680
5698
|
}
|
|
5681
5699
|
.ScCheckField_label {
|
|
5682
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5700
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5683
5701
|
text-align: left;
|
|
5684
5702
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5685
5703
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5738,7 +5756,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5738
5756
|
position: relative;
|
|
5739
5757
|
}
|
|
5740
5758
|
.ScFieldButton_label {
|
|
5741
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5759
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5742
5760
|
text-align: left;
|
|
5743
5761
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5744
5762
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5765,7 +5783,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5765
5783
|
}
|
|
5766
5784
|
.ScFieldButton_scFieldButton:hover .ScFieldButton_label,
|
|
5767
5785
|
.ScFieldButton_scFieldButton.ScFieldButton_state-hover .ScFieldButton_label {
|
|
5768
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5786
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5769
5787
|
}
|
|
5770
5788
|
|
|
5771
5789
|
/* src/SC-pendingAction/ScPendingAction.module.css */
|
|
@@ -5845,7 +5863,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5845
5863
|
position: relative;
|
|
5846
5864
|
}
|
|
5847
5865
|
.ScQuickPrompt_title {
|
|
5848
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5866
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5849
5867
|
text-align: left;
|
|
5850
5868
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5851
5869
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -5864,7 +5882,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5864
5882
|
position: relative;
|
|
5865
5883
|
}
|
|
5866
5884
|
.ScQuickPrompt_heading {
|
|
5867
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
5885
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
5868
5886
|
text-align: left;
|
|
5869
5887
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
5870
5888
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -5874,7 +5892,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5874
5892
|
align-self: stretch;
|
|
5875
5893
|
}
|
|
5876
5894
|
.ScQuickPrompt_description {
|
|
5877
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5895
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5878
5896
|
text-align: left;
|
|
5879
5897
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5880
5898
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5933,7 +5951,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5933
5951
|
width: unset !important;
|
|
5934
5952
|
}
|
|
5935
5953
|
.ScReferralTableList_date {
|
|
5936
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5954
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5937
5955
|
text-align: left;
|
|
5938
5956
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5939
5957
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5950,7 +5968,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5950
5968
|
align-self: unset !important;
|
|
5951
5969
|
}
|
|
5952
5970
|
.ScReferralTableList_points {
|
|
5953
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
5971
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
5954
5972
|
text-align: left;
|
|
5955
5973
|
font-family: var( --text-text-md-semibold-font-family, "Inter-SemiBold", sans-serif );
|
|
5956
5974
|
font-size: var(--text-text-md-semibold-font-size, 1rem);
|
|
@@ -6021,7 +6039,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6021
6039
|
position: relative;
|
|
6022
6040
|
}
|
|
6023
6041
|
.ScTabField_label {
|
|
6024
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6042
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6025
6043
|
text-align: left;
|
|
6026
6044
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6027
6045
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6126,13 +6144,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6126
6144
|
flex-shrink: 0;
|
|
6127
6145
|
width: 11.25rem;
|
|
6128
6146
|
position: relative;
|
|
6129
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6147
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6130
6148
|
}
|
|
6131
6149
|
.ScTableList_scAccessInstance {
|
|
6132
6150
|
flex-shrink: 0 !important;
|
|
6133
6151
|
}
|
|
6134
6152
|
.ScTableList_userName {
|
|
6135
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6153
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6136
6154
|
text-align: left;
|
|
6137
6155
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6138
6156
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6145,7 +6163,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6145
6163
|
white-space: nowrap;
|
|
6146
6164
|
}
|
|
6147
6165
|
.ScTableList_date {
|
|
6148
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6166
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6149
6167
|
text-align: left;
|
|
6150
6168
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6151
6169
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6218,7 +6236,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6218
6236
|
flex-shrink: 0 !important;
|
|
6219
6237
|
}
|
|
6220
6238
|
.ScWorkspaceCard_workspaceName {
|
|
6221
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6239
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6222
6240
|
text-align: left;
|
|
6223
6241
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
6224
6242
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -6345,8 +6363,8 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6345
6363
|
overflow: hidden;
|
|
6346
6364
|
text-overflow: ellipsis;
|
|
6347
6365
|
white-space: nowrap;
|
|
6348
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6349
|
-
font-family: var(--
|
|
6366
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6367
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6350
6368
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
6351
6369
|
font-weight: 500;
|
|
6352
6370
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -6377,8 +6395,8 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6377
6395
|
white-space: nowrap;
|
|
6378
6396
|
}
|
|
6379
6397
|
.ScWorkspaceSwitchCard_detailLabel {
|
|
6380
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6381
|
-
font-family: var(--
|
|
6398
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
6399
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6382
6400
|
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
6383
6401
|
font-weight: 400;
|
|
6384
6402
|
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
@@ -6386,22 +6404,22 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6386
6404
|
text-overflow: ellipsis;
|
|
6387
6405
|
}
|
|
6388
6406
|
.ScWorkspaceSwitchCard_detailValueRole {
|
|
6389
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6390
|
-
font-family: var(--
|
|
6407
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
6408
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6391
6409
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
6392
6410
|
font-weight: 500;
|
|
6393
6411
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
6394
6412
|
}
|
|
6395
6413
|
.ScWorkspaceSwitchCard_detailValueInfo {
|
|
6396
|
-
color: var(--alias-text-and-icons-info, #2d8fe6);
|
|
6397
|
-
font-family: var(--
|
|
6414
|
+
color: var(--alias-text---icons-info, var(--alias-text-and-icons-info, #2d8fe6));
|
|
6415
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6398
6416
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
6399
6417
|
font-weight: 500;
|
|
6400
6418
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
6401
6419
|
}
|
|
6402
6420
|
.ScWorkspaceSwitchCard_detailValueSecondary {
|
|
6403
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
6404
|
-
font-family: var(--
|
|
6421
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
6422
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6405
6423
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
6406
6424
|
font-weight: 400;
|
|
6407
6425
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -6429,7 +6447,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6429
6447
|
background: var(--alias-fill-error-solidactive, #b01717);
|
|
6430
6448
|
border-radius: var(--medium-5, 0.75rem);
|
|
6431
6449
|
cursor: pointer;
|
|
6432
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
6450
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
6433
6451
|
transition: background-color 0.15s ease;
|
|
6434
6452
|
}
|
|
6435
6453
|
.ScWorkspaceSwitchCard_leaveBtn:hover {
|
|
@@ -6515,7 +6533,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6515
6533
|
cursor: pointer;
|
|
6516
6534
|
text-transform: capitalize;
|
|
6517
6535
|
white-space: nowrap;
|
|
6518
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6536
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6519
6537
|
font-size: 14px;
|
|
6520
6538
|
font-weight: 400;
|
|
6521
6539
|
line-height: 20px;
|
|
@@ -6594,7 +6612,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6594
6612
|
font-weight: 400;
|
|
6595
6613
|
font-size: 1rem;
|
|
6596
6614
|
line-height: 1.375rem;
|
|
6597
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6615
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6598
6616
|
}
|
|
6599
6617
|
.ScPagination_section svg {
|
|
6600
6618
|
cursor: pointer;
|
|
@@ -6607,7 +6625,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6607
6625
|
padding: 0.3125rem 0;
|
|
6608
6626
|
border-radius: 1rem;
|
|
6609
6627
|
background: var(--alias-surface-canvasbase, #1a1a1a);
|
|
6610
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6628
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6611
6629
|
margin: 0 0.5rem;
|
|
6612
6630
|
border: none;
|
|
6613
6631
|
width: 3.75rem;
|
|
@@ -6638,16 +6656,16 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6638
6656
|
flex-shrink: 0;
|
|
6639
6657
|
}
|
|
6640
6658
|
.ScBeacon_success {
|
|
6641
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6659
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
6642
6660
|
}
|
|
6643
6661
|
.ScBeacon_warning {
|
|
6644
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6662
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
6645
6663
|
}
|
|
6646
6664
|
.ScBeacon_error {
|
|
6647
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6665
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
6648
6666
|
}
|
|
6649
6667
|
.ScBeacon_neutral {
|
|
6650
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6668
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
6651
6669
|
}
|
|
6652
6670
|
|
|
6653
6671
|
/* src/SC-StoreCard/ScStoreCard.module.css */
|
|
@@ -6690,7 +6708,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6690
6708
|
min-width: 0;
|
|
6691
6709
|
margin: 0;
|
|
6692
6710
|
height: 3.5rem;
|
|
6693
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6711
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6694
6712
|
text-align: left;
|
|
6695
6713
|
font-family: var( --lead-text-lead-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
6696
6714
|
font-size: var(--lead-text-lead-text-xs-regular-font-size, 1.125rem);
|
|
@@ -6719,7 +6737,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6719
6737
|
overflow: hidden;
|
|
6720
6738
|
text-overflow: ellipsis;
|
|
6721
6739
|
white-space: nowrap;
|
|
6722
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6740
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6723
6741
|
text-align: left;
|
|
6724
6742
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6725
6743
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6731,7 +6749,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6731
6749
|
overflow: hidden;
|
|
6732
6750
|
text-overflow: ellipsis;
|
|
6733
6751
|
white-space: nowrap;
|
|
6734
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6752
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6735
6753
|
text-align: right;
|
|
6736
6754
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6737
6755
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6756,7 +6774,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6756
6774
|
width: 100%;
|
|
6757
6775
|
}
|
|
6758
6776
|
.ScCatalogixStoreHeader_label {
|
|
6759
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6777
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
6760
6778
|
text-align: left;
|
|
6761
6779
|
text-transform: uppercase;
|
|
6762
6780
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
@@ -6806,7 +6824,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6806
6824
|
.ScCatalogixStoreTableList_name {
|
|
6807
6825
|
flex: 1;
|
|
6808
6826
|
min-width: 0;
|
|
6809
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6827
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6810
6828
|
text-align: left;
|
|
6811
6829
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6812
6830
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6829,20 +6847,20 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6829
6847
|
text-overflow: ellipsis;
|
|
6830
6848
|
}
|
|
6831
6849
|
.ScCatalogixStoreTableList_statusSuccess {
|
|
6832
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6850
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
6833
6851
|
}
|
|
6834
6852
|
.ScCatalogixStoreTableList_statusWarning {
|
|
6835
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6853
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
6836
6854
|
}
|
|
6837
6855
|
.ScCatalogixStoreTableList_statusError {
|
|
6838
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6856
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
6839
6857
|
}
|
|
6840
6858
|
.ScCatalogixStoreTableList_statusNeutral {
|
|
6841
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6859
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6842
6860
|
}
|
|
6843
6861
|
.ScCatalogixStoreTableList_cell {
|
|
6844
6862
|
flex-shrink: 0;
|
|
6845
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6863
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6846
6864
|
text-align: left;
|
|
6847
6865
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6848
6866
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6897,7 +6915,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6897
6915
|
.ScDefaultCard_title {
|
|
6898
6916
|
margin: 0;
|
|
6899
6917
|
width: 100%;
|
|
6900
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6918
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6901
6919
|
font-family: var(--text-text-md-regular-font-family, "Inter-Regular", sans-serif);
|
|
6902
6920
|
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
6903
6921
|
line-height: var(--text-text-md-regular-line-height, 1.5rem);
|
|
@@ -6907,7 +6925,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6907
6925
|
.ScDefaultCard_description {
|
|
6908
6926
|
margin: 0;
|
|
6909
6927
|
width: 100%;
|
|
6910
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6928
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6911
6929
|
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
6912
6930
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
6913
6931
|
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
@@ -6954,7 +6972,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6954
6972
|
}
|
|
6955
6973
|
.ScValueMappingL1_label {
|
|
6956
6974
|
width: 100%;
|
|
6957
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6975
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6958
6976
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6959
6977
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6960
6978
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -6975,7 +6993,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6975
6993
|
width: 0.5rem;
|
|
6976
6994
|
height: 0.5rem;
|
|
6977
6995
|
border-radius: var(--radius-full, 999px);
|
|
6978
|
-
background: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
6996
|
+
background: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
6979
6997
|
}
|
|
6980
6998
|
|
|
6981
6999
|
/* src/SC-TaxonomyPill/ScTaxonomyPill.module.css */
|
|
@@ -6987,7 +7005,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6987
7005
|
background: var(--alias-fill-neutral-neutralactive, #313131);
|
|
6988
7006
|
border: 0.03125rem solid var(--alias-border-default, #3e3e3e);
|
|
6989
7007
|
border-radius: var(--radius-xl, 0.75rem);
|
|
6990
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7008
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6991
7009
|
display: inline-flex;
|
|
6992
7010
|
flex-direction: column;
|
|
6993
7011
|
align-items: flex-start;
|
|
@@ -7016,7 +7034,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7016
7034
|
padding: var(--spacing-xs, 0.25rem);
|
|
7017
7035
|
}
|
|
7018
7036
|
.ScTaxonomyPill_label {
|
|
7019
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7037
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7020
7038
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7021
7039
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7022
7040
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7065,7 +7083,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7065
7083
|
border-color: transparent;
|
|
7066
7084
|
}
|
|
7067
7085
|
.ScSelectionPill_label {
|
|
7068
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7086
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7069
7087
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7070
7088
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7071
7089
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7074,7 +7092,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7074
7092
|
text-align: center;
|
|
7075
7093
|
}
|
|
7076
7094
|
.ScSelectionPill_scSelectionPill.ScSelectionPill_state-selected .ScSelectionPill_label {
|
|
7077
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7095
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7078
7096
|
}
|
|
7079
7097
|
|
|
7080
7098
|
/* src/SC-SelectionPillGroup/ScSelectionPillGroup.module.css */
|
|
@@ -7123,7 +7141,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7123
7141
|
background: var(--alias-surface-subtle, #1a1a1a);
|
|
7124
7142
|
}
|
|
7125
7143
|
.ScMappingCard_badgeLetter {
|
|
7126
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7144
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7127
7145
|
font-family: var(--text-text-md-medium-font-family, "Inter-Medium", sans-serif);
|
|
7128
7146
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
7129
7147
|
line-height: var(--text-text-md-medium-line-height, 1.5rem);
|
|
@@ -7131,10 +7149,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7131
7149
|
text-transform: uppercase;
|
|
7132
7150
|
}
|
|
7133
7151
|
.ScMappingCard_status-confirmed .ScMappingCard_badgeLetter {
|
|
7134
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
7152
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
7135
7153
|
}
|
|
7136
7154
|
.ScMappingCard_status-ignored .ScMappingCard_badgeLetter {
|
|
7137
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7155
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7138
7156
|
}
|
|
7139
7157
|
.ScMappingCard_content {
|
|
7140
7158
|
display: flex;
|
|
@@ -7176,7 +7194,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7176
7194
|
.ScMappingCard_columnName {
|
|
7177
7195
|
flex: 1 1 auto;
|
|
7178
7196
|
min-width: 0;
|
|
7179
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7197
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7180
7198
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7181
7199
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7182
7200
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7197,7 +7215,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7197
7215
|
border: none;
|
|
7198
7216
|
background: transparent;
|
|
7199
7217
|
cursor: pointer;
|
|
7200
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7218
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7201
7219
|
}
|
|
7202
7220
|
.ScMappingCard_sampleRows {
|
|
7203
7221
|
display: flex;
|
|
@@ -7206,7 +7224,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7206
7224
|
min-width: 0;
|
|
7207
7225
|
}
|
|
7208
7226
|
.ScMappingCard_sampleRow {
|
|
7209
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7227
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7210
7228
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7211
7229
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7212
7230
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7225,7 +7243,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7225
7243
|
box-shadow: var(--alias-shadow-sm);
|
|
7226
7244
|
}
|
|
7227
7245
|
.ScMappingCard_status-ignored .ScMappingCard_sourceCollapsed .ScMappingCard_columnName {
|
|
7228
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7246
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7229
7247
|
}
|
|
7230
7248
|
.ScMappingCard_targetRegion {
|
|
7231
7249
|
display: flex;
|
|
@@ -7246,7 +7264,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7246
7264
|
width: 24px;
|
|
7247
7265
|
height: 24px;
|
|
7248
7266
|
display: inline-flex;
|
|
7249
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7267
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7250
7268
|
}
|
|
7251
7269
|
.ScMappingCard_targetBox {
|
|
7252
7270
|
flex: 1 1 auto;
|
|
@@ -7258,7 +7276,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7258
7276
|
background: var(--alias-surface-raised, #242424);
|
|
7259
7277
|
border-radius: var(--radius-3xl, 16px);
|
|
7260
7278
|
box-shadow: var(--alias-shadow-sm);
|
|
7261
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7279
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7262
7280
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7263
7281
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7264
7282
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7267,7 +7285,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7267
7285
|
text-overflow: ellipsis;
|
|
7268
7286
|
}
|
|
7269
7287
|
.ScMappingCard_targetBoxDash {
|
|
7270
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7288
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7271
7289
|
}
|
|
7272
7290
|
.ScMappingCard_warning {
|
|
7273
7291
|
display: flex;
|
|
@@ -7281,11 +7299,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7281
7299
|
width: 20px;
|
|
7282
7300
|
height: 20px;
|
|
7283
7301
|
display: inline-flex;
|
|
7284
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7302
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7285
7303
|
}
|
|
7286
7304
|
.ScMappingCard_warningText {
|
|
7287
7305
|
min-width: 0;
|
|
7288
|
-
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
7306
|
+
color: var(--alias-text---icons-errorcont, var(--alias-text-and-icons-errorcont, #eb6b6b));
|
|
7289
7307
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7290
7308
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7291
7309
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7325,11 +7343,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7325
7343
|
.ScMappingCard_ignoreBtn {
|
|
7326
7344
|
background: transparent;
|
|
7327
7345
|
border: 1.25px solid var(--alias-border-default, #3e3e3e);
|
|
7328
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7346
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7329
7347
|
}
|
|
7330
7348
|
.ScMappingCard_whiteBtn {
|
|
7331
7349
|
background: var(--alias-fill-base-base, #f5f5f5);
|
|
7332
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7350
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7333
7351
|
}
|
|
7334
7352
|
.ScMappingCard_confirmBtn {
|
|
7335
7353
|
flex: 1 1 auto;
|
|
@@ -7352,15 +7370,15 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7352
7370
|
display: inline-flex;
|
|
7353
7371
|
}
|
|
7354
7372
|
.ScMappingCard_statusSuccess {
|
|
7355
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
7373
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
7356
7374
|
}
|
|
7357
7375
|
.ScMappingCard_statusError {
|
|
7358
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7376
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7359
7377
|
}
|
|
7360
7378
|
.ScMappingCard_validityText {
|
|
7361
7379
|
width: 100%;
|
|
7362
7380
|
text-align: left;
|
|
7363
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7381
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7364
7382
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7365
7383
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7366
7384
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7391,13 +7409,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7391
7409
|
stroke: var(--alias-border-divider, #242424);
|
|
7392
7410
|
}
|
|
7393
7411
|
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-working .ScThinkingStepIcon_stroke {
|
|
7394
|
-
stroke: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7412
|
+
stroke: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7395
7413
|
}
|
|
7396
7414
|
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-completed .ScThinkingStepIcon_stroke {
|
|
7397
|
-
stroke: var(--alias-text-and-icons-success, #00b96b);
|
|
7415
|
+
stroke: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
7398
7416
|
}
|
|
7399
7417
|
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-error .ScThinkingStepIcon_stroke {
|
|
7400
|
-
stroke: var(--alias-text-and-icons-error, #d11a1a);
|
|
7418
|
+
stroke: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7401
7419
|
}
|
|
7402
7420
|
.ScThinkingStepIcon_spinner {
|
|
7403
7421
|
transform-box: fill-box;
|
|
@@ -7462,7 +7480,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7462
7480
|
font-size: 12px;
|
|
7463
7481
|
line-height: 18px;
|
|
7464
7482
|
letter-spacing: 0;
|
|
7465
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7483
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7466
7484
|
margin: 0;
|
|
7467
7485
|
padding: var(--spacing-xs, 4px) var(--spacing-none, 0) var(--spacing-none, 0) var(--spacing-none, 0);
|
|
7468
7486
|
}
|
|
@@ -7486,7 +7504,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7486
7504
|
font-size: 12px;
|
|
7487
7505
|
line-height: 18px;
|
|
7488
7506
|
letter-spacing: 0;
|
|
7489
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7507
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7490
7508
|
margin: 0;
|
|
7491
7509
|
max-width: 560px;
|
|
7492
7510
|
white-space: nowrap;
|
|
@@ -7503,7 +7521,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7503
7521
|
.ScInChatList_chevronIcon {
|
|
7504
7522
|
width: 12px;
|
|
7505
7523
|
height: 12px;
|
|
7506
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7524
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7507
7525
|
flex-shrink: 0;
|
|
7508
7526
|
}
|
|
7509
7527
|
.ScInChatList_descriptionRow {
|
|
@@ -7522,7 +7540,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7522
7540
|
.ScInChatList_descriptionDot {
|
|
7523
7541
|
width: 20px;
|
|
7524
7542
|
height: 20px;
|
|
7525
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7543
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7526
7544
|
opacity: 0.5;
|
|
7527
7545
|
}
|
|
7528
7546
|
.ScInChatList_descriptionText {
|
|
@@ -7531,7 +7549,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7531
7549
|
font-size: 12px;
|
|
7532
7550
|
line-height: 18px;
|
|
7533
7551
|
letter-spacing: 0;
|
|
7534
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7552
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7535
7553
|
margin: 0;
|
|
7536
7554
|
flex: 1 0 0;
|
|
7537
7555
|
min-width: 0;
|
|
@@ -7553,7 +7571,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7553
7571
|
font-size: 12px;
|
|
7554
7572
|
line-height: 18px;
|
|
7555
7573
|
letter-spacing: 0;
|
|
7556
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7574
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7557
7575
|
margin: 0;
|
|
7558
7576
|
white-space: nowrap;
|
|
7559
7577
|
}
|
|
@@ -7583,7 +7601,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7583
7601
|
font-size: 0.75rem;
|
|
7584
7602
|
line-height: 1.125rem;
|
|
7585
7603
|
letter-spacing: 0;
|
|
7586
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7604
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7587
7605
|
white-space: nowrap;
|
|
7588
7606
|
}
|
|
7589
7607
|
|
|
@@ -7606,7 +7624,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7606
7624
|
width: 100%;
|
|
7607
7625
|
position: relative;
|
|
7608
7626
|
flex-shrink: 0;
|
|
7609
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7627
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7610
7628
|
font-family: "Inter", sans-serif;
|
|
7611
7629
|
font-weight: 400;
|
|
7612
7630
|
font-size: 16px;
|
|
@@ -7676,10 +7694,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7676
7694
|
position: relative;
|
|
7677
7695
|
}
|
|
7678
7696
|
.ScSelection_title {
|
|
7679
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7697
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7680
7698
|
}
|
|
7681
7699
|
.ScSelection_description {
|
|
7682
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7700
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7683
7701
|
}
|
|
7684
7702
|
.ScSelection_scSelection.ScSelection_state-default {
|
|
7685
7703
|
background: transparent;
|
|
@@ -7720,7 +7738,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7720
7738
|
height: 20px;
|
|
7721
7739
|
padding: 0;
|
|
7722
7740
|
border-radius: 50%;
|
|
7723
|
-
border: 0.5px solid var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7741
|
+
border: 0.5px solid var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7724
7742
|
background: transparent;
|
|
7725
7743
|
cursor: pointer;
|
|
7726
7744
|
flex-shrink: 0;
|
|
@@ -7734,7 +7752,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7734
7752
|
.ScSelectionList_closeIcon {
|
|
7735
7753
|
display: block;
|
|
7736
7754
|
flex-shrink: 0;
|
|
7737
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7755
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7738
7756
|
}
|
|
7739
7757
|
.ScSelectionList_content {
|
|
7740
7758
|
flex: 1 0 0;
|
|
@@ -7757,7 +7775,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7757
7775
|
line-height: 18px;
|
|
7758
7776
|
font-weight: 400;
|
|
7759
7777
|
letter-spacing: 0;
|
|
7760
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7778
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7761
7779
|
white-space: nowrap;
|
|
7762
7780
|
word-break: break-word;
|
|
7763
7781
|
max-width: 560px;
|
|
@@ -7777,20 +7795,20 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7777
7795
|
line-height: 18px;
|
|
7778
7796
|
font-weight: 400;
|
|
7779
7797
|
letter-spacing: 0;
|
|
7780
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7798
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7781
7799
|
white-space: nowrap;
|
|
7782
7800
|
word-break: break-word;
|
|
7783
7801
|
}
|
|
7784
7802
|
.ScSelectionList_scSelectionList.ScSelectionList_state-default .ScSelectionList_checkIcon,
|
|
7785
7803
|
.ScSelectionList_scSelectionList.ScSelectionList_state-default .ScSelectionList_closeIcon {
|
|
7786
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7804
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7787
7805
|
}
|
|
7788
7806
|
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_checkToggle {
|
|
7789
7807
|
border-color: transparent;
|
|
7790
|
-
background: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7808
|
+
background: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7791
7809
|
}
|
|
7792
7810
|
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_checkIcon {
|
|
7793
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7811
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7794
7812
|
}
|
|
7795
7813
|
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_rejectToggle {
|
|
7796
7814
|
opacity: 0.3;
|
|
@@ -7800,7 +7818,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7800
7818
|
background: var(--alias-fill-error-solidhover, #e04444);
|
|
7801
7819
|
}
|
|
7802
7820
|
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_closeIcon {
|
|
7803
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7821
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7804
7822
|
}
|
|
7805
7823
|
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_checkToggle {
|
|
7806
7824
|
opacity: 0.3;
|
|
@@ -7848,7 +7866,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7848
7866
|
position: relative;
|
|
7849
7867
|
}
|
|
7850
7868
|
.ScTextArea_label {
|
|
7851
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7869
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7852
7870
|
text-align: left;
|
|
7853
7871
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
7854
7872
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -7862,7 +7880,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7862
7880
|
justify-content: flex-start;
|
|
7863
7881
|
}
|
|
7864
7882
|
.ScTextArea_info {
|
|
7865
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7883
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7866
7884
|
text-align: right;
|
|
7867
7885
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
7868
7886
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -7888,10 +7906,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7888
7906
|
height: auto;
|
|
7889
7907
|
min-height: 4.5rem;
|
|
7890
7908
|
position: relative;
|
|
7891
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7909
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7892
7910
|
}
|
|
7893
7911
|
.ScTextArea_inputText {
|
|
7894
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7912
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7895
7913
|
text-align: left;
|
|
7896
7914
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
7897
7915
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -7916,7 +7934,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7916
7934
|
border-color: var(--alias-border-default, transparent);
|
|
7917
7935
|
}
|
|
7918
7936
|
.ScTextArea_scTextArea.ScTextArea_state-filled .ScTextArea_inputText {
|
|
7919
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7937
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7920
7938
|
}
|
|
7921
7939
|
.ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputContainer {
|
|
7922
7940
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
@@ -7925,11 +7943,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7925
7943
|
border-width: 0.0625rem;
|
|
7926
7944
|
}
|
|
7927
7945
|
.ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputText {
|
|
7928
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7946
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7929
7947
|
}
|
|
7930
7948
|
.ScTextArea_scTextArea.ScTextArea_state-error .ScTextArea_inputContainer {
|
|
7931
7949
|
border-style: solid;
|
|
7932
|
-
border-color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7950
|
+
border-color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7933
7951
|
border-width: 0.0625rem;
|
|
7934
7952
|
}
|
|
7935
7953
|
.ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputContainer {
|
|
@@ -7937,7 +7955,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7937
7955
|
border-color: var(--alias-border-subtle, transparent);
|
|
7938
7956
|
}
|
|
7939
7957
|
.ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputText {
|
|
7940
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7958
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7941
7959
|
cursor: not-allowed;
|
|
7942
7960
|
resize: none;
|
|
7943
7961
|
}
|
|
@@ -7968,7 +7986,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7968
7986
|
height: 1.5rem;
|
|
7969
7987
|
}
|
|
7970
7988
|
.ScSelect_label {
|
|
7971
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7989
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7972
7990
|
font-family: Inter, sans-serif;
|
|
7973
7991
|
font-size: 0.875rem;
|
|
7974
7992
|
line-height: 1.25rem;
|
|
@@ -7997,7 +8015,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7997
8015
|
text-align: left;
|
|
7998
8016
|
}
|
|
7999
8017
|
.ScSelect_triggerText {
|
|
8000
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8018
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8001
8019
|
font-family: Inter, sans-serif;
|
|
8002
8020
|
font-size: 0.875rem;
|
|
8003
8021
|
line-height: 1.25rem;
|
|
@@ -8009,13 +8027,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8009
8027
|
white-space: nowrap;
|
|
8010
8028
|
}
|
|
8011
8029
|
.ScSelect_triggerText.ScSelect_placeholder {
|
|
8012
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8030
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8013
8031
|
}
|
|
8014
8032
|
.ScSelect_chevron {
|
|
8015
8033
|
display: flex;
|
|
8016
8034
|
align-items: center;
|
|
8017
8035
|
justify-content: center;
|
|
8018
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8036
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8019
8037
|
flex-shrink: 0;
|
|
8020
8038
|
transition: transform 0.15s ease;
|
|
8021
8039
|
}
|
|
@@ -8040,10 +8058,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8040
8058
|
border-color: var(--alias-border-subtle, transparent);
|
|
8041
8059
|
}
|
|
8042
8060
|
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_triggerText {
|
|
8043
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8061
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
8044
8062
|
}
|
|
8045
8063
|
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_chevron {
|
|
8046
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8064
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
8047
8065
|
}
|
|
8048
8066
|
.ScSelect_menu {
|
|
8049
8067
|
position: absolute;
|
|
@@ -8079,14 +8097,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8079
8097
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
8080
8098
|
}
|
|
8081
8099
|
.ScSelect_optionLabel {
|
|
8082
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8100
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8083
8101
|
font-family: Inter, sans-serif;
|
|
8084
8102
|
font-size: 0.875rem;
|
|
8085
8103
|
line-height: 1.25rem;
|
|
8086
8104
|
font-weight: 400;
|
|
8087
8105
|
}
|
|
8088
8106
|
.ScSelect_optionDescription {
|
|
8089
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8107
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8090
8108
|
font-family: Inter, sans-serif;
|
|
8091
8109
|
font-size: 0.75rem;
|
|
8092
8110
|
line-height: 1rem;
|
|
@@ -8114,7 +8132,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8114
8132
|
height: 1.5rem;
|
|
8115
8133
|
}
|
|
8116
8134
|
.ScFileField_label {
|
|
8117
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8135
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8118
8136
|
font-family: Inter, sans-serif;
|
|
8119
8137
|
font-size: 0.875rem;
|
|
8120
8138
|
line-height: 1.25rem;
|
|
@@ -8151,22 +8169,22 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8151
8169
|
border: 0;
|
|
8152
8170
|
}
|
|
8153
8171
|
.ScFileField_uploadIcon {
|
|
8154
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8172
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8155
8173
|
flex-shrink: 0;
|
|
8156
8174
|
}
|
|
8157
8175
|
.ScFileField_dropzoneText {
|
|
8158
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8176
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8159
8177
|
font-family: Inter, sans-serif;
|
|
8160
8178
|
font-size: 0.875rem;
|
|
8161
8179
|
line-height: 1.25rem;
|
|
8162
8180
|
font-weight: 400;
|
|
8163
8181
|
}
|
|
8164
8182
|
.ScFileField_dropzoneAction {
|
|
8165
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8183
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8166
8184
|
font-weight: 600;
|
|
8167
8185
|
}
|
|
8168
8186
|
.ScFileField_acceptedText {
|
|
8169
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8187
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8170
8188
|
font-family: Inter, sans-serif;
|
|
8171
8189
|
font-size: 0.75rem;
|
|
8172
8190
|
line-height: 1rem;
|
|
@@ -8185,7 +8203,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8185
8203
|
overflow: hidden;
|
|
8186
8204
|
}
|
|
8187
8205
|
.ScFileField_fileIcon {
|
|
8188
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8206
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8189
8207
|
flex-shrink: 0;
|
|
8190
8208
|
}
|
|
8191
8209
|
.ScFileField_fileInfo {
|
|
@@ -8196,7 +8214,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8196
8214
|
min-width: 0;
|
|
8197
8215
|
}
|
|
8198
8216
|
.ScFileField_fileName {
|
|
8199
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8217
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8200
8218
|
font-family: Inter, sans-serif;
|
|
8201
8219
|
font-size: 0.875rem;
|
|
8202
8220
|
line-height: 1.25rem;
|
|
@@ -8226,14 +8244,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8226
8244
|
background: transparent;
|
|
8227
8245
|
border: none;
|
|
8228
8246
|
cursor: pointer;
|
|
8229
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8247
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8230
8248
|
flex-shrink: 0;
|
|
8231
8249
|
}
|
|
8232
8250
|
.ScFileField_clearButton:hover {
|
|
8233
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8251
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8234
8252
|
}
|
|
8235
8253
|
.ScFileField_errorText {
|
|
8236
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
8254
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
8237
8255
|
font-family: Inter, sans-serif;
|
|
8238
8256
|
font-size: 0.75rem;
|
|
8239
8257
|
line-height: 1rem;
|
|
@@ -8306,7 +8324,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8306
8324
|
background: rgba(0, 0, 0, 0.55);
|
|
8307
8325
|
backdrop-filter: blur(6px);
|
|
8308
8326
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
8309
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
8327
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
8310
8328
|
cursor: pointer;
|
|
8311
8329
|
}
|
|
8312
8330
|
.ScMediaApproval_navPrev {
|
|
@@ -8325,7 +8343,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8325
8343
|
background: rgba(0, 0, 0, 0.55);
|
|
8326
8344
|
backdrop-filter: blur(6px);
|
|
8327
8345
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
8328
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
8346
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
8329
8347
|
font-family: Inter, sans-serif;
|
|
8330
8348
|
font-size: 10px;
|
|
8331
8349
|
line-height: 1;
|
|
@@ -8356,7 +8374,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8356
8374
|
}
|
|
8357
8375
|
.ScMediaApproval_dot.ScMediaApproval_state-active {
|
|
8358
8376
|
width: 1rem;
|
|
8359
|
-
background: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
8377
|
+
background: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
8360
8378
|
}
|
|
8361
8379
|
.ScMediaApproval_feedbackBlock {
|
|
8362
8380
|
display: flex;
|
|
@@ -8365,7 +8383,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8365
8383
|
width: 100%;
|
|
8366
8384
|
}
|
|
8367
8385
|
.ScMediaApproval_label {
|
|
8368
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8386
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8369
8387
|
font-family: Inter, sans-serif;
|
|
8370
8388
|
font-size: 0.875rem;
|
|
8371
8389
|
line-height: 1.25rem;
|
|
@@ -8388,14 +8406,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8388
8406
|
background: transparent;
|
|
8389
8407
|
outline: none;
|
|
8390
8408
|
border: none;
|
|
8391
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8409
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8392
8410
|
font-family: Inter, sans-serif;
|
|
8393
8411
|
font-size: 0.875rem;
|
|
8394
8412
|
line-height: 1.25rem;
|
|
8395
8413
|
font-weight: 400;
|
|
8396
8414
|
}
|
|
8397
8415
|
.ScMediaApproval_textArea::placeholder {
|
|
8398
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8416
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8399
8417
|
}
|
|
8400
8418
|
|
|
8401
8419
|
/* src/SC-mediaSelect/ScMediaSelect.module.css */
|
|
@@ -8418,7 +8436,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8418
8436
|
align-self: stretch;
|
|
8419
8437
|
}
|
|
8420
8438
|
.ScMediaSelect_countLabel {
|
|
8421
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8439
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8422
8440
|
font-family: Inter, sans-serif;
|
|
8423
8441
|
font-size: 0.75rem;
|
|
8424
8442
|
line-height: 1rem;
|
|
@@ -8430,7 +8448,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8430
8448
|
gap: var(--spacing-md, 0.5rem);
|
|
8431
8449
|
}
|
|
8432
8450
|
.ScMediaSelect_linkButton {
|
|
8433
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8451
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8434
8452
|
font-family: Inter, sans-serif;
|
|
8435
8453
|
font-size: 0.6875rem;
|
|
8436
8454
|
line-height: 1rem;
|
|
@@ -8444,7 +8462,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8444
8462
|
text-decoration: underline;
|
|
8445
8463
|
}
|
|
8446
8464
|
.ScMediaSelect_divider {
|
|
8447
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8465
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8448
8466
|
font-size: 0.6875rem;
|
|
8449
8467
|
line-height: 1rem;
|
|
8450
8468
|
}
|
|
@@ -8504,7 +8522,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8504
8522
|
border-radius: var(--radius-xs, 0.25rem);
|
|
8505
8523
|
border: none;
|
|
8506
8524
|
background: rgba(0, 0, 0, 0.5);
|
|
8507
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8525
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8508
8526
|
display: none;
|
|
8509
8527
|
align-items: center;
|
|
8510
8528
|
justify-content: center;
|
|
@@ -8536,15 +8554,15 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8536
8554
|
display: flex;
|
|
8537
8555
|
align-items: center;
|
|
8538
8556
|
gap: var(--spacing-xs, 0.25rem);
|
|
8539
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8557
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8540
8558
|
padding: 0 var(--spacing-md, 0.5rem);
|
|
8541
8559
|
}
|
|
8542
8560
|
.ScTodoList_progressIcon {
|
|
8543
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8561
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8544
8562
|
flex-shrink: 0;
|
|
8545
8563
|
}
|
|
8546
8564
|
.ScTodoList_progressText {
|
|
8547
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8565
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8548
8566
|
font-family: Inter, sans-serif;
|
|
8549
8567
|
font-size: 0.6875rem;
|
|
8550
8568
|
line-height: 1rem;
|
|
@@ -8583,7 +8601,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8583
8601
|
.ScTodoList_content {
|
|
8584
8602
|
flex: 1;
|
|
8585
8603
|
min-width: 0;
|
|
8586
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8604
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8587
8605
|
font-family: Inter, sans-serif;
|
|
8588
8606
|
font-size: 0.875rem;
|
|
8589
8607
|
line-height: 1.25rem;
|
|
@@ -8591,13 +8609,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8591
8609
|
word-break: break-word;
|
|
8592
8610
|
}
|
|
8593
8611
|
.ScTodoList_content.ScTodoList_status-completed {
|
|
8594
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8612
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8595
8613
|
text-decoration: line-through;
|
|
8596
8614
|
}
|
|
8597
8615
|
.ScTodoList_editInput {
|
|
8598
8616
|
flex: 1;
|
|
8599
8617
|
min-width: 0;
|
|
8600
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8618
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8601
8619
|
font-family: Inter, sans-serif;
|
|
8602
8620
|
font-size: 0.875rem;
|
|
8603
8621
|
line-height: 1.25rem;
|
|
@@ -8633,15 +8651,15 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8633
8651
|
background: transparent;
|
|
8634
8652
|
border: none;
|
|
8635
8653
|
border-radius: var(--radius-xs, 0.25rem);
|
|
8636
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8654
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8637
8655
|
cursor: pointer;
|
|
8638
8656
|
outline: none;
|
|
8639
8657
|
}
|
|
8640
8658
|
.ScTodoList_actionButton:hover {
|
|
8641
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8659
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8642
8660
|
}
|
|
8643
8661
|
.ScTodoList_actionButtonDanger:hover {
|
|
8644
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
8662
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
8645
8663
|
}
|
|
8646
8664
|
.ScTodoList_addRow {
|
|
8647
8665
|
display: flex;
|
|
@@ -8652,7 +8670,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8652
8670
|
.ScTodoList_addInput {
|
|
8653
8671
|
flex: 1;
|
|
8654
8672
|
min-width: 0;
|
|
8655
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8673
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8656
8674
|
font-family: Inter, sans-serif;
|
|
8657
8675
|
font-size: 0.875rem;
|
|
8658
8676
|
line-height: 1.25rem;
|
|
@@ -8665,7 +8683,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8665
8683
|
outline: none;
|
|
8666
8684
|
}
|
|
8667
8685
|
.ScTodoList_addInput::placeholder {
|
|
8668
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8686
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8669
8687
|
}
|
|
8670
8688
|
.ScTodoList_addInput:hover,
|
|
8671
8689
|
.ScTodoList_addInput:focus {
|
|
@@ -8684,7 +8702,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8684
8702
|
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
8685
8703
|
border: 1px solid var(--alias-border-subtle, transparent);
|
|
8686
8704
|
border-radius: var(--radius-md, 0.5rem);
|
|
8687
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8705
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8688
8706
|
cursor: pointer;
|
|
8689
8707
|
outline: none;
|
|
8690
8708
|
transition: opacity 0.12s ease;
|
|
@@ -8692,10 +8710,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8692
8710
|
.ScTodoList_addButton:hover:not(:disabled) {
|
|
8693
8711
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
8694
8712
|
border-color: var(--alias-border-default, #3e3e3e);
|
|
8695
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8713
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8696
8714
|
}
|
|
8697
8715
|
.ScTodoList_addButton:disabled {
|
|
8698
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8716
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
8699
8717
|
cursor: not-allowed;
|
|
8700
8718
|
}
|
|
8701
8719
|
|
|
@@ -8732,10 +8750,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8732
8750
|
margin: 0;
|
|
8733
8751
|
}
|
|
8734
8752
|
.ScRoleMobile_role-admin .ScRoleMobile_text {
|
|
8735
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
8753
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
8736
8754
|
}
|
|
8737
8755
|
.ScRoleMobile_role-member .ScRoleMobile_text {
|
|
8738
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8756
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8739
8757
|
}
|
|
8740
8758
|
|
|
8741
8759
|
/* src/SC-Profile-V2-Mobile/ScProfileV2Mobile.module.css */
|
|
@@ -8771,7 +8789,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8771
8789
|
align-items: center;
|
|
8772
8790
|
justify-content: center;
|
|
8773
8791
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
8774
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8792
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8775
8793
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
8776
8794
|
font-size: var(--font-size-font-size-sm, 14px);
|
|
8777
8795
|
font-weight: 500;
|
|
@@ -8791,7 +8809,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8791
8809
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
8792
8810
|
font-size: 14px;
|
|
8793
8811
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
8794
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8812
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8795
8813
|
overflow: hidden;
|
|
8796
8814
|
text-overflow: ellipsis;
|
|
8797
8815
|
margin: 0;
|
|
@@ -8802,7 +8820,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8802
8820
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
8803
8821
|
font-size: 12px;
|
|
8804
8822
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
8805
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8823
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8806
8824
|
overflow: hidden;
|
|
8807
8825
|
text-overflow: ellipsis;
|
|
8808
8826
|
margin: 0;
|
|
@@ -8845,7 +8863,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8845
8863
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
8846
8864
|
font-size: 14px;
|
|
8847
8865
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
8848
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8866
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8849
8867
|
overflow: hidden;
|
|
8850
8868
|
text-overflow: ellipsis;
|
|
8851
8869
|
margin: 0;
|
|
@@ -8856,7 +8874,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8856
8874
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
8857
8875
|
font-size: 12px;
|
|
8858
8876
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
8859
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8877
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8860
8878
|
overflow: hidden;
|
|
8861
8879
|
text-overflow: ellipsis;
|
|
8862
8880
|
margin: 0;
|
|
@@ -8883,7 +8901,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8883
8901
|
align-items: center;
|
|
8884
8902
|
justify-content: center;
|
|
8885
8903
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
8886
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8904
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8887
8905
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
8888
8906
|
font-size: 14px;
|
|
8889
8907
|
font-weight: 500;
|
|
@@ -8910,7 +8928,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8910
8928
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
8911
8929
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
8912
8930
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
8913
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
8931
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
8914
8932
|
white-space: nowrap;
|
|
8915
8933
|
margin: 0;
|
|
8916
8934
|
}
|
|
@@ -8987,7 +9005,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8987
9005
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
8988
9006
|
font-size: var(--font-size-font-size-md, 14px);
|
|
8989
9007
|
line-height: var(--line-height-line-height-md, 20px);
|
|
8990
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9008
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8991
9009
|
text-align: center;
|
|
8992
9010
|
overflow: hidden;
|
|
8993
9011
|
text-overflow: ellipsis;
|
|
@@ -8999,7 +9017,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8999
9017
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9000
9018
|
font-size: 16px;
|
|
9001
9019
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9002
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9020
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9003
9021
|
overflow: hidden;
|
|
9004
9022
|
text-overflow: ellipsis;
|
|
9005
9023
|
margin: 0;
|
|
@@ -9021,7 +9039,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9021
9039
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9022
9040
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
9023
9041
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9024
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
9042
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
9025
9043
|
white-space: nowrap;
|
|
9026
9044
|
margin: 0;
|
|
9027
9045
|
}
|
|
@@ -9057,7 +9075,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9057
9075
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9058
9076
|
font-size: 14px;
|
|
9059
9077
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9060
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9078
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9061
9079
|
overflow: hidden;
|
|
9062
9080
|
text-overflow: ellipsis;
|
|
9063
9081
|
white-space: nowrap;
|
|
@@ -9117,7 +9135,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9117
9135
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9118
9136
|
font-size: var(--font-size-font-size-md, 14px);
|
|
9119
9137
|
line-height: var(--line-height-line-height-md, 20px);
|
|
9120
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9138
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9121
9139
|
text-align: center;
|
|
9122
9140
|
overflow: hidden;
|
|
9123
9141
|
text-overflow: ellipsis;
|
|
@@ -9129,7 +9147,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9129
9147
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9130
9148
|
font-size: 16px;
|
|
9131
9149
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9132
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9150
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9133
9151
|
overflow: hidden;
|
|
9134
9152
|
text-overflow: ellipsis;
|
|
9135
9153
|
margin: 0;
|
|
@@ -9151,7 +9169,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9151
9169
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9152
9170
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
9153
9171
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9154
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
9172
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
9155
9173
|
white-space: nowrap;
|
|
9156
9174
|
margin: 0;
|
|
9157
9175
|
}
|
|
@@ -9187,7 +9205,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9187
9205
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9188
9206
|
font-size: 14px;
|
|
9189
9207
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9190
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9208
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9191
9209
|
overflow: hidden;
|
|
9192
9210
|
text-overflow: ellipsis;
|
|
9193
9211
|
white-space: nowrap;
|
|
@@ -9236,7 +9254,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9236
9254
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9237
9255
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9238
9256
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9239
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9257
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9240
9258
|
margin: 0;
|
|
9241
9259
|
min-width: 0;
|
|
9242
9260
|
overflow: hidden;
|
|
@@ -9249,7 +9267,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9249
9267
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9250
9268
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9251
9269
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9252
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9270
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9253
9271
|
text-align: center;
|
|
9254
9272
|
margin: 0;
|
|
9255
9273
|
min-width: 0;
|
|
@@ -9286,11 +9304,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9286
9304
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9287
9305
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9288
9306
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9289
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9307
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9290
9308
|
min-width: 0;
|
|
9291
9309
|
}
|
|
9292
9310
|
.ScMobileTopNav_searchField::placeholder {
|
|
9293
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
9311
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
9294
9312
|
}
|
|
9295
9313
|
|
|
9296
9314
|
/* src/SC-MobileBottomAction/ScMobileBottomAction.module.css */
|
|
@@ -9345,7 +9363,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9345
9363
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9346
9364
|
font-size: var(--font-size-font-size-sm, 14px);
|
|
9347
9365
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9348
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
9366
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
9349
9367
|
white-space: nowrap;
|
|
9350
9368
|
}
|
|
9351
9369
|
.ScMobileBottomAction_outlineButtonText {
|
|
@@ -9353,7 +9371,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9353
9371
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9354
9372
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9355
9373
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9356
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9374
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9357
9375
|
white-space: nowrap;
|
|
9358
9376
|
}
|
|
9359
9377
|
|
|
@@ -9390,7 +9408,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9390
9408
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9391
9409
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9392
9410
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9393
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9411
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9394
9412
|
white-space: nowrap;
|
|
9395
9413
|
margin: 0;
|
|
9396
9414
|
}
|
|
@@ -9444,7 +9462,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9444
9462
|
align-items: center;
|
|
9445
9463
|
justify-content: center;
|
|
9446
9464
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
9447
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9465
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9448
9466
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9449
9467
|
font-size: 14px;
|
|
9450
9468
|
font-weight: 500;
|
|
@@ -9461,7 +9479,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9461
9479
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9462
9480
|
font-size: 14px;
|
|
9463
9481
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9464
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9482
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9465
9483
|
overflow: hidden;
|
|
9466
9484
|
text-overflow: ellipsis;
|
|
9467
9485
|
white-space: nowrap;
|
|
@@ -9472,7 +9490,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9472
9490
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9473
9491
|
font-size: 12px;
|
|
9474
9492
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9475
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9493
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9476
9494
|
overflow: hidden;
|
|
9477
9495
|
text-overflow: ellipsis;
|
|
9478
9496
|
white-space: nowrap;
|
|
@@ -9492,7 +9510,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9492
9510
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9493
9511
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
9494
9512
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9495
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9513
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9496
9514
|
white-space: nowrap;
|
|
9497
9515
|
margin: 0;
|
|
9498
9516
|
}
|
|
@@ -9513,7 +9531,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9513
9531
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9514
9532
|
font-size: 14px;
|
|
9515
9533
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9516
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9534
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9517
9535
|
overflow: hidden;
|
|
9518
9536
|
text-overflow: ellipsis;
|
|
9519
9537
|
white-space: nowrap;
|
|
@@ -9525,7 +9543,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9525
9543
|
font-weight: var(--font-weight-font-weight-semibold, 600);
|
|
9526
9544
|
font-size: 16px;
|
|
9527
9545
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9528
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
9546
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
9529
9547
|
text-align: right;
|
|
9530
9548
|
overflow: hidden;
|
|
9531
9549
|
text-overflow: ellipsis;
|
|
@@ -9556,7 +9574,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9556
9574
|
min-width: 0;
|
|
9557
9575
|
}
|
|
9558
9576
|
.InvoiceHistoryMobile_invoiceId {
|
|
9559
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9577
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9560
9578
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9561
9579
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
9562
9580
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -9567,7 +9585,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9567
9585
|
width: 100%;
|
|
9568
9586
|
}
|
|
9569
9587
|
.InvoiceHistoryMobile_date {
|
|
9570
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9588
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9571
9589
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9572
9590
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9573
9591
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9578,7 +9596,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9578
9596
|
width: 100%;
|
|
9579
9597
|
}
|
|
9580
9598
|
.InvoiceHistoryMobile_amount {
|
|
9581
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
9599
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
9582
9600
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9583
9601
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
9584
9602
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -9612,7 +9630,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9612
9630
|
width: 100%;
|
|
9613
9631
|
}
|
|
9614
9632
|
.UsageHistoryMobile_serviceName {
|
|
9615
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9633
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9616
9634
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9617
9635
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9618
9636
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9624,7 +9642,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9624
9642
|
white-space: nowrap;
|
|
9625
9643
|
}
|
|
9626
9644
|
.UsageHistoryMobile_credits {
|
|
9627
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
9645
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
9628
9646
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9629
9647
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
9630
9648
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -9649,7 +9667,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9649
9667
|
align-items: center;
|
|
9650
9668
|
}
|
|
9651
9669
|
.UsageHistoryMobile_metaText {
|
|
9652
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9670
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9653
9671
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9654
9672
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9655
9673
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9666,7 +9684,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9666
9684
|
border-left: 0.5px solid var(--alias-border-divider, #242424);
|
|
9667
9685
|
}
|
|
9668
9686
|
.UsageHistoryMobile_balance {
|
|
9669
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9687
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9670
9688
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9671
9689
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9672
9690
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9730,7 +9748,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9730
9748
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9731
9749
|
font-size: 16px;
|
|
9732
9750
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9733
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9751
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9734
9752
|
overflow: hidden;
|
|
9735
9753
|
text-overflow: ellipsis;
|
|
9736
9754
|
white-space: nowrap;
|
|
@@ -9749,12 +9767,12 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9749
9767
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9750
9768
|
font-size: var(--font-size-font-size-sm, 14px);
|
|
9751
9769
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9752
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
9770
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
9753
9771
|
white-space: nowrap;
|
|
9754
9772
|
flex-shrink: 0;
|
|
9755
9773
|
}
|
|
9756
9774
|
.ScWorkspaceSwitchMobileV2_roleMember {
|
|
9757
|
-
color: var(--alias-text-and-icons-info, #155cd6);
|
|
9775
|
+
color: var(--alias-text---icons-info, var(--alias-text-and-icons-info, #155cd6));
|
|
9758
9776
|
}
|
|
9759
9777
|
.ScWorkspaceSwitchMobileV2_dot {
|
|
9760
9778
|
width: 16px;
|
|
@@ -9770,14 +9788,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9770
9788
|
width: 2.67px;
|
|
9771
9789
|
height: 2.67px;
|
|
9772
9790
|
border-radius: var(--radius-full, 999px);
|
|
9773
|
-
background: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
9791
|
+
background: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
9774
9792
|
}
|
|
9775
9793
|
.ScWorkspaceSwitchMobileV2_planText {
|
|
9776
9794
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9777
9795
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9778
9796
|
font-size: 14px;
|
|
9779
9797
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9780
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9798
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9781
9799
|
overflow: hidden;
|
|
9782
9800
|
text-overflow: ellipsis;
|
|
9783
9801
|
white-space: nowrap;
|
|
@@ -9788,7 +9806,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9788
9806
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9789
9807
|
font-size: 14px;
|
|
9790
9808
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9791
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9809
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9792
9810
|
overflow: hidden;
|
|
9793
9811
|
text-overflow: ellipsis;
|
|
9794
9812
|
white-space: nowrap;
|
|
@@ -9820,7 +9838,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9820
9838
|
position: relative;
|
|
9821
9839
|
}
|
|
9822
9840
|
.ScImageField_label {
|
|
9823
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9841
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9824
9842
|
text-align: left;
|
|
9825
9843
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9826
9844
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
@@ -9852,7 +9870,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9852
9870
|
flex-shrink: 0;
|
|
9853
9871
|
}
|
|
9854
9872
|
.ScImageField_uploadText {
|
|
9855
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9873
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9856
9874
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9857
9875
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9858
9876
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9881,7 +9899,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9881
9899
|
flex-shrink: 0;
|
|
9882
9900
|
}
|
|
9883
9901
|
.ScImageField_fileName {
|
|
9884
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9902
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9885
9903
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9886
9904
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9887
9905
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9925,13 +9943,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9925
9943
|
flex-shrink: 0;
|
|
9926
9944
|
}
|
|
9927
9945
|
.ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-true {
|
|
9928
|
-
border-bottom: 1.25px solid var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9946
|
+
border-bottom: 1.25px solid var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9929
9947
|
}
|
|
9930
9948
|
.ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-true .ScSettingsTabComp_tabText {
|
|
9931
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9949
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9932
9950
|
}
|
|
9933
9951
|
.ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-false .ScSettingsTabComp_tabText {
|
|
9934
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
9952
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
9935
9953
|
}
|
|
9936
9954
|
|
|
9937
9955
|
/* src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.module.css */
|
|
@@ -9966,7 +9984,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9966
9984
|
flex-shrink: 0;
|
|
9967
9985
|
}
|
|
9968
9986
|
.ScCreditsUsageCardMobile_headerLabel {
|
|
9969
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9987
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9970
9988
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9971
9989
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9972
9990
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9989,7 +10007,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9989
10007
|
flex-shrink: 0;
|
|
9990
10008
|
}
|
|
9991
10009
|
.ScCreditsUsageCardMobile_usageText {
|
|
9992
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10010
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9993
10011
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9994
10012
|
font-size: var(--font-size-font-size-lg, 1.125rem);
|
|
9995
10013
|
line-height: var(--line-height-line-height-lg, 1.625rem);
|
|
@@ -9997,7 +10015,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9997
10015
|
width: 100%;
|
|
9998
10016
|
}
|
|
9999
10017
|
.ScCreditsUsageCardMobile_remainingText {
|
|
10000
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10018
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10001
10019
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10002
10020
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10003
10021
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10047,7 +10065,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10047
10065
|
flex-shrink: 0;
|
|
10048
10066
|
}
|
|
10049
10067
|
.ScPlanDetailsCardMobile_headerLabel {
|
|
10050
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10068
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10051
10069
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10052
10070
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10053
10071
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10076,7 +10094,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10076
10094
|
width: 100%;
|
|
10077
10095
|
}
|
|
10078
10096
|
.ScPlanDetailsCardMobile_planName {
|
|
10079
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10097
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10080
10098
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10081
10099
|
font-size: var(--font-size-font-size-lg, 1.125rem);
|
|
10082
10100
|
line-height: var(--line-height-line-height-lg, 1.625rem);
|
|
@@ -10097,10 +10115,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10097
10115
|
width: 4px;
|
|
10098
10116
|
height: 4px;
|
|
10099
10117
|
border-radius: var(--radius-full, 999px);
|
|
10100
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10118
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10101
10119
|
}
|
|
10102
10120
|
.ScPlanDetailsCardMobile_planPrice {
|
|
10103
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10121
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10104
10122
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10105
10123
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10106
10124
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10120,11 +10138,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10120
10138
|
width: 0.25rem;
|
|
10121
10139
|
height: 0.25rem;
|
|
10122
10140
|
border-radius: var(--radius-full, 999px);
|
|
10123
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10141
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10124
10142
|
flex-shrink: 0;
|
|
10125
10143
|
}
|
|
10126
10144
|
.ScPlanDetailsCardMobile_badgeSubText {
|
|
10127
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10145
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10128
10146
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10129
10147
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10130
10148
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10242,7 +10260,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10242
10260
|
background: none;
|
|
10243
10261
|
border: none;
|
|
10244
10262
|
margin: 0;
|
|
10245
|
-
font:
|
|
10263
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
10246
10264
|
color: inherit;
|
|
10247
10265
|
text-align: left;
|
|
10248
10266
|
flex: 1;
|
|
@@ -10276,7 +10294,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10276
10294
|
background: none;
|
|
10277
10295
|
border: none;
|
|
10278
10296
|
cursor: pointer;
|
|
10279
|
-
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
10297
|
+
color: var(--alias-text---icons-errorcont, var(--alias-text-and-icons-errorcont, #eb6b6b));
|
|
10280
10298
|
}
|
|
10281
10299
|
.ScProfilePopup_logoutButton:hover {
|
|
10282
10300
|
background: var(--alias-fill-error-secondaryhover, #2a0606);
|
|
@@ -10332,12 +10350,12 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10332
10350
|
justify-content: center;
|
|
10333
10351
|
flex-shrink: 0;
|
|
10334
10352
|
position: relative;
|
|
10335
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10353
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10336
10354
|
}
|
|
10337
10355
|
.ScProfilePopup_creditsValue {
|
|
10338
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10356
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10339
10357
|
text-align: left;
|
|
10340
|
-
font-family: var(--
|
|
10358
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
10341
10359
|
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
10342
10360
|
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
10343
10361
|
letter-spacing: var(--letter-spacing-letter-spacing-normal, 0);
|
|
@@ -10375,7 +10393,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10375
10393
|
}
|
|
10376
10394
|
.ScProfilePopup_menuOptionInstance {
|
|
10377
10395
|
cursor: pointer;
|
|
10378
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10396
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10379
10397
|
}
|
|
10380
10398
|
.ScProfilePopup_menuOptionInstance:focus-visible {
|
|
10381
10399
|
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|
|
@@ -10385,11 +10403,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10385
10403
|
flex: 1 !important;
|
|
10386
10404
|
align-self: unset !important;
|
|
10387
10405
|
flex-shrink: unset !important;
|
|
10388
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
10406
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
10389
10407
|
cursor: pointer;
|
|
10390
10408
|
}
|
|
10391
10409
|
.ScProfilePopup_themeTabActive {
|
|
10392
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
10410
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
10393
10411
|
}
|
|
10394
10412
|
.ScProfilePopup_themeTab:focus-visible {
|
|
10395
10413
|
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|