@streamoid/ui 0.6.46 → 0.6.48
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/docs/AGENTS.md +3 -1
- package/dist/docs/ScErrorBoundary.md +160 -0
- package/dist/docs/components.json +32 -1
- package/dist/index.css +371 -301
- package/dist/index.d.mts +131 -3
- package/dist/index.d.ts +131 -3
- package/dist/index.js +1590 -1416
- package/dist/index.mjs +1505 -1331
- 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);
|
|
@@ -2194,6 +2194,76 @@
|
|
|
2194
2194
|
position: relative;
|
|
2195
2195
|
}
|
|
2196
2196
|
|
|
2197
|
+
/* src/SC-ErrorBoundary/ScErrorBoundary.module.css */
|
|
2198
|
+
.ScErrorBoundary_scErrorBoundary,
|
|
2199
|
+
.ScErrorBoundary_scErrorBoundary * {
|
|
2200
|
+
box-sizing: border-box;
|
|
2201
|
+
}
|
|
2202
|
+
.ScErrorBoundary_scErrorBoundary {
|
|
2203
|
+
background: var(--alias-surface-primary, #1a1a1a);
|
|
2204
|
+
border: 1px solid var(--alias-border-default, #3a3a3a);
|
|
2205
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
2206
|
+
padding: var(--spacing-2xl, 1.5rem);
|
|
2207
|
+
display: flex;
|
|
2208
|
+
flex-direction: column;
|
|
2209
|
+
gap: var(--spacing-md, 0.5rem);
|
|
2210
|
+
align-items: flex-start;
|
|
2211
|
+
position: relative;
|
|
2212
|
+
}
|
|
2213
|
+
.ScErrorBoundary_title {
|
|
2214
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2215
|
+
font-family: var(--text-text-md-semibold-font-family, "Inter-SemiBold", sans-serif);
|
|
2216
|
+
font-size: var(--text-text-md-semibold-font-size, 1rem);
|
|
2217
|
+
font-weight: 600;
|
|
2218
|
+
text-align: left;
|
|
2219
|
+
}
|
|
2220
|
+
.ScErrorBoundary_body {
|
|
2221
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #a3a3a3));
|
|
2222
|
+
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
2223
|
+
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
2224
|
+
max-width: 52ch;
|
|
2225
|
+
}
|
|
2226
|
+
.ScErrorBoundary_reference {
|
|
2227
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #a3a3a3));
|
|
2228
|
+
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
2229
|
+
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
2230
|
+
}
|
|
2231
|
+
.ScErrorBoundary_code {
|
|
2232
|
+
font-family: var(--text-code-font-family, ui-monospace, "SFMono-Regular", monospace);
|
|
2233
|
+
background: var(--alias-fill-neutral-neutral, #262626);
|
|
2234
|
+
border-radius: var(--radius-sm, 0.25rem);
|
|
2235
|
+
padding: 0.1em 0.4em;
|
|
2236
|
+
user-select: all;
|
|
2237
|
+
}
|
|
2238
|
+
.ScErrorBoundary_actions {
|
|
2239
|
+
display: flex;
|
|
2240
|
+
flex-direction: row;
|
|
2241
|
+
gap: var(--spacing-md, 0.5rem);
|
|
2242
|
+
align-items: center;
|
|
2243
|
+
margin-top: var(--spacing-xs, 0.25rem);
|
|
2244
|
+
}
|
|
2245
|
+
.ScErrorBoundary_primary,
|
|
2246
|
+
.ScErrorBoundary_secondary {
|
|
2247
|
+
border-radius: var(--radius-sm, 0.25rem);
|
|
2248
|
+
padding: var(--spacing-sm, 0.375rem) var(--spacing-lg, 0.75rem);
|
|
2249
|
+
font-family: var(--text-text-sm-medium-font-family, "Inter-Medium", sans-serif);
|
|
2250
|
+
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
2251
|
+
cursor: pointer;
|
|
2252
|
+
border: 1px solid var(--alias-border-default, #3a3a3a);
|
|
2253
|
+
}
|
|
2254
|
+
.ScErrorBoundary_primary {
|
|
2255
|
+
background: var(--alias-fill-base-base, #f5f5f5);
|
|
2256
|
+
color: var(--alias-text---icons-inverse, #1a1a1a);
|
|
2257
|
+
}
|
|
2258
|
+
.ScErrorBoundary_secondary {
|
|
2259
|
+
background: transparent;
|
|
2260
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2261
|
+
}
|
|
2262
|
+
.ScErrorBoundary_secondary:disabled {
|
|
2263
|
+
cursor: default;
|
|
2264
|
+
opacity: 0.6;
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2197
2267
|
/* src/SC-Dp/ScDp.module.css */
|
|
2198
2268
|
.ScDp_scDp,
|
|
2199
2269
|
.ScDp_scDp * {
|
|
@@ -2231,7 +2301,7 @@
|
|
|
2231
2301
|
text-overflow: ellipsis;
|
|
2232
2302
|
white-space: nowrap;
|
|
2233
2303
|
text-align: center;
|
|
2234
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2304
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
2235
2305
|
font-family: inherit;
|
|
2236
2306
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
2237
2307
|
font-weight: 500;
|
|
@@ -2277,7 +2347,7 @@
|
|
|
2277
2347
|
aspect-ratio: 1;
|
|
2278
2348
|
}
|
|
2279
2349
|
.ScGoogleSignIn_signInText {
|
|
2280
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2350
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2281
2351
|
text-align: left;
|
|
2282
2352
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
2283
2353
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -2294,7 +2364,7 @@
|
|
|
2294
2364
|
}
|
|
2295
2365
|
.ScGoogleSignIn_scGoogleSignIn:hover .ScGoogleSignIn_signInText,
|
|
2296
2366
|
.ScGoogleSignIn_scGoogleSignIn.ScGoogleSignIn_hover-true .ScGoogleSignIn_signInText {
|
|
2297
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
2367
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
2298
2368
|
}
|
|
2299
2369
|
|
|
2300
2370
|
/* src/SC-Intial Profile Cover/ScIntialProfileCover.module.css */
|
|
@@ -2317,7 +2387,7 @@
|
|
|
2317
2387
|
aspect-ratio: 1;
|
|
2318
2388
|
}
|
|
2319
2389
|
.ScIntialProfileCover_initials {
|
|
2320
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2390
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2321
2391
|
text-align: center;
|
|
2322
2392
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
2323
2393
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -2411,7 +2481,7 @@
|
|
|
2411
2481
|
position: relative;
|
|
2412
2482
|
}
|
|
2413
2483
|
.ScMenuOptions_content {
|
|
2414
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2484
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2415
2485
|
text-align: left;
|
|
2416
2486
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
2417
2487
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -2426,7 +2496,7 @@
|
|
|
2426
2496
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-false .ScMenuOptions_content2,
|
|
2427
2497
|
.ScMenuOptions_scMenuOptions:hover .ScMenuOptions_content2,
|
|
2428
2498
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true .ScMenuOptions_content2 {
|
|
2429
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
2499
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
2430
2500
|
text-align: right;
|
|
2431
2501
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
2432
2502
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -2438,7 +2508,7 @@
|
|
|
2438
2508
|
white-space: nowrap;
|
|
2439
2509
|
}
|
|
2440
2510
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_variant-error .ScMenuOptions_content {
|
|
2441
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
2511
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
2442
2512
|
}
|
|
2443
2513
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_variant-default:hover,
|
|
2444
2514
|
.ScMenuOptions_scMenuOptions.ScMenuOptions_hover-true.ScMenuOptions_variant-default,
|
|
@@ -2500,7 +2570,7 @@
|
|
|
2500
2570
|
align-self: stretch;
|
|
2501
2571
|
flex-shrink: 0;
|
|
2502
2572
|
position: relative;
|
|
2503
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2573
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2504
2574
|
}
|
|
2505
2575
|
.ScPlanDetailsCard_scPairtextInstance {
|
|
2506
2576
|
flex: 1 !important;
|
|
@@ -2519,11 +2589,11 @@
|
|
|
2519
2589
|
width: 0.25rem;
|
|
2520
2590
|
height: 0.25rem;
|
|
2521
2591
|
border-radius: var(--radius-full, 999px);
|
|
2522
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2592
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2523
2593
|
flex-shrink: 0;
|
|
2524
2594
|
}
|
|
2525
2595
|
.ScPlanDetailsCard_badgeSubText {
|
|
2526
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2596
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2527
2597
|
font-family: var(--text-text-sm-medium-font-family, "Inter-Medium", sans-serif);
|
|
2528
2598
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
2529
2599
|
line-height: var(--text-text-sm-medium-line-height, 1.25rem);
|
|
@@ -2562,7 +2632,7 @@
|
|
|
2562
2632
|
align-self: stretch;
|
|
2563
2633
|
}
|
|
2564
2634
|
.ScPlanDetailsCard_planName {
|
|
2565
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2635
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2566
2636
|
font-family: var( --lead-text-lead-text-xs-medium-font-family, "Inter-Medium", sans-serif );
|
|
2567
2637
|
font-size: var(--font-size-font-size-lg, 1.125rem);
|
|
2568
2638
|
line-height: var(--line-height-line-height-lg, 1.625rem);
|
|
@@ -2583,10 +2653,10 @@
|
|
|
2583
2653
|
width: 0.25rem;
|
|
2584
2654
|
height: 0.25rem;
|
|
2585
2655
|
border-radius: var(--radius-full, 999px);
|
|
2586
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2656
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2587
2657
|
}
|
|
2588
2658
|
.ScPlanDetailsCard_planPrice {
|
|
2589
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2659
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2590
2660
|
text-align: left;
|
|
2591
2661
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
2592
2662
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -2679,7 +2749,7 @@
|
|
|
2679
2749
|
position: relative;
|
|
2680
2750
|
}
|
|
2681
2751
|
.ScProfile_userName {
|
|
2682
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2752
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2683
2753
|
text-align: left;
|
|
2684
2754
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
2685
2755
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -2692,7 +2762,7 @@
|
|
|
2692
2762
|
white-space: nowrap;
|
|
2693
2763
|
}
|
|
2694
2764
|
.ScProfile_userDescription {
|
|
2695
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
2765
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2696
2766
|
text-align: left;
|
|
2697
2767
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
2698
2768
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -2756,7 +2826,7 @@
|
|
|
2756
2826
|
align-items: center;
|
|
2757
2827
|
justify-content: center;
|
|
2758
2828
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
2759
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
2829
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2760
2830
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
2761
2831
|
font-size: var(--font-size-font-size-xxl, 1.75rem);
|
|
2762
2832
|
font-weight: 500;
|
|
@@ -2930,7 +3000,7 @@
|
|
|
2930
3000
|
position: relative;
|
|
2931
3001
|
}
|
|
2932
3002
|
.ScWorkspace_userName {
|
|
2933
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3003
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
2934
3004
|
text-align: left;
|
|
2935
3005
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
2936
3006
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -2943,7 +3013,7 @@
|
|
|
2943
3013
|
white-space: nowrap;
|
|
2944
3014
|
}
|
|
2945
3015
|
.ScWorkspace_userRole {
|
|
2946
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3016
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
2947
3017
|
text-align: left;
|
|
2948
3018
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
2949
3019
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -2991,7 +3061,7 @@
|
|
|
2991
3061
|
position: relative;
|
|
2992
3062
|
}
|
|
2993
3063
|
.ScTabComp_tabText {
|
|
2994
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3064
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
2995
3065
|
text-align: center;
|
|
2996
3066
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
2997
3067
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3022,7 +3092,7 @@
|
|
|
3022
3092
|
background: var(--alias-fill-base-basehover, #bfbfbf);
|
|
3023
3093
|
}
|
|
3024
3094
|
.ScTabComp_scTabComp.ScTabComp_active-true .ScTabComp_tabText {
|
|
3025
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
3095
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
3026
3096
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
3027
3097
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
3028
3098
|
line-height: var(--text-text-sm-medium-line-height, 1.25rem);
|
|
@@ -3133,7 +3203,7 @@
|
|
|
3133
3203
|
position: relative;
|
|
3134
3204
|
}
|
|
3135
3205
|
.ScTextField_label {
|
|
3136
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3206
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3137
3207
|
text-align: left;
|
|
3138
3208
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3139
3209
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3161,10 +3231,10 @@
|
|
|
3161
3231
|
height: 3rem;
|
|
3162
3232
|
position: relative;
|
|
3163
3233
|
overflow: hidden;
|
|
3164
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3234
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3165
3235
|
}
|
|
3166
3236
|
.ScTextField_inputText {
|
|
3167
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3237
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3168
3238
|
text-align: left;
|
|
3169
3239
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3170
3240
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3184,7 +3254,7 @@
|
|
|
3184
3254
|
white-space: nowrap;
|
|
3185
3255
|
}
|
|
3186
3256
|
.ScTextField_scTextField.ScTextField_label-group-text .ScTextField_info {
|
|
3187
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3257
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3188
3258
|
text-align: right;
|
|
3189
3259
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3190
3260
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3206,7 +3276,7 @@
|
|
|
3206
3276
|
border-color: var(--alias-border-default, transparent);
|
|
3207
3277
|
}
|
|
3208
3278
|
.ScTextField_scTextField.ScTextField_state-filled .ScTextField_inputText {
|
|
3209
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3279
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3210
3280
|
}
|
|
3211
3281
|
.ScTextField_scTextField.ScTextField_state-active .ScTextField_inputContainer {
|
|
3212
3282
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
@@ -3215,18 +3285,18 @@
|
|
|
3215
3285
|
border-width: 0.0625rem;
|
|
3216
3286
|
}
|
|
3217
3287
|
.ScTextField_scTextField.ScTextField_state-active .ScTextField_inputText {
|
|
3218
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3288
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3219
3289
|
}
|
|
3220
3290
|
.ScTextField_ScTextField_labelContainer,
|
|
3221
3291
|
.ScTextField_scTextField.ScTextField_label-group-none .ScTextField_labelContainer {
|
|
3222
3292
|
display: none;
|
|
3223
3293
|
}
|
|
3224
3294
|
.ScTextField_required {
|
|
3225
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
3295
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
3226
3296
|
margin-left: 0.125rem;
|
|
3227
3297
|
}
|
|
3228
3298
|
.ScTextField_desc {
|
|
3229
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3299
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3230
3300
|
text-align: left;
|
|
3231
3301
|
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
3232
3302
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -3288,7 +3358,7 @@
|
|
|
3288
3358
|
max-height: 100px;
|
|
3289
3359
|
overflow-y: auto;
|
|
3290
3360
|
line-height: 1.4;
|
|
3291
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3361
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3292
3362
|
}
|
|
3293
3363
|
|
|
3294
3364
|
/* src/SC-Role/ScRole.module.css */
|
|
@@ -3313,7 +3383,7 @@
|
|
|
3313
3383
|
position: relative;
|
|
3314
3384
|
}
|
|
3315
3385
|
.ScRole_role {
|
|
3316
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
3386
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
3317
3387
|
text-align: left;
|
|
3318
3388
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
3319
3389
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -3326,7 +3396,7 @@
|
|
|
3326
3396
|
border-color: var(--alias-border-strong, #5c5c5c);
|
|
3327
3397
|
}
|
|
3328
3398
|
.ScRole_scRole.ScRole_type-member .ScRole_role {
|
|
3329
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3399
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3330
3400
|
}
|
|
3331
3401
|
|
|
3332
3402
|
/* src/SC-Sidebar/ScSidebar.module.css */
|
|
@@ -3409,7 +3479,7 @@
|
|
|
3409
3479
|
position: relative;
|
|
3410
3480
|
}
|
|
3411
3481
|
.ScSidebar_content {
|
|
3412
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3482
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3413
3483
|
text-align: left;
|
|
3414
3484
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
3415
3485
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -3561,7 +3631,7 @@
|
|
|
3561
3631
|
flex-shrink: 0;
|
|
3562
3632
|
}
|
|
3563
3633
|
.ScSidebarMenu_content {
|
|
3564
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
3634
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
3565
3635
|
text-align: left;
|
|
3566
3636
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3567
3637
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -3587,17 +3657,17 @@
|
|
|
3587
3657
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
3588
3658
|
}
|
|
3589
3659
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-active .ScSidebarMenu_content {
|
|
3590
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3660
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
3591
3661
|
}
|
|
3592
3662
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-highlight .ScSidebarMenu_content {
|
|
3593
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3663
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
3594
3664
|
}
|
|
3595
3665
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-active {
|
|
3596
3666
|
background: var(--alias-surface-canvas, #0B0B0B);
|
|
3597
3667
|
box-shadow: inset 0 0 0 0.5px var(--alias-border-subtle, #242424);
|
|
3598
3668
|
}
|
|
3599
3669
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-default-active .ScSidebarMenu_content {
|
|
3600
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
3670
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
3601
3671
|
}
|
|
3602
3672
|
.ScSidebarMenu_scSidebarMenu:hover,
|
|
3603
3673
|
.ScSidebarMenu_scSidebarMenu.ScSidebarMenu_state-hover {
|
|
@@ -3689,7 +3759,7 @@
|
|
|
3689
3759
|
position: relative;
|
|
3690
3760
|
}
|
|
3691
3761
|
.ScVersion_content {
|
|
3692
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3762
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
3693
3763
|
text-align: left;
|
|
3694
3764
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
3695
3765
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -4241,7 +4311,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4241
4311
|
.ScArtifaxSidebar_sectionLabel {
|
|
4242
4312
|
flex: 1 1 0;
|
|
4243
4313
|
min-width: 0;
|
|
4244
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4314
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4245
4315
|
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
4246
4316
|
font-size: 0.625rem;
|
|
4247
4317
|
line-height: 1.25rem;
|
|
@@ -4256,7 +4326,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4256
4326
|
width: 1rem;
|
|
4257
4327
|
height: 1rem;
|
|
4258
4328
|
flex-shrink: 0;
|
|
4259
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4329
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4260
4330
|
}
|
|
4261
4331
|
.ScArtifaxSidebar_profileRow {
|
|
4262
4332
|
display: flex;
|
|
@@ -4356,7 +4426,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4356
4426
|
font-size: 0.875rem;
|
|
4357
4427
|
font-weight: 500;
|
|
4358
4428
|
line-height: 1.25rem;
|
|
4359
|
-
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4429
|
+
color: var(--alias-text---icons-primary, var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5)));
|
|
4360
4430
|
overflow: hidden;
|
|
4361
4431
|
text-overflow: ellipsis;
|
|
4362
4432
|
white-space: nowrap;
|
|
@@ -4366,7 +4436,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4366
4436
|
font-size: 0.75rem;
|
|
4367
4437
|
font-weight: 400;
|
|
4368
4438
|
line-height: 1.125rem;
|
|
4369
|
-
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4439
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4370
4440
|
overflow: hidden;
|
|
4371
4441
|
text-overflow: ellipsis;
|
|
4372
4442
|
white-space: nowrap;
|
|
@@ -4418,7 +4488,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4418
4488
|
content: "";
|
|
4419
4489
|
width: 0.625rem;
|
|
4420
4490
|
height: 0.625rem;
|
|
4421
|
-
border: 1px dashed var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4491
|
+
border: 1px dashed var(--alias-text---icons-tertiary, var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e)));
|
|
4422
4492
|
border-radius: var(--radius-full, 999px);
|
|
4423
4493
|
}
|
|
4424
4494
|
.ScArtifaxSidebar_versionText {
|
|
@@ -4564,7 +4634,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4564
4634
|
flex: 1 0 0;
|
|
4565
4635
|
min-width: 0;
|
|
4566
4636
|
position: relative;
|
|
4567
|
-
font-family: var(--
|
|
4637
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
4568
4638
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
4569
4639
|
text-align: left;
|
|
4570
4640
|
}
|
|
@@ -4690,7 +4760,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4690
4760
|
display: inline-flex;
|
|
4691
4761
|
align-items: center;
|
|
4692
4762
|
justify-content: center;
|
|
4693
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4763
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4694
4764
|
}
|
|
4695
4765
|
.ScSideBarLogoUnit_scSideBarLogoUnit.ScSideBarLogoUnit_collapsed {
|
|
4696
4766
|
width: auto;
|
|
@@ -4760,7 +4830,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4760
4830
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
4761
4831
|
font-weight: 500;
|
|
4762
4832
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
4763
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4833
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4764
4834
|
width: 100%;
|
|
4765
4835
|
margin: 0;
|
|
4766
4836
|
}
|
|
@@ -4769,7 +4839,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4769
4839
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4770
4840
|
font-weight: 400;
|
|
4771
4841
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4772
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4842
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4773
4843
|
width: 100%;
|
|
4774
4844
|
margin: 0;
|
|
4775
4845
|
}
|
|
@@ -4790,7 +4860,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4790
4860
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4791
4861
|
font-weight: 400;
|
|
4792
4862
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4793
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4863
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4794
4864
|
white-space: nowrap;
|
|
4795
4865
|
}
|
|
4796
4866
|
.ScGuide_skipButton {
|
|
@@ -4802,7 +4872,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4802
4872
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4803
4873
|
font-weight: 400;
|
|
4804
4874
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4805
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4875
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4806
4876
|
white-space: nowrap;
|
|
4807
4877
|
}
|
|
4808
4878
|
.ScGuide_skipButton:disabled {
|
|
@@ -4887,7 +4957,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4887
4957
|
position: relative;
|
|
4888
4958
|
}
|
|
4889
4959
|
.ScSlider_progressDot2 {
|
|
4890
|
-
background: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4960
|
+
background: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4891
4961
|
border-radius: var(--radius-full, 62.4375rem);
|
|
4892
4962
|
flex-shrink: 0;
|
|
4893
4963
|
width: 0.5rem;
|
|
@@ -4945,7 +5015,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4945
5015
|
position: relative;
|
|
4946
5016
|
}
|
|
4947
5017
|
.ScAppListingCard_title {
|
|
4948
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5018
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
4949
5019
|
text-align: left;
|
|
4950
5020
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
4951
5021
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -4955,7 +5025,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4955
5025
|
flex: 1;
|
|
4956
5026
|
}
|
|
4957
5027
|
.ScAppListingCard_description {
|
|
4958
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5028
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
4959
5029
|
text-align: left;
|
|
4960
5030
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
4961
5031
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5002,7 +5072,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5002
5072
|
justify-content: flex-start;
|
|
5003
5073
|
flex-shrink: 0;
|
|
5004
5074
|
position: relative;
|
|
5005
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5075
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5006
5076
|
}
|
|
5007
5077
|
.ScAppCard_textContainer {
|
|
5008
5078
|
display: flex;
|
|
@@ -5014,7 +5084,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5014
5084
|
position: relative;
|
|
5015
5085
|
}
|
|
5016
5086
|
.ScAppCard_title {
|
|
5017
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5087
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5018
5088
|
text-align: left;
|
|
5019
5089
|
font-family: var( --text-text-sm-medium-font-family, "Inter-Medium", sans-serif );
|
|
5020
5090
|
font-size: var(--text-text-sm-medium-font-size, 0.875rem);
|
|
@@ -5027,7 +5097,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5027
5097
|
white-space: nowrap;
|
|
5028
5098
|
}
|
|
5029
5099
|
.ScAppCard_subtitle {
|
|
5030
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5100
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5031
5101
|
text-align: left;
|
|
5032
5102
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5033
5103
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -5130,7 +5200,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5130
5200
|
}
|
|
5131
5201
|
.ScAppCardV3_appName {
|
|
5132
5202
|
flex: 1 0 0;
|
|
5133
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5203
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5134
5204
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
5135
5205
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
5136
5206
|
line-height: var(--text-text-md-medium-line-height, 1.5rem);
|
|
@@ -5168,14 +5238,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5168
5238
|
width: 20px;
|
|
5169
5239
|
height: 20px;
|
|
5170
5240
|
flex-shrink: 0;
|
|
5171
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5241
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5172
5242
|
}
|
|
5173
5243
|
.ScAppCardV3_iconPillIcon > * {
|
|
5174
5244
|
width: 100%;
|
|
5175
5245
|
height: 100%;
|
|
5176
5246
|
}
|
|
5177
5247
|
.ScAppCardV3_description {
|
|
5178
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5248
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5179
5249
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5180
5250
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
5181
5251
|
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
@@ -5267,7 +5337,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5267
5337
|
flex-shrink: 0;
|
|
5268
5338
|
}
|
|
5269
5339
|
.ScBriefCard_description {
|
|
5270
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5340
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5271
5341
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5272
5342
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
5273
5343
|
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
@@ -5304,7 +5374,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5304
5374
|
position: relative;
|
|
5305
5375
|
}
|
|
5306
5376
|
.ScAppField_title {
|
|
5307
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5377
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5308
5378
|
text-align: left;
|
|
5309
5379
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5310
5380
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5487,7 +5557,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5487
5557
|
position: relative;
|
|
5488
5558
|
}
|
|
5489
5559
|
.ScCatalogixInvite_scCatalogixInvite.ScCatalogixInvite_active-true .ScCatalogixInvite_storeAccessTitle {
|
|
5490
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5560
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5491
5561
|
text-align: left;
|
|
5492
5562
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5493
5563
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5500,7 +5570,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5500
5570
|
white-space: nowrap;
|
|
5501
5571
|
}
|
|
5502
5572
|
.ScCatalogixInvite_scCatalogixInvite.ScCatalogixInvite_active-true .ScCatalogixInvite_selectedCount {
|
|
5503
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5573
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5504
5574
|
text-align: right;
|
|
5505
5575
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5506
5576
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -5564,10 +5634,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5564
5634
|
flex-shrink: 0;
|
|
5565
5635
|
height: 3rem;
|
|
5566
5636
|
position: relative;
|
|
5567
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5637
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5568
5638
|
}
|
|
5569
5639
|
.ScOnlyField_inputText {
|
|
5570
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5640
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5571
5641
|
text-align: left;
|
|
5572
5642
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5573
5643
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5580,7 +5650,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5580
5650
|
justify-content: flex-start;
|
|
5581
5651
|
}
|
|
5582
5652
|
.ScOnlyField_inputText::placeholder {
|
|
5583
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5653
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5584
5654
|
}
|
|
5585
5655
|
.ScOnlyField_iconWrapper {
|
|
5586
5656
|
display: flex;
|
|
@@ -5622,7 +5692,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5622
5692
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
5623
5693
|
}
|
|
5624
5694
|
.ScOnlyField_scOnlyField.ScOnlyField_state-filled .ScOnlyField_inputText {
|
|
5625
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5695
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5626
5696
|
}
|
|
5627
5697
|
.ScOnlyField_scOnlyField.ScOnlyField_state-ative-focused .ScOnlyField_inputContainer {
|
|
5628
5698
|
border-style: solid;
|
|
@@ -5697,7 +5767,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5697
5767
|
position: relative;
|
|
5698
5768
|
}
|
|
5699
5769
|
.ScCheckField_label {
|
|
5700
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5770
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5701
5771
|
text-align: left;
|
|
5702
5772
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5703
5773
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5756,7 +5826,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5756
5826
|
position: relative;
|
|
5757
5827
|
}
|
|
5758
5828
|
.ScFieldButton_label {
|
|
5759
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5829
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5760
5830
|
text-align: left;
|
|
5761
5831
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5762
5832
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5783,7 +5853,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5783
5853
|
}
|
|
5784
5854
|
.ScFieldButton_scFieldButton:hover .ScFieldButton_label,
|
|
5785
5855
|
.ScFieldButton_scFieldButton.ScFieldButton_state-hover .ScFieldButton_label {
|
|
5786
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5856
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5787
5857
|
}
|
|
5788
5858
|
|
|
5789
5859
|
/* src/SC-pendingAction/ScPendingAction.module.css */
|
|
@@ -5863,7 +5933,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5863
5933
|
position: relative;
|
|
5864
5934
|
}
|
|
5865
5935
|
.ScQuickPrompt_title {
|
|
5866
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5936
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
5867
5937
|
text-align: left;
|
|
5868
5938
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
5869
5939
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
@@ -5882,7 +5952,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5882
5952
|
position: relative;
|
|
5883
5953
|
}
|
|
5884
5954
|
.ScQuickPrompt_heading {
|
|
5885
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
5955
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
5886
5956
|
text-align: left;
|
|
5887
5957
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
5888
5958
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -5892,7 +5962,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5892
5962
|
align-self: stretch;
|
|
5893
5963
|
}
|
|
5894
5964
|
.ScQuickPrompt_description {
|
|
5895
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
5965
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
5896
5966
|
text-align: left;
|
|
5897
5967
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5898
5968
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5951,7 +6021,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5951
6021
|
width: unset !important;
|
|
5952
6022
|
}
|
|
5953
6023
|
.ScReferralTableList_date {
|
|
5954
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6024
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
5955
6025
|
text-align: left;
|
|
5956
6026
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
5957
6027
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -5968,7 +6038,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
5968
6038
|
align-self: unset !important;
|
|
5969
6039
|
}
|
|
5970
6040
|
.ScReferralTableList_points {
|
|
5971
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6041
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
5972
6042
|
text-align: left;
|
|
5973
6043
|
font-family: var( --text-text-md-semibold-font-family, "Inter-SemiBold", sans-serif );
|
|
5974
6044
|
font-size: var(--text-text-md-semibold-font-size, 1rem);
|
|
@@ -6039,7 +6109,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6039
6109
|
position: relative;
|
|
6040
6110
|
}
|
|
6041
6111
|
.ScTabField_label {
|
|
6042
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6112
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6043
6113
|
text-align: left;
|
|
6044
6114
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6045
6115
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6144,13 +6214,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6144
6214
|
flex-shrink: 0;
|
|
6145
6215
|
width: 11.25rem;
|
|
6146
6216
|
position: relative;
|
|
6147
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6217
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6148
6218
|
}
|
|
6149
6219
|
.ScTableList_scAccessInstance {
|
|
6150
6220
|
flex-shrink: 0 !important;
|
|
6151
6221
|
}
|
|
6152
6222
|
.ScTableList_userName {
|
|
6153
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6223
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6154
6224
|
text-align: left;
|
|
6155
6225
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6156
6226
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6163,7 +6233,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6163
6233
|
white-space: nowrap;
|
|
6164
6234
|
}
|
|
6165
6235
|
.ScTableList_date {
|
|
6166
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6236
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6167
6237
|
text-align: left;
|
|
6168
6238
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6169
6239
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6236,7 +6306,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6236
6306
|
flex-shrink: 0 !important;
|
|
6237
6307
|
}
|
|
6238
6308
|
.ScWorkspaceCard_workspaceName {
|
|
6239
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6309
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6240
6310
|
text-align: left;
|
|
6241
6311
|
font-family: var( --text-text-md-medium-font-family, "Inter-Medium", sans-serif );
|
|
6242
6312
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
@@ -6363,8 +6433,8 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6363
6433
|
overflow: hidden;
|
|
6364
6434
|
text-overflow: ellipsis;
|
|
6365
6435
|
white-space: nowrap;
|
|
6366
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6367
|
-
font-family: var(--
|
|
6436
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6437
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6368
6438
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
6369
6439
|
font-weight: 500;
|
|
6370
6440
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -6395,8 +6465,8 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6395
6465
|
white-space: nowrap;
|
|
6396
6466
|
}
|
|
6397
6467
|
.ScWorkspaceSwitchCard_detailLabel {
|
|
6398
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6399
|
-
font-family: var(--
|
|
6468
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
6469
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6400
6470
|
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
6401
6471
|
font-weight: 400;
|
|
6402
6472
|
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
@@ -6404,22 +6474,22 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6404
6474
|
text-overflow: ellipsis;
|
|
6405
6475
|
}
|
|
6406
6476
|
.ScWorkspaceSwitchCard_detailValueRole {
|
|
6407
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6408
|
-
font-family: var(--
|
|
6477
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
6478
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6409
6479
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
6410
6480
|
font-weight: 500;
|
|
6411
6481
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
6412
6482
|
}
|
|
6413
6483
|
.ScWorkspaceSwitchCard_detailValueInfo {
|
|
6414
|
-
color: var(--alias-text-and-icons-info, #2d8fe6);
|
|
6415
|
-
font-family: var(--
|
|
6484
|
+
color: var(--alias-text---icons-info, var(--alias-text-and-icons-info, #2d8fe6));
|
|
6485
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6416
6486
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
6417
6487
|
font-weight: 500;
|
|
6418
6488
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
6419
6489
|
}
|
|
6420
6490
|
.ScWorkspaceSwitchCard_detailValueSecondary {
|
|
6421
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
6422
|
-
font-family: var(--
|
|
6491
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
6492
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
6423
6493
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
6424
6494
|
font-weight: 400;
|
|
6425
6495
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -6447,7 +6517,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6447
6517
|
background: var(--alias-fill-error-solidactive, #b01717);
|
|
6448
6518
|
border-radius: var(--medium-5, 0.75rem);
|
|
6449
6519
|
cursor: pointer;
|
|
6450
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
6520
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
6451
6521
|
transition: background-color 0.15s ease;
|
|
6452
6522
|
}
|
|
6453
6523
|
.ScWorkspaceSwitchCard_leaveBtn:hover {
|
|
@@ -6533,7 +6603,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6533
6603
|
cursor: pointer;
|
|
6534
6604
|
text-transform: capitalize;
|
|
6535
6605
|
white-space: nowrap;
|
|
6536
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6606
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6537
6607
|
font-size: 14px;
|
|
6538
6608
|
font-weight: 400;
|
|
6539
6609
|
line-height: 20px;
|
|
@@ -6612,7 +6682,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6612
6682
|
font-weight: 400;
|
|
6613
6683
|
font-size: 1rem;
|
|
6614
6684
|
line-height: 1.375rem;
|
|
6615
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6685
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6616
6686
|
}
|
|
6617
6687
|
.ScPagination_section svg {
|
|
6618
6688
|
cursor: pointer;
|
|
@@ -6625,7 +6695,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6625
6695
|
padding: 0.3125rem 0;
|
|
6626
6696
|
border-radius: 1rem;
|
|
6627
6697
|
background: var(--alias-surface-canvasbase, #1a1a1a);
|
|
6628
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6698
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6629
6699
|
margin: 0 0.5rem;
|
|
6630
6700
|
border: none;
|
|
6631
6701
|
width: 3.75rem;
|
|
@@ -6656,16 +6726,16 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6656
6726
|
flex-shrink: 0;
|
|
6657
6727
|
}
|
|
6658
6728
|
.ScBeacon_success {
|
|
6659
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6729
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
6660
6730
|
}
|
|
6661
6731
|
.ScBeacon_warning {
|
|
6662
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6732
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
6663
6733
|
}
|
|
6664
6734
|
.ScBeacon_error {
|
|
6665
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6735
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
6666
6736
|
}
|
|
6667
6737
|
.ScBeacon_neutral {
|
|
6668
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6738
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
6669
6739
|
}
|
|
6670
6740
|
|
|
6671
6741
|
/* src/SC-StoreCard/ScStoreCard.module.css */
|
|
@@ -6708,7 +6778,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6708
6778
|
min-width: 0;
|
|
6709
6779
|
margin: 0;
|
|
6710
6780
|
height: 3.5rem;
|
|
6711
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6781
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6712
6782
|
text-align: left;
|
|
6713
6783
|
font-family: var( --lead-text-lead-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
6714
6784
|
font-size: var(--lead-text-lead-text-xs-regular-font-size, 1.125rem);
|
|
@@ -6737,7 +6807,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6737
6807
|
overflow: hidden;
|
|
6738
6808
|
text-overflow: ellipsis;
|
|
6739
6809
|
white-space: nowrap;
|
|
6740
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6810
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6741
6811
|
text-align: left;
|
|
6742
6812
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6743
6813
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6749,7 +6819,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6749
6819
|
overflow: hidden;
|
|
6750
6820
|
text-overflow: ellipsis;
|
|
6751
6821
|
white-space: nowrap;
|
|
6752
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6822
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6753
6823
|
text-align: right;
|
|
6754
6824
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6755
6825
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6774,7 +6844,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6774
6844
|
width: 100%;
|
|
6775
6845
|
}
|
|
6776
6846
|
.ScCatalogixStoreHeader_label {
|
|
6777
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6847
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
6778
6848
|
text-align: left;
|
|
6779
6849
|
text-transform: uppercase;
|
|
6780
6850
|
font-family: var( --text-text-xs-regular-font-family, "Inter-Regular", sans-serif );
|
|
@@ -6824,7 +6894,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6824
6894
|
.ScCatalogixStoreTableList_name {
|
|
6825
6895
|
flex: 1;
|
|
6826
6896
|
min-width: 0;
|
|
6827
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6897
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6828
6898
|
text-align: left;
|
|
6829
6899
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6830
6900
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6847,20 +6917,20 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6847
6917
|
text-overflow: ellipsis;
|
|
6848
6918
|
}
|
|
6849
6919
|
.ScCatalogixStoreTableList_statusSuccess {
|
|
6850
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
6920
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
6851
6921
|
}
|
|
6852
6922
|
.ScCatalogixStoreTableList_statusWarning {
|
|
6853
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
6923
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
6854
6924
|
}
|
|
6855
6925
|
.ScCatalogixStoreTableList_statusError {
|
|
6856
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
6926
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
6857
6927
|
}
|
|
6858
6928
|
.ScCatalogixStoreTableList_statusNeutral {
|
|
6859
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6929
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6860
6930
|
}
|
|
6861
6931
|
.ScCatalogixStoreTableList_cell {
|
|
6862
6932
|
flex-shrink: 0;
|
|
6863
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6933
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6864
6934
|
text-align: left;
|
|
6865
6935
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
6866
6936
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -6915,7 +6985,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6915
6985
|
.ScDefaultCard_title {
|
|
6916
6986
|
margin: 0;
|
|
6917
6987
|
width: 100%;
|
|
6918
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6988
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6919
6989
|
font-family: var(--text-text-md-regular-font-family, "Inter-Regular", sans-serif);
|
|
6920
6990
|
font-size: var(--text-text-md-regular-font-size, 1rem);
|
|
6921
6991
|
line-height: var(--text-text-md-regular-line-height, 1.5rem);
|
|
@@ -6925,7 +6995,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6925
6995
|
.ScDefaultCard_description {
|
|
6926
6996
|
margin: 0;
|
|
6927
6997
|
width: 100%;
|
|
6928
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6998
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
6929
6999
|
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
6930
7000
|
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
6931
7001
|
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
@@ -6972,7 +7042,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6972
7042
|
}
|
|
6973
7043
|
.ScValueMappingL1_label {
|
|
6974
7044
|
width: 100%;
|
|
6975
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7045
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
6976
7046
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
6977
7047
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
6978
7048
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -6993,7 +7063,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
6993
7063
|
width: 0.5rem;
|
|
6994
7064
|
height: 0.5rem;
|
|
6995
7065
|
border-radius: var(--radius-full, 999px);
|
|
6996
|
-
background: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
7066
|
+
background: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
6997
7067
|
}
|
|
6998
7068
|
|
|
6999
7069
|
/* src/SC-TaxonomyPill/ScTaxonomyPill.module.css */
|
|
@@ -7005,7 +7075,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7005
7075
|
background: var(--alias-fill-neutral-neutralactive, #313131);
|
|
7006
7076
|
border: 0.03125rem solid var(--alias-border-default, #3e3e3e);
|
|
7007
7077
|
border-radius: var(--radius-xl, 0.75rem);
|
|
7008
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7078
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7009
7079
|
display: inline-flex;
|
|
7010
7080
|
flex-direction: column;
|
|
7011
7081
|
align-items: flex-start;
|
|
@@ -7034,7 +7104,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7034
7104
|
padding: var(--spacing-xs, 0.25rem);
|
|
7035
7105
|
}
|
|
7036
7106
|
.ScTaxonomyPill_label {
|
|
7037
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7107
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7038
7108
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7039
7109
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7040
7110
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7083,7 +7153,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7083
7153
|
border-color: transparent;
|
|
7084
7154
|
}
|
|
7085
7155
|
.ScSelectionPill_label {
|
|
7086
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7156
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7087
7157
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7088
7158
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7089
7159
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7092,7 +7162,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7092
7162
|
text-align: center;
|
|
7093
7163
|
}
|
|
7094
7164
|
.ScSelectionPill_scSelectionPill.ScSelectionPill_state-selected .ScSelectionPill_label {
|
|
7095
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7165
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7096
7166
|
}
|
|
7097
7167
|
|
|
7098
7168
|
/* src/SC-SelectionPillGroup/ScSelectionPillGroup.module.css */
|
|
@@ -7141,7 +7211,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7141
7211
|
background: var(--alias-surface-subtle, #1a1a1a);
|
|
7142
7212
|
}
|
|
7143
7213
|
.ScMappingCard_badgeLetter {
|
|
7144
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7214
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7145
7215
|
font-family: var(--text-text-md-medium-font-family, "Inter-Medium", sans-serif);
|
|
7146
7216
|
font-size: var(--text-text-md-medium-font-size, 1rem);
|
|
7147
7217
|
line-height: var(--text-text-md-medium-line-height, 1.5rem);
|
|
@@ -7149,10 +7219,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7149
7219
|
text-transform: uppercase;
|
|
7150
7220
|
}
|
|
7151
7221
|
.ScMappingCard_status-confirmed .ScMappingCard_badgeLetter {
|
|
7152
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
7222
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
7153
7223
|
}
|
|
7154
7224
|
.ScMappingCard_status-ignored .ScMappingCard_badgeLetter {
|
|
7155
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7225
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7156
7226
|
}
|
|
7157
7227
|
.ScMappingCard_content {
|
|
7158
7228
|
display: flex;
|
|
@@ -7194,7 +7264,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7194
7264
|
.ScMappingCard_columnName {
|
|
7195
7265
|
flex: 1 1 auto;
|
|
7196
7266
|
min-width: 0;
|
|
7197
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7267
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7198
7268
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7199
7269
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7200
7270
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7215,7 +7285,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7215
7285
|
border: none;
|
|
7216
7286
|
background: transparent;
|
|
7217
7287
|
cursor: pointer;
|
|
7218
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7288
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7219
7289
|
}
|
|
7220
7290
|
.ScMappingCard_sampleRows {
|
|
7221
7291
|
display: flex;
|
|
@@ -7224,7 +7294,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7224
7294
|
min-width: 0;
|
|
7225
7295
|
}
|
|
7226
7296
|
.ScMappingCard_sampleRow {
|
|
7227
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7297
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7228
7298
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7229
7299
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7230
7300
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7243,7 +7313,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7243
7313
|
box-shadow: var(--alias-shadow-sm);
|
|
7244
7314
|
}
|
|
7245
7315
|
.ScMappingCard_status-ignored .ScMappingCard_sourceCollapsed .ScMappingCard_columnName {
|
|
7246
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7316
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7247
7317
|
}
|
|
7248
7318
|
.ScMappingCard_targetRegion {
|
|
7249
7319
|
display: flex;
|
|
@@ -7264,7 +7334,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7264
7334
|
width: 24px;
|
|
7265
7335
|
height: 24px;
|
|
7266
7336
|
display: inline-flex;
|
|
7267
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7337
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7268
7338
|
}
|
|
7269
7339
|
.ScMappingCard_targetBox {
|
|
7270
7340
|
flex: 1 1 auto;
|
|
@@ -7276,7 +7346,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7276
7346
|
background: var(--alias-surface-raised, #242424);
|
|
7277
7347
|
border-radius: var(--radius-3xl, 16px);
|
|
7278
7348
|
box-shadow: var(--alias-shadow-sm);
|
|
7279
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7349
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7280
7350
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7281
7351
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7282
7352
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7285,7 +7355,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7285
7355
|
text-overflow: ellipsis;
|
|
7286
7356
|
}
|
|
7287
7357
|
.ScMappingCard_targetBoxDash {
|
|
7288
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7358
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7289
7359
|
}
|
|
7290
7360
|
.ScMappingCard_warning {
|
|
7291
7361
|
display: flex;
|
|
@@ -7299,11 +7369,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7299
7369
|
width: 20px;
|
|
7300
7370
|
height: 20px;
|
|
7301
7371
|
display: inline-flex;
|
|
7302
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7372
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7303
7373
|
}
|
|
7304
7374
|
.ScMappingCard_warningText {
|
|
7305
7375
|
min-width: 0;
|
|
7306
|
-
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
7376
|
+
color: var(--alias-text---icons-errorcont, var(--alias-text-and-icons-errorcont, #eb6b6b));
|
|
7307
7377
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7308
7378
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7309
7379
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7343,11 +7413,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7343
7413
|
.ScMappingCard_ignoreBtn {
|
|
7344
7414
|
background: transparent;
|
|
7345
7415
|
border: 1.25px solid var(--alias-border-default, #3e3e3e);
|
|
7346
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7416
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7347
7417
|
}
|
|
7348
7418
|
.ScMappingCard_whiteBtn {
|
|
7349
7419
|
background: var(--alias-fill-base-base, #f5f5f5);
|
|
7350
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7420
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7351
7421
|
}
|
|
7352
7422
|
.ScMappingCard_confirmBtn {
|
|
7353
7423
|
flex: 1 1 auto;
|
|
@@ -7370,15 +7440,15 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7370
7440
|
display: inline-flex;
|
|
7371
7441
|
}
|
|
7372
7442
|
.ScMappingCard_statusSuccess {
|
|
7373
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
7443
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
7374
7444
|
}
|
|
7375
7445
|
.ScMappingCard_statusError {
|
|
7376
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
7446
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7377
7447
|
}
|
|
7378
7448
|
.ScMappingCard_validityText {
|
|
7379
7449
|
width: 100%;
|
|
7380
7450
|
text-align: left;
|
|
7381
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7451
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7382
7452
|
font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
|
|
7383
7453
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
7384
7454
|
line-height: var(--text-text-sm-regular-line-height, 1.25rem);
|
|
@@ -7409,13 +7479,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7409
7479
|
stroke: var(--alias-border-divider, #242424);
|
|
7410
7480
|
}
|
|
7411
7481
|
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-working .ScThinkingStepIcon_stroke {
|
|
7412
|
-
stroke: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7482
|
+
stroke: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7413
7483
|
}
|
|
7414
7484
|
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-completed .ScThinkingStepIcon_stroke {
|
|
7415
|
-
stroke: var(--alias-text-and-icons-success, #00b96b);
|
|
7485
|
+
stroke: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
7416
7486
|
}
|
|
7417
7487
|
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-error .ScThinkingStepIcon_stroke {
|
|
7418
|
-
stroke: var(--alias-text-and-icons-error, #d11a1a);
|
|
7488
|
+
stroke: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7419
7489
|
}
|
|
7420
7490
|
.ScThinkingStepIcon_spinner {
|
|
7421
7491
|
transform-box: fill-box;
|
|
@@ -7480,7 +7550,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7480
7550
|
font-size: 12px;
|
|
7481
7551
|
line-height: 18px;
|
|
7482
7552
|
letter-spacing: 0;
|
|
7483
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7553
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7484
7554
|
margin: 0;
|
|
7485
7555
|
padding: var(--spacing-xs, 4px) var(--spacing-none, 0) var(--spacing-none, 0) var(--spacing-none, 0);
|
|
7486
7556
|
}
|
|
@@ -7504,7 +7574,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7504
7574
|
font-size: 12px;
|
|
7505
7575
|
line-height: 18px;
|
|
7506
7576
|
letter-spacing: 0;
|
|
7507
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7577
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7508
7578
|
margin: 0;
|
|
7509
7579
|
max-width: 560px;
|
|
7510
7580
|
white-space: nowrap;
|
|
@@ -7521,7 +7591,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7521
7591
|
.ScInChatList_chevronIcon {
|
|
7522
7592
|
width: 12px;
|
|
7523
7593
|
height: 12px;
|
|
7524
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7594
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7525
7595
|
flex-shrink: 0;
|
|
7526
7596
|
}
|
|
7527
7597
|
.ScInChatList_descriptionRow {
|
|
@@ -7540,7 +7610,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7540
7610
|
.ScInChatList_descriptionDot {
|
|
7541
7611
|
width: 20px;
|
|
7542
7612
|
height: 20px;
|
|
7543
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7613
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7544
7614
|
opacity: 0.5;
|
|
7545
7615
|
}
|
|
7546
7616
|
.ScInChatList_descriptionText {
|
|
@@ -7549,7 +7619,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7549
7619
|
font-size: 12px;
|
|
7550
7620
|
line-height: 18px;
|
|
7551
7621
|
letter-spacing: 0;
|
|
7552
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7622
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7553
7623
|
margin: 0;
|
|
7554
7624
|
flex: 1 0 0;
|
|
7555
7625
|
min-width: 0;
|
|
@@ -7571,7 +7641,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7571
7641
|
font-size: 12px;
|
|
7572
7642
|
line-height: 18px;
|
|
7573
7643
|
letter-spacing: 0;
|
|
7574
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7644
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7575
7645
|
margin: 0;
|
|
7576
7646
|
white-space: nowrap;
|
|
7577
7647
|
}
|
|
@@ -7601,7 +7671,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7601
7671
|
font-size: 0.75rem;
|
|
7602
7672
|
line-height: 1.125rem;
|
|
7603
7673
|
letter-spacing: 0;
|
|
7604
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7674
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7605
7675
|
white-space: nowrap;
|
|
7606
7676
|
}
|
|
7607
7677
|
|
|
@@ -7624,7 +7694,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7624
7694
|
width: 100%;
|
|
7625
7695
|
position: relative;
|
|
7626
7696
|
flex-shrink: 0;
|
|
7627
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7697
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7628
7698
|
font-family: "Inter", sans-serif;
|
|
7629
7699
|
font-weight: 400;
|
|
7630
7700
|
font-size: 16px;
|
|
@@ -7694,10 +7764,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7694
7764
|
position: relative;
|
|
7695
7765
|
}
|
|
7696
7766
|
.ScSelection_title {
|
|
7697
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7767
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7698
7768
|
}
|
|
7699
7769
|
.ScSelection_description {
|
|
7700
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7770
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7701
7771
|
}
|
|
7702
7772
|
.ScSelection_scSelection.ScSelection_state-default {
|
|
7703
7773
|
background: transparent;
|
|
@@ -7738,7 +7808,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7738
7808
|
height: 20px;
|
|
7739
7809
|
padding: 0;
|
|
7740
7810
|
border-radius: 50%;
|
|
7741
|
-
border: 0.5px solid var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7811
|
+
border: 0.5px solid var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7742
7812
|
background: transparent;
|
|
7743
7813
|
cursor: pointer;
|
|
7744
7814
|
flex-shrink: 0;
|
|
@@ -7752,7 +7822,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7752
7822
|
.ScSelectionList_closeIcon {
|
|
7753
7823
|
display: block;
|
|
7754
7824
|
flex-shrink: 0;
|
|
7755
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7825
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7756
7826
|
}
|
|
7757
7827
|
.ScSelectionList_content {
|
|
7758
7828
|
flex: 1 0 0;
|
|
@@ -7775,7 +7845,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7775
7845
|
line-height: 18px;
|
|
7776
7846
|
font-weight: 400;
|
|
7777
7847
|
letter-spacing: 0;
|
|
7778
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7848
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7779
7849
|
white-space: nowrap;
|
|
7780
7850
|
word-break: break-word;
|
|
7781
7851
|
max-width: 560px;
|
|
@@ -7795,20 +7865,20 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7795
7865
|
line-height: 18px;
|
|
7796
7866
|
font-weight: 400;
|
|
7797
7867
|
letter-spacing: 0;
|
|
7798
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7868
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7799
7869
|
white-space: nowrap;
|
|
7800
7870
|
word-break: break-word;
|
|
7801
7871
|
}
|
|
7802
7872
|
.ScSelectionList_scSelectionList.ScSelectionList_state-default .ScSelectionList_checkIcon,
|
|
7803
7873
|
.ScSelectionList_scSelectionList.ScSelectionList_state-default .ScSelectionList_closeIcon {
|
|
7804
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
7874
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7805
7875
|
}
|
|
7806
7876
|
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_checkToggle {
|
|
7807
7877
|
border-color: transparent;
|
|
7808
|
-
background: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
7878
|
+
background: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7809
7879
|
}
|
|
7810
7880
|
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_checkIcon {
|
|
7811
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7881
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7812
7882
|
}
|
|
7813
7883
|
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_rejectToggle {
|
|
7814
7884
|
opacity: 0.3;
|
|
@@ -7818,7 +7888,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7818
7888
|
background: var(--alias-fill-error-solidhover, #e04444);
|
|
7819
7889
|
}
|
|
7820
7890
|
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_closeIcon {
|
|
7821
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
7891
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
7822
7892
|
}
|
|
7823
7893
|
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_checkToggle {
|
|
7824
7894
|
opacity: 0.3;
|
|
@@ -7866,7 +7936,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7866
7936
|
position: relative;
|
|
7867
7937
|
}
|
|
7868
7938
|
.ScTextArea_label {
|
|
7869
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
7939
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7870
7940
|
text-align: left;
|
|
7871
7941
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
7872
7942
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -7880,7 +7950,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7880
7950
|
justify-content: flex-start;
|
|
7881
7951
|
}
|
|
7882
7952
|
.ScTextArea_info {
|
|
7883
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7953
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7884
7954
|
text-align: right;
|
|
7885
7955
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
7886
7956
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -7906,10 +7976,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7906
7976
|
height: auto;
|
|
7907
7977
|
min-height: 4.5rem;
|
|
7908
7978
|
position: relative;
|
|
7909
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7979
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7910
7980
|
}
|
|
7911
7981
|
.ScTextArea_inputText {
|
|
7912
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
7982
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
7913
7983
|
text-align: left;
|
|
7914
7984
|
font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
|
|
7915
7985
|
font-size: var(--text-text-sm-regular-font-size, 0.875rem);
|
|
@@ -7934,7 +8004,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7934
8004
|
border-color: var(--alias-border-default, transparent);
|
|
7935
8005
|
}
|
|
7936
8006
|
.ScTextArea_scTextArea.ScTextArea_state-filled .ScTextArea_inputText {
|
|
7937
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8007
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7938
8008
|
}
|
|
7939
8009
|
.ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputContainer {
|
|
7940
8010
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
@@ -7943,11 +8013,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7943
8013
|
border-width: 0.0625rem;
|
|
7944
8014
|
}
|
|
7945
8015
|
.ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputText {
|
|
7946
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8016
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
7947
8017
|
}
|
|
7948
8018
|
.ScTextArea_scTextArea.ScTextArea_state-error .ScTextArea_inputContainer {
|
|
7949
8019
|
border-style: solid;
|
|
7950
|
-
border-color: var(--alias-text-and-icons-error, #d11a1a);
|
|
8020
|
+
border-color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
7951
8021
|
border-width: 0.0625rem;
|
|
7952
8022
|
}
|
|
7953
8023
|
.ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputContainer {
|
|
@@ -7955,7 +8025,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7955
8025
|
border-color: var(--alias-border-subtle, transparent);
|
|
7956
8026
|
}
|
|
7957
8027
|
.ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputText {
|
|
7958
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8028
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
7959
8029
|
cursor: not-allowed;
|
|
7960
8030
|
resize: none;
|
|
7961
8031
|
}
|
|
@@ -7986,7 +8056,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
7986
8056
|
height: 1.5rem;
|
|
7987
8057
|
}
|
|
7988
8058
|
.ScSelect_label {
|
|
7989
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8059
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
7990
8060
|
font-family: Inter, sans-serif;
|
|
7991
8061
|
font-size: 0.875rem;
|
|
7992
8062
|
line-height: 1.25rem;
|
|
@@ -8015,7 +8085,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8015
8085
|
text-align: left;
|
|
8016
8086
|
}
|
|
8017
8087
|
.ScSelect_triggerText {
|
|
8018
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8088
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8019
8089
|
font-family: Inter, sans-serif;
|
|
8020
8090
|
font-size: 0.875rem;
|
|
8021
8091
|
line-height: 1.25rem;
|
|
@@ -8027,13 +8097,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8027
8097
|
white-space: nowrap;
|
|
8028
8098
|
}
|
|
8029
8099
|
.ScSelect_triggerText.ScSelect_placeholder {
|
|
8030
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8100
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8031
8101
|
}
|
|
8032
8102
|
.ScSelect_chevron {
|
|
8033
8103
|
display: flex;
|
|
8034
8104
|
align-items: center;
|
|
8035
8105
|
justify-content: center;
|
|
8036
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8106
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8037
8107
|
flex-shrink: 0;
|
|
8038
8108
|
transition: transform 0.15s ease;
|
|
8039
8109
|
}
|
|
@@ -8058,10 +8128,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8058
8128
|
border-color: var(--alias-border-subtle, transparent);
|
|
8059
8129
|
}
|
|
8060
8130
|
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_triggerText {
|
|
8061
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8131
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
8062
8132
|
}
|
|
8063
8133
|
.ScSelect_scSelect.ScSelect_state-disabled .ScSelect_chevron {
|
|
8064
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8134
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
8065
8135
|
}
|
|
8066
8136
|
.ScSelect_menu {
|
|
8067
8137
|
position: absolute;
|
|
@@ -8097,14 +8167,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8097
8167
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
8098
8168
|
}
|
|
8099
8169
|
.ScSelect_optionLabel {
|
|
8100
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8170
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8101
8171
|
font-family: Inter, sans-serif;
|
|
8102
8172
|
font-size: 0.875rem;
|
|
8103
8173
|
line-height: 1.25rem;
|
|
8104
8174
|
font-weight: 400;
|
|
8105
8175
|
}
|
|
8106
8176
|
.ScSelect_optionDescription {
|
|
8107
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8177
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8108
8178
|
font-family: Inter, sans-serif;
|
|
8109
8179
|
font-size: 0.75rem;
|
|
8110
8180
|
line-height: 1rem;
|
|
@@ -8132,7 +8202,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8132
8202
|
height: 1.5rem;
|
|
8133
8203
|
}
|
|
8134
8204
|
.ScFileField_label {
|
|
8135
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8205
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8136
8206
|
font-family: Inter, sans-serif;
|
|
8137
8207
|
font-size: 0.875rem;
|
|
8138
8208
|
line-height: 1.25rem;
|
|
@@ -8169,22 +8239,22 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8169
8239
|
border: 0;
|
|
8170
8240
|
}
|
|
8171
8241
|
.ScFileField_uploadIcon {
|
|
8172
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8242
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8173
8243
|
flex-shrink: 0;
|
|
8174
8244
|
}
|
|
8175
8245
|
.ScFileField_dropzoneText {
|
|
8176
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8246
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8177
8247
|
font-family: Inter, sans-serif;
|
|
8178
8248
|
font-size: 0.875rem;
|
|
8179
8249
|
line-height: 1.25rem;
|
|
8180
8250
|
font-weight: 400;
|
|
8181
8251
|
}
|
|
8182
8252
|
.ScFileField_dropzoneAction {
|
|
8183
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8253
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8184
8254
|
font-weight: 600;
|
|
8185
8255
|
}
|
|
8186
8256
|
.ScFileField_acceptedText {
|
|
8187
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8257
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8188
8258
|
font-family: Inter, sans-serif;
|
|
8189
8259
|
font-size: 0.75rem;
|
|
8190
8260
|
line-height: 1rem;
|
|
@@ -8203,7 +8273,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8203
8273
|
overflow: hidden;
|
|
8204
8274
|
}
|
|
8205
8275
|
.ScFileField_fileIcon {
|
|
8206
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8276
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8207
8277
|
flex-shrink: 0;
|
|
8208
8278
|
}
|
|
8209
8279
|
.ScFileField_fileInfo {
|
|
@@ -8214,7 +8284,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8214
8284
|
min-width: 0;
|
|
8215
8285
|
}
|
|
8216
8286
|
.ScFileField_fileName {
|
|
8217
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8287
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8218
8288
|
font-family: Inter, sans-serif;
|
|
8219
8289
|
font-size: 0.875rem;
|
|
8220
8290
|
line-height: 1.25rem;
|
|
@@ -8244,14 +8314,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8244
8314
|
background: transparent;
|
|
8245
8315
|
border: none;
|
|
8246
8316
|
cursor: pointer;
|
|
8247
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8317
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8248
8318
|
flex-shrink: 0;
|
|
8249
8319
|
}
|
|
8250
8320
|
.ScFileField_clearButton:hover {
|
|
8251
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8321
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8252
8322
|
}
|
|
8253
8323
|
.ScFileField_errorText {
|
|
8254
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
8324
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
8255
8325
|
font-family: Inter, sans-serif;
|
|
8256
8326
|
font-size: 0.75rem;
|
|
8257
8327
|
line-height: 1rem;
|
|
@@ -8324,7 +8394,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8324
8394
|
background: rgba(0, 0, 0, 0.55);
|
|
8325
8395
|
backdrop-filter: blur(6px);
|
|
8326
8396
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
8327
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
8397
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
8328
8398
|
cursor: pointer;
|
|
8329
8399
|
}
|
|
8330
8400
|
.ScMediaApproval_navPrev {
|
|
@@ -8343,7 +8413,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8343
8413
|
background: rgba(0, 0, 0, 0.55);
|
|
8344
8414
|
backdrop-filter: blur(6px);
|
|
8345
8415
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
8346
|
-
color: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
8416
|
+
color: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
8347
8417
|
font-family: Inter, sans-serif;
|
|
8348
8418
|
font-size: 10px;
|
|
8349
8419
|
line-height: 1;
|
|
@@ -8374,7 +8444,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8374
8444
|
}
|
|
8375
8445
|
.ScMediaApproval_dot.ScMediaApproval_state-active {
|
|
8376
8446
|
width: 1rem;
|
|
8377
|
-
background: var(--alias-text-and-icons-fullwhite, #ffffff);
|
|
8447
|
+
background: var(--alias-text---icons-fullwhite, var(--alias-text-and-icons-fullwhite, #ffffff));
|
|
8378
8448
|
}
|
|
8379
8449
|
.ScMediaApproval_feedbackBlock {
|
|
8380
8450
|
display: flex;
|
|
@@ -8383,7 +8453,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8383
8453
|
width: 100%;
|
|
8384
8454
|
}
|
|
8385
8455
|
.ScMediaApproval_label {
|
|
8386
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8456
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8387
8457
|
font-family: Inter, sans-serif;
|
|
8388
8458
|
font-size: 0.875rem;
|
|
8389
8459
|
line-height: 1.25rem;
|
|
@@ -8406,14 +8476,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8406
8476
|
background: transparent;
|
|
8407
8477
|
outline: none;
|
|
8408
8478
|
border: none;
|
|
8409
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8479
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8410
8480
|
font-family: Inter, sans-serif;
|
|
8411
8481
|
font-size: 0.875rem;
|
|
8412
8482
|
line-height: 1.25rem;
|
|
8413
8483
|
font-weight: 400;
|
|
8414
8484
|
}
|
|
8415
8485
|
.ScMediaApproval_textArea::placeholder {
|
|
8416
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8486
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8417
8487
|
}
|
|
8418
8488
|
|
|
8419
8489
|
/* src/SC-mediaSelect/ScMediaSelect.module.css */
|
|
@@ -8436,7 +8506,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8436
8506
|
align-self: stretch;
|
|
8437
8507
|
}
|
|
8438
8508
|
.ScMediaSelect_countLabel {
|
|
8439
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8509
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8440
8510
|
font-family: Inter, sans-serif;
|
|
8441
8511
|
font-size: 0.75rem;
|
|
8442
8512
|
line-height: 1rem;
|
|
@@ -8448,7 +8518,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8448
8518
|
gap: var(--spacing-md, 0.5rem);
|
|
8449
8519
|
}
|
|
8450
8520
|
.ScMediaSelect_linkButton {
|
|
8451
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8521
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8452
8522
|
font-family: Inter, sans-serif;
|
|
8453
8523
|
font-size: 0.6875rem;
|
|
8454
8524
|
line-height: 1rem;
|
|
@@ -8462,7 +8532,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8462
8532
|
text-decoration: underline;
|
|
8463
8533
|
}
|
|
8464
8534
|
.ScMediaSelect_divider {
|
|
8465
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8535
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8466
8536
|
font-size: 0.6875rem;
|
|
8467
8537
|
line-height: 1rem;
|
|
8468
8538
|
}
|
|
@@ -8522,7 +8592,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8522
8592
|
border-radius: var(--radius-xs, 0.25rem);
|
|
8523
8593
|
border: none;
|
|
8524
8594
|
background: rgba(0, 0, 0, 0.5);
|
|
8525
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8595
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8526
8596
|
display: none;
|
|
8527
8597
|
align-items: center;
|
|
8528
8598
|
justify-content: center;
|
|
@@ -8554,15 +8624,15 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8554
8624
|
display: flex;
|
|
8555
8625
|
align-items: center;
|
|
8556
8626
|
gap: var(--spacing-xs, 0.25rem);
|
|
8557
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8627
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8558
8628
|
padding: 0 var(--spacing-md, 0.5rem);
|
|
8559
8629
|
}
|
|
8560
8630
|
.ScTodoList_progressIcon {
|
|
8561
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8631
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8562
8632
|
flex-shrink: 0;
|
|
8563
8633
|
}
|
|
8564
8634
|
.ScTodoList_progressText {
|
|
8565
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8635
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8566
8636
|
font-family: Inter, sans-serif;
|
|
8567
8637
|
font-size: 0.6875rem;
|
|
8568
8638
|
line-height: 1rem;
|
|
@@ -8601,7 +8671,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8601
8671
|
.ScTodoList_content {
|
|
8602
8672
|
flex: 1;
|
|
8603
8673
|
min-width: 0;
|
|
8604
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8674
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8605
8675
|
font-family: Inter, sans-serif;
|
|
8606
8676
|
font-size: 0.875rem;
|
|
8607
8677
|
line-height: 1.25rem;
|
|
@@ -8609,13 +8679,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8609
8679
|
word-break: break-word;
|
|
8610
8680
|
}
|
|
8611
8681
|
.ScTodoList_content.ScTodoList_status-completed {
|
|
8612
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8682
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8613
8683
|
text-decoration: line-through;
|
|
8614
8684
|
}
|
|
8615
8685
|
.ScTodoList_editInput {
|
|
8616
8686
|
flex: 1;
|
|
8617
8687
|
min-width: 0;
|
|
8618
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8688
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8619
8689
|
font-family: Inter, sans-serif;
|
|
8620
8690
|
font-size: 0.875rem;
|
|
8621
8691
|
line-height: 1.25rem;
|
|
@@ -8651,15 +8721,15 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8651
8721
|
background: transparent;
|
|
8652
8722
|
border: none;
|
|
8653
8723
|
border-radius: var(--radius-xs, 0.25rem);
|
|
8654
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8724
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8655
8725
|
cursor: pointer;
|
|
8656
8726
|
outline: none;
|
|
8657
8727
|
}
|
|
8658
8728
|
.ScTodoList_actionButton:hover {
|
|
8659
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8729
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8660
8730
|
}
|
|
8661
8731
|
.ScTodoList_actionButtonDanger:hover {
|
|
8662
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
8732
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
8663
8733
|
}
|
|
8664
8734
|
.ScTodoList_addRow {
|
|
8665
8735
|
display: flex;
|
|
@@ -8670,7 +8740,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8670
8740
|
.ScTodoList_addInput {
|
|
8671
8741
|
flex: 1;
|
|
8672
8742
|
min-width: 0;
|
|
8673
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8743
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8674
8744
|
font-family: Inter, sans-serif;
|
|
8675
8745
|
font-size: 0.875rem;
|
|
8676
8746
|
line-height: 1.25rem;
|
|
@@ -8683,7 +8753,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8683
8753
|
outline: none;
|
|
8684
8754
|
}
|
|
8685
8755
|
.ScTodoList_addInput::placeholder {
|
|
8686
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
8756
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
8687
8757
|
}
|
|
8688
8758
|
.ScTodoList_addInput:hover,
|
|
8689
8759
|
.ScTodoList_addInput:focus {
|
|
@@ -8702,7 +8772,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8702
8772
|
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
8703
8773
|
border: 1px solid var(--alias-border-subtle, transparent);
|
|
8704
8774
|
border-radius: var(--radius-md, 0.5rem);
|
|
8705
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8775
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8706
8776
|
cursor: pointer;
|
|
8707
8777
|
outline: none;
|
|
8708
8778
|
transition: opacity 0.12s ease;
|
|
@@ -8710,10 +8780,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8710
8780
|
.ScTodoList_addButton:hover:not(:disabled) {
|
|
8711
8781
|
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
8712
8782
|
border-color: var(--alias-border-default, #3e3e3e);
|
|
8713
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8783
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8714
8784
|
}
|
|
8715
8785
|
.ScTodoList_addButton:disabled {
|
|
8716
|
-
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
8786
|
+
color: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
8717
8787
|
cursor: not-allowed;
|
|
8718
8788
|
}
|
|
8719
8789
|
|
|
@@ -8750,10 +8820,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8750
8820
|
margin: 0;
|
|
8751
8821
|
}
|
|
8752
8822
|
.ScRoleMobile_role-admin .ScRoleMobile_text {
|
|
8753
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
8823
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
8754
8824
|
}
|
|
8755
8825
|
.ScRoleMobile_role-member .ScRoleMobile_text {
|
|
8756
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8826
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8757
8827
|
}
|
|
8758
8828
|
|
|
8759
8829
|
/* src/SC-Profile-V2-Mobile/ScProfileV2Mobile.module.css */
|
|
@@ -8789,7 +8859,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8789
8859
|
align-items: center;
|
|
8790
8860
|
justify-content: center;
|
|
8791
8861
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
8792
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8862
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8793
8863
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
8794
8864
|
font-size: var(--font-size-font-size-sm, 14px);
|
|
8795
8865
|
font-weight: 500;
|
|
@@ -8809,7 +8879,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8809
8879
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
8810
8880
|
font-size: 14px;
|
|
8811
8881
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
8812
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8882
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8813
8883
|
overflow: hidden;
|
|
8814
8884
|
text-overflow: ellipsis;
|
|
8815
8885
|
margin: 0;
|
|
@@ -8820,7 +8890,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8820
8890
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
8821
8891
|
font-size: 12px;
|
|
8822
8892
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
8823
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8893
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8824
8894
|
overflow: hidden;
|
|
8825
8895
|
text-overflow: ellipsis;
|
|
8826
8896
|
margin: 0;
|
|
@@ -8863,7 +8933,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8863
8933
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
8864
8934
|
font-size: 14px;
|
|
8865
8935
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
8866
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8936
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8867
8937
|
overflow: hidden;
|
|
8868
8938
|
text-overflow: ellipsis;
|
|
8869
8939
|
margin: 0;
|
|
@@ -8874,7 +8944,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8874
8944
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
8875
8945
|
font-size: 12px;
|
|
8876
8946
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
8877
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
8947
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
8878
8948
|
overflow: hidden;
|
|
8879
8949
|
text-overflow: ellipsis;
|
|
8880
8950
|
margin: 0;
|
|
@@ -8901,7 +8971,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8901
8971
|
align-items: center;
|
|
8902
8972
|
justify-content: center;
|
|
8903
8973
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
8904
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
8974
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
8905
8975
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
8906
8976
|
font-size: 14px;
|
|
8907
8977
|
font-weight: 500;
|
|
@@ -8928,7 +8998,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
8928
8998
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
8929
8999
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
8930
9000
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
8931
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
9001
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
8932
9002
|
white-space: nowrap;
|
|
8933
9003
|
margin: 0;
|
|
8934
9004
|
}
|
|
@@ -9005,7 +9075,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9005
9075
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9006
9076
|
font-size: var(--font-size-font-size-md, 14px);
|
|
9007
9077
|
line-height: var(--line-height-line-height-md, 20px);
|
|
9008
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9078
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9009
9079
|
text-align: center;
|
|
9010
9080
|
overflow: hidden;
|
|
9011
9081
|
text-overflow: ellipsis;
|
|
@@ -9017,7 +9087,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9017
9087
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9018
9088
|
font-size: 16px;
|
|
9019
9089
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9020
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9090
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9021
9091
|
overflow: hidden;
|
|
9022
9092
|
text-overflow: ellipsis;
|
|
9023
9093
|
margin: 0;
|
|
@@ -9039,7 +9109,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9039
9109
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9040
9110
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
9041
9111
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9042
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
9112
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
9043
9113
|
white-space: nowrap;
|
|
9044
9114
|
margin: 0;
|
|
9045
9115
|
}
|
|
@@ -9075,7 +9145,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9075
9145
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9076
9146
|
font-size: 14px;
|
|
9077
9147
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9078
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9148
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9079
9149
|
overflow: hidden;
|
|
9080
9150
|
text-overflow: ellipsis;
|
|
9081
9151
|
white-space: nowrap;
|
|
@@ -9135,7 +9205,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9135
9205
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9136
9206
|
font-size: var(--font-size-font-size-md, 14px);
|
|
9137
9207
|
line-height: var(--line-height-line-height-md, 20px);
|
|
9138
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9208
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9139
9209
|
text-align: center;
|
|
9140
9210
|
overflow: hidden;
|
|
9141
9211
|
text-overflow: ellipsis;
|
|
@@ -9147,7 +9217,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9147
9217
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9148
9218
|
font-size: 16px;
|
|
9149
9219
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9150
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9220
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9151
9221
|
overflow: hidden;
|
|
9152
9222
|
text-overflow: ellipsis;
|
|
9153
9223
|
margin: 0;
|
|
@@ -9169,7 +9239,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9169
9239
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9170
9240
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
9171
9241
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9172
|
-
color: var(--alias-text-and-icons-infocont, #6da5ff);
|
|
9242
|
+
color: var(--alias-text---icons-infocont, var(--alias-text-and-icons-infocont, #6da5ff));
|
|
9173
9243
|
white-space: nowrap;
|
|
9174
9244
|
margin: 0;
|
|
9175
9245
|
}
|
|
@@ -9205,7 +9275,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9205
9275
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9206
9276
|
font-size: 14px;
|
|
9207
9277
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9208
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9278
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9209
9279
|
overflow: hidden;
|
|
9210
9280
|
text-overflow: ellipsis;
|
|
9211
9281
|
white-space: nowrap;
|
|
@@ -9254,7 +9324,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9254
9324
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9255
9325
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9256
9326
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9257
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9327
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9258
9328
|
margin: 0;
|
|
9259
9329
|
min-width: 0;
|
|
9260
9330
|
overflow: hidden;
|
|
@@ -9267,7 +9337,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9267
9337
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9268
9338
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9269
9339
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9270
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9340
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9271
9341
|
text-align: center;
|
|
9272
9342
|
margin: 0;
|
|
9273
9343
|
min-width: 0;
|
|
@@ -9304,11 +9374,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9304
9374
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9305
9375
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9306
9376
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9307
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9377
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9308
9378
|
min-width: 0;
|
|
9309
9379
|
}
|
|
9310
9380
|
.ScMobileTopNav_searchField::placeholder {
|
|
9311
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
9381
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
9312
9382
|
}
|
|
9313
9383
|
|
|
9314
9384
|
/* src/SC-MobileBottomAction/ScMobileBottomAction.module.css */
|
|
@@ -9363,7 +9433,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9363
9433
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9364
9434
|
font-size: var(--font-size-font-size-sm, 14px);
|
|
9365
9435
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9366
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
9436
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
9367
9437
|
white-space: nowrap;
|
|
9368
9438
|
}
|
|
9369
9439
|
.ScMobileBottomAction_outlineButtonText {
|
|
@@ -9371,7 +9441,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9371
9441
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9372
9442
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9373
9443
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9374
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9444
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9375
9445
|
white-space: nowrap;
|
|
9376
9446
|
}
|
|
9377
9447
|
|
|
@@ -9408,7 +9478,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9408
9478
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9409
9479
|
font-size: var(--font-size-font-size-md, 16px);
|
|
9410
9480
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9411
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9481
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9412
9482
|
white-space: nowrap;
|
|
9413
9483
|
margin: 0;
|
|
9414
9484
|
}
|
|
@@ -9462,7 +9532,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9462
9532
|
align-items: center;
|
|
9463
9533
|
justify-content: center;
|
|
9464
9534
|
background: var(--alias-fill-neutral-neutralselected, #242424);
|
|
9465
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9535
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9466
9536
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9467
9537
|
font-size: 14px;
|
|
9468
9538
|
font-weight: 500;
|
|
@@ -9479,7 +9549,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9479
9549
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9480
9550
|
font-size: 14px;
|
|
9481
9551
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9482
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9552
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9483
9553
|
overflow: hidden;
|
|
9484
9554
|
text-overflow: ellipsis;
|
|
9485
9555
|
white-space: nowrap;
|
|
@@ -9490,7 +9560,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9490
9560
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9491
9561
|
font-size: 12px;
|
|
9492
9562
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9493
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9563
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9494
9564
|
overflow: hidden;
|
|
9495
9565
|
text-overflow: ellipsis;
|
|
9496
9566
|
white-space: nowrap;
|
|
@@ -9510,7 +9580,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9510
9580
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9511
9581
|
font-size: var(--font-size-font-size-xs, 12px);
|
|
9512
9582
|
line-height: var(--line-height-line-height-xs, 18px);
|
|
9513
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9583
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9514
9584
|
white-space: nowrap;
|
|
9515
9585
|
margin: 0;
|
|
9516
9586
|
}
|
|
@@ -9531,7 +9601,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9531
9601
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9532
9602
|
font-size: 14px;
|
|
9533
9603
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9534
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9604
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9535
9605
|
overflow: hidden;
|
|
9536
9606
|
text-overflow: ellipsis;
|
|
9537
9607
|
white-space: nowrap;
|
|
@@ -9543,7 +9613,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9543
9613
|
font-weight: var(--font-weight-font-weight-semibold, 600);
|
|
9544
9614
|
font-size: 16px;
|
|
9545
9615
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9546
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
9616
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
9547
9617
|
text-align: right;
|
|
9548
9618
|
overflow: hidden;
|
|
9549
9619
|
text-overflow: ellipsis;
|
|
@@ -9574,7 +9644,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9574
9644
|
min-width: 0;
|
|
9575
9645
|
}
|
|
9576
9646
|
.InvoiceHistoryMobile_invoiceId {
|
|
9577
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9647
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9578
9648
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9579
9649
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
9580
9650
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -9585,7 +9655,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9585
9655
|
width: 100%;
|
|
9586
9656
|
}
|
|
9587
9657
|
.InvoiceHistoryMobile_date {
|
|
9588
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9658
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9589
9659
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9590
9660
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9591
9661
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9596,7 +9666,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9596
9666
|
width: 100%;
|
|
9597
9667
|
}
|
|
9598
9668
|
.InvoiceHistoryMobile_amount {
|
|
9599
|
-
color: var(--alias-text-and-icons-success, #00b96b);
|
|
9669
|
+
color: var(--alias-text---icons-success, var(--alias-text-and-icons-success, #00b96b));
|
|
9600
9670
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9601
9671
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
9602
9672
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -9630,7 +9700,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9630
9700
|
width: 100%;
|
|
9631
9701
|
}
|
|
9632
9702
|
.UsageHistoryMobile_serviceName {
|
|
9633
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9703
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9634
9704
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9635
9705
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9636
9706
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9642,7 +9712,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9642
9712
|
white-space: nowrap;
|
|
9643
9713
|
}
|
|
9644
9714
|
.UsageHistoryMobile_credits {
|
|
9645
|
-
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
9715
|
+
color: var(--alias-text---icons-error, var(--alias-text-and-icons-error, #d11a1a));
|
|
9646
9716
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9647
9717
|
font-size: var(--font-size-font-size-md, 1rem);
|
|
9648
9718
|
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
@@ -9667,7 +9737,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9667
9737
|
align-items: center;
|
|
9668
9738
|
}
|
|
9669
9739
|
.UsageHistoryMobile_metaText {
|
|
9670
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9740
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9671
9741
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9672
9742
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9673
9743
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9684,7 +9754,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9684
9754
|
border-left: 0.5px solid var(--alias-border-divider, #242424);
|
|
9685
9755
|
}
|
|
9686
9756
|
.UsageHistoryMobile_balance {
|
|
9687
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9757
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9688
9758
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9689
9759
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9690
9760
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9748,7 +9818,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9748
9818
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9749
9819
|
font-size: 16px;
|
|
9750
9820
|
line-height: var(--line-height-line-height-md, 24px);
|
|
9751
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
9821
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9752
9822
|
overflow: hidden;
|
|
9753
9823
|
text-overflow: ellipsis;
|
|
9754
9824
|
white-space: nowrap;
|
|
@@ -9767,12 +9837,12 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9767
9837
|
font-weight: var(--font-weight-font-weight-medium, 500);
|
|
9768
9838
|
font-size: var(--font-size-font-size-sm, 14px);
|
|
9769
9839
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9770
|
-
color: var(--alias-text-and-icons-warning, #db8b00);
|
|
9840
|
+
color: var(--alias-text---icons-warning, var(--alias-text-and-icons-warning, #db8b00));
|
|
9771
9841
|
white-space: nowrap;
|
|
9772
9842
|
flex-shrink: 0;
|
|
9773
9843
|
}
|
|
9774
9844
|
.ScWorkspaceSwitchMobileV2_roleMember {
|
|
9775
|
-
color: var(--alias-text-and-icons-info, #155cd6);
|
|
9845
|
+
color: var(--alias-text---icons-info, var(--alias-text-and-icons-info, #155cd6));
|
|
9776
9846
|
}
|
|
9777
9847
|
.ScWorkspaceSwitchMobileV2_dot {
|
|
9778
9848
|
width: 16px;
|
|
@@ -9788,14 +9858,14 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9788
9858
|
width: 2.67px;
|
|
9789
9859
|
height: 2.67px;
|
|
9790
9860
|
border-radius: var(--radius-full, 999px);
|
|
9791
|
-
background: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
9861
|
+
background: var(--alias-text---icons-disabled, var(--alias-text-and-icons-disabled, #5c5c5c));
|
|
9792
9862
|
}
|
|
9793
9863
|
.ScWorkspaceSwitchMobileV2_planText {
|
|
9794
9864
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9795
9865
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9796
9866
|
font-size: 14px;
|
|
9797
9867
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9798
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9868
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9799
9869
|
overflow: hidden;
|
|
9800
9870
|
text-overflow: ellipsis;
|
|
9801
9871
|
white-space: nowrap;
|
|
@@ -9806,7 +9876,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9806
9876
|
font-weight: var(--font-weight-font-weight-regular, 400);
|
|
9807
9877
|
font-size: 14px;
|
|
9808
9878
|
line-height: var(--line-height-line-height-sm, 20px);
|
|
9809
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9879
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9810
9880
|
overflow: hidden;
|
|
9811
9881
|
text-overflow: ellipsis;
|
|
9812
9882
|
white-space: nowrap;
|
|
@@ -9838,7 +9908,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9838
9908
|
position: relative;
|
|
9839
9909
|
}
|
|
9840
9910
|
.ScImageField_label {
|
|
9841
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
9911
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9842
9912
|
text-align: left;
|
|
9843
9913
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9844
9914
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
@@ -9870,7 +9940,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9870
9940
|
flex-shrink: 0;
|
|
9871
9941
|
}
|
|
9872
9942
|
.ScImageField_uploadText {
|
|
9873
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9943
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9874
9944
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9875
9945
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9876
9946
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9899,7 +9969,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9899
9969
|
flex-shrink: 0;
|
|
9900
9970
|
}
|
|
9901
9971
|
.ScImageField_fileName {
|
|
9902
|
-
color: var(--alias-text-and-icons-secondary, #dadada);
|
|
9972
|
+
color: var(--alias-text---icons-secondary, var(--alias-text-and-icons-secondary, #dadada));
|
|
9903
9973
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9904
9974
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9905
9975
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -9943,13 +10013,13 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9943
10013
|
flex-shrink: 0;
|
|
9944
10014
|
}
|
|
9945
10015
|
.ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-true {
|
|
9946
|
-
border-bottom: 1.25px solid var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10016
|
+
border-bottom: 1.25px solid var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9947
10017
|
}
|
|
9948
10018
|
.ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-true .ScSettingsTabComp_tabText {
|
|
9949
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10019
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
9950
10020
|
}
|
|
9951
10021
|
.ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-false .ScSettingsTabComp_tabText {
|
|
9952
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
10022
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
9953
10023
|
}
|
|
9954
10024
|
|
|
9955
10025
|
/* src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.module.css */
|
|
@@ -9984,7 +10054,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
9984
10054
|
flex-shrink: 0;
|
|
9985
10055
|
}
|
|
9986
10056
|
.ScCreditsUsageCardMobile_headerLabel {
|
|
9987
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10057
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
9988
10058
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
9989
10059
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
9990
10060
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10007,7 +10077,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10007
10077
|
flex-shrink: 0;
|
|
10008
10078
|
}
|
|
10009
10079
|
.ScCreditsUsageCardMobile_usageText {
|
|
10010
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10080
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10011
10081
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10012
10082
|
font-size: var(--font-size-font-size-lg, 1.125rem);
|
|
10013
10083
|
line-height: var(--line-height-line-height-lg, 1.625rem);
|
|
@@ -10015,7 +10085,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10015
10085
|
width: 100%;
|
|
10016
10086
|
}
|
|
10017
10087
|
.ScCreditsUsageCardMobile_remainingText {
|
|
10018
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10088
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10019
10089
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10020
10090
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10021
10091
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10065,7 +10135,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10065
10135
|
flex-shrink: 0;
|
|
10066
10136
|
}
|
|
10067
10137
|
.ScPlanDetailsCardMobile_headerLabel {
|
|
10068
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10138
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10069
10139
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10070
10140
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10071
10141
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10094,7 +10164,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10094
10164
|
width: 100%;
|
|
10095
10165
|
}
|
|
10096
10166
|
.ScPlanDetailsCardMobile_planName {
|
|
10097
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10167
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10098
10168
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10099
10169
|
font-size: var(--font-size-font-size-lg, 1.125rem);
|
|
10100
10170
|
line-height: var(--line-height-line-height-lg, 1.625rem);
|
|
@@ -10115,10 +10185,10 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10115
10185
|
width: 4px;
|
|
10116
10186
|
height: 4px;
|
|
10117
10187
|
border-radius: var(--radius-full, 999px);
|
|
10118
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10188
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10119
10189
|
}
|
|
10120
10190
|
.ScPlanDetailsCardMobile_planPrice {
|
|
10121
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10191
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10122
10192
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10123
10193
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10124
10194
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10138,11 +10208,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10138
10208
|
width: 0.25rem;
|
|
10139
10209
|
height: 0.25rem;
|
|
10140
10210
|
border-radius: var(--radius-full, 999px);
|
|
10141
|
-
background: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10211
|
+
background: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10142
10212
|
flex-shrink: 0;
|
|
10143
10213
|
}
|
|
10144
10214
|
.ScPlanDetailsCardMobile_badgeSubText {
|
|
10145
|
-
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
10215
|
+
color: var(--alias-text---icons-tertiary, var(--alias-text-and-icons-tertiary, #9e9e9e));
|
|
10146
10216
|
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
10147
10217
|
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
10148
10218
|
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
@@ -10260,7 +10330,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10260
10330
|
background: none;
|
|
10261
10331
|
border: none;
|
|
10262
10332
|
margin: 0;
|
|
10263
|
-
font:
|
|
10333
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
10264
10334
|
color: inherit;
|
|
10265
10335
|
text-align: left;
|
|
10266
10336
|
flex: 1;
|
|
@@ -10294,7 +10364,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10294
10364
|
background: none;
|
|
10295
10365
|
border: none;
|
|
10296
10366
|
cursor: pointer;
|
|
10297
|
-
color: var(--alias-text-and-icons-errorcont, #eb6b6b);
|
|
10367
|
+
color: var(--alias-text---icons-errorcont, var(--alias-text-and-icons-errorcont, #eb6b6b));
|
|
10298
10368
|
}
|
|
10299
10369
|
.ScProfilePopup_logoutButton:hover {
|
|
10300
10370
|
background: var(--alias-fill-error-secondaryhover, #2a0606);
|
|
@@ -10350,12 +10420,12 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10350
10420
|
justify-content: center;
|
|
10351
10421
|
flex-shrink: 0;
|
|
10352
10422
|
position: relative;
|
|
10353
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10423
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10354
10424
|
}
|
|
10355
10425
|
.ScProfilePopup_creditsValue {
|
|
10356
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10426
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10357
10427
|
text-align: left;
|
|
10358
|
-
font-family: var(--
|
|
10428
|
+
font-family: var(--sc-rail-font-family, Inter, ui-sans-serif, system-ui, sans-serif);
|
|
10359
10429
|
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
10360
10430
|
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
10361
10431
|
letter-spacing: var(--letter-spacing-letter-spacing-normal, 0);
|
|
@@ -10393,7 +10463,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10393
10463
|
}
|
|
10394
10464
|
.ScProfilePopup_menuOptionInstance {
|
|
10395
10465
|
cursor: pointer;
|
|
10396
|
-
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
10466
|
+
color: var(--alias-text---icons-primary, var(--alias-text-and-icons-primary, #f5f5f5));
|
|
10397
10467
|
}
|
|
10398
10468
|
.ScProfilePopup_menuOptionInstance:focus-visible {
|
|
10399
10469
|
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|
|
@@ -10403,11 +10473,11 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
10403
10473
|
flex: 1 !important;
|
|
10404
10474
|
align-self: unset !important;
|
|
10405
10475
|
flex-shrink: unset !important;
|
|
10406
|
-
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
10476
|
+
color: var(--alias-text---icons-muted, var(--alias-text-and-icons-muted, #7a7a7a));
|
|
10407
10477
|
cursor: pointer;
|
|
10408
10478
|
}
|
|
10409
10479
|
.ScProfilePopup_themeTabActive {
|
|
10410
|
-
color: var(--alias-text-and-icons-inverse, #101010);
|
|
10480
|
+
color: var(--alias-text---icons-inverse, var(--alias-text-and-icons-inverse, #101010));
|
|
10411
10481
|
}
|
|
10412
10482
|
.ScProfilePopup_themeTab:focus-visible {
|
|
10413
10483
|
outline: var(--stroke-st2, 2px) solid var(--alias-border-default, #3e3e3e);
|