@usefragments/ui 1.3.3 → 1.4.0
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/assets/ui.css +1176 -766
- package/dist/chart.cjs +60 -24
- package/dist/chart.js +38 -24
- package/dist/colorpicker.cjs +56 -9
- package/dist/colorpicker.js +34 -9
- package/dist/components/Badge/Badge.module.scss.cjs +23 -16
- package/dist/components/Badge/Badge.module.scss.js +23 -16
- package/dist/components/Badge/index.cjs +8 -1
- package/dist/components/Badge/index.d.ts +3 -0
- package/dist/components/Badge/index.d.ts.map +1 -1
- package/dist/components/Badge/index.js +8 -1
- package/dist/components/Button/Button.module.scss.cjs +16 -13
- package/dist/components/Button/Button.module.scss.js +16 -13
- package/dist/components/Button/index.d.ts +2 -1
- package/dist/components/Button/index.d.ts.map +1 -1
- package/dist/components/Chart/index.d.ts +3 -0
- package/dist/components/Chart/index.d.ts.map +1 -1
- package/dist/components/CodeBlock/CodeBlock.module.scss.cjs +21 -21
- package/dist/components/CodeBlock/CodeBlock.module.scss.js +21 -21
- package/dist/components/ColorPicker/index.d.ts +4 -0
- package/dist/components/ColorPicker/index.d.ts.map +1 -1
- package/dist/components/Combobox/Combobox.module.scss.cjs +23 -23
- package/dist/components/Combobox/Combobox.module.scss.js +23 -23
- package/dist/components/Command/Command.module.scss.cjs +11 -11
- package/dist/components/Command/Command.module.scss.js +11 -11
- package/dist/components/ConversationList/ConversationList.module.scss.cjs +13 -10
- package/dist/components/ConversationList/ConversationList.module.scss.js +14 -11
- package/dist/components/ConversationList/index.cjs +26 -22
- package/dist/components/ConversationList/index.d.ts +5 -1
- package/dist/components/ConversationList/index.d.ts.map +1 -1
- package/dist/components/ConversationList/index.js +27 -23
- package/dist/components/DataTable/index.d.ts +4 -1
- package/dist/components/DataTable/index.d.ts.map +1 -1
- package/dist/components/DatePicker/index.d.ts +3 -0
- package/dist/components/DatePicker/index.d.ts.map +1 -1
- package/dist/components/Editor/index.d.ts +4 -1
- package/dist/components/Editor/index.d.ts.map +1 -1
- package/dist/components/Listbox/Listbox.module.scss.cjs +8 -8
- package/dist/components/Listbox/Listbox.module.scss.js +8 -8
- package/dist/components/Markdown/Markdown.module.scss.cjs +1 -1
- package/dist/components/Markdown/Markdown.module.scss.js +1 -1
- package/dist/components/Markdown/index.d.ts +16 -0
- package/dist/components/Markdown/index.d.ts.map +1 -1
- package/dist/components/Menu/Menu.module.scss.cjs +14 -14
- package/dist/components/Menu/Menu.module.scss.js +14 -14
- package/dist/components/Message/Message.module.scss.cjs +23 -20
- package/dist/components/Message/Message.module.scss.js +24 -21
- package/dist/components/Message/index.cjs +5 -1
- package/dist/components/Message/index.d.ts.map +1 -1
- package/dist/components/Message/index.js +5 -1
- package/dist/components/NavigationMenu/NavigationMenu.module.scss.cjs +28 -28
- package/dist/components/NavigationMenu/NavigationMenu.module.scss.js +28 -28
- package/dist/components/Pagination/Pagination.module.scss.cjs +7 -7
- package/dist/components/Pagination/Pagination.module.scss.js +7 -7
- package/dist/components/Prompt/Prompt.module.scss.cjs +52 -22
- package/dist/components/Prompt/Prompt.module.scss.js +52 -22
- package/dist/components/Prompt/index.cjs +197 -2
- package/dist/components/Prompt/index.d.ts +98 -3
- package/dist/components/Prompt/index.d.ts.map +1 -1
- package/dist/components/Prompt/index.js +198 -3
- package/dist/components/Select/Select.module.scss.cjs +29 -17
- package/dist/components/Select/Select.module.scss.js +30 -18
- package/dist/components/Select/index.cjs +45 -8
- package/dist/components/Select/index.d.ts +17 -2
- package/dist/components/Select/index.d.ts.map +1 -1
- package/dist/components/Select/index.js +45 -8
- package/dist/components/Sidebar/Sidebar.module.scss.cjs +45 -42
- package/dist/components/Sidebar/Sidebar.module.scss.js +45 -42
- package/dist/components/Sidebar/index.cjs +2 -0
- package/dist/components/Sidebar/index.d.ts +6 -1
- package/dist/components/Sidebar/index.d.ts.map +1 -1
- package/dist/components/Sidebar/index.js +2 -0
- package/dist/components/Text/Text.module.scss.cjs +63 -51
- package/dist/components/Text/Text.module.scss.js +63 -51
- package/dist/components/Text/index.d.ts +4 -2
- package/dist/components/Text/index.d.ts.map +1 -1
- package/dist/data-table.cjs +210 -28
- package/dist/data-table.js +189 -29
- package/dist/datepicker.cjs +63 -14
- package/dist/datepicker.js +41 -14
- package/dist/editor.cjs +67 -16
- package/dist/editor.js +45 -16
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/markdown.cjs +63 -19
- package/dist/markdown.js +41 -19
- package/fragments.json +1 -1
- package/package.json +2 -2
- package/src/components/Badge/Badge.contract.json +28 -5
- package/src/components/Badge/Badge.module.scss +21 -0
- package/src/components/Badge/index.tsx +10 -1
- package/src/components/Button/Button.contract.json +9 -3
- package/src/components/Button/Button.module.scss +34 -0
- package/src/components/Button/index.tsx +11 -1
- package/src/components/Chart/Chart.contract.json +7 -0
- package/src/components/Chart/index.tsx +44 -27
- package/src/components/CodeBlock/CodeBlock.contract.json +7 -0
- package/src/components/CodeBlock/CodeBlock.module.scss +7 -2
- package/src/components/ColorPicker/ColorPicker.contract.json +9 -1
- package/src/components/ColorPicker/index.tsx +42 -12
- package/src/components/Combobox/Combobox.module.scss +4 -13
- package/src/components/ConversationList/ConversationList.contract.json +16 -1
- package/src/components/ConversationList/ConversationList.module.scss +12 -0
- package/src/components/ConversationList/index.tsx +40 -26
- package/src/components/DataTable/DataTable.contract.json +8 -1
- package/src/components/DataTable/index.tsx +282 -51
- package/src/components/DatePicker/DatePicker.contract.json +8 -1
- package/src/components/DatePicker/index.tsx +51 -22
- package/src/components/Editor/Editor.contract.json +19 -1
- package/src/components/Editor/index.tsx +67 -23
- package/src/components/Listbox/Listbox.module.scss +3 -11
- package/src/components/Markdown/Markdown.contract.json +15 -1
- package/src/components/Markdown/Markdown.module.scss +18 -1
- package/src/components/Markdown/index.tsx +58 -24
- package/src/components/Menu/Menu.module.scss +12 -2
- package/src/components/Message/Message.contract.json +3 -0
- package/src/components/Message/Message.module.scss +33 -4
- package/src/components/Message/index.tsx +7 -1
- package/src/components/Pagination/Pagination.contract.json +1 -0
- package/src/components/Pagination/Pagination.module.scss +5 -4
- package/src/components/Prompt/Prompt.contract.json +40 -1
- package/src/components/Prompt/Prompt.module.scss +351 -4
- package/src/components/Prompt/index.tsx +324 -0
- package/src/components/Select/Select.contract.json +11 -1
- package/src/components/Select/Select.module.scss +80 -13
- package/src/components/Select/index.tsx +73 -7
- package/src/components/Sidebar/Sidebar.contract.json +1 -0
- package/src/components/Sidebar/Sidebar.module.scss +10 -0
- package/src/components/Sidebar/index.tsx +7 -0
- package/src/components/Text/Text.contract.json +7 -4
- package/src/components/Text/Text.module.scss +18 -0
- package/src/components/Text/index.tsx +4 -2
- package/src/index.ts +1 -0
- package/src/tokens/_mixins.scss +39 -4
- package/src/tokens/_variables.scss +30 -0
package/dist/assets/ui.css
CHANGED
|
@@ -462,6 +462,7 @@
|
|
|
462
462
|
--fui-font-size-2xl: 2.143rem;
|
|
463
463
|
--fui-font-size-3xl: 2.571rem;
|
|
464
464
|
--fui-font-size-4xl: 3.429rem;
|
|
465
|
+
--fui-popup-item-font-size: 0.857rem;
|
|
465
466
|
--fui-font-weight-normal: 400;
|
|
466
467
|
--fui-font-weight-medium: 500;
|
|
467
468
|
--fui-font-weight-semibold: 600;
|
|
@@ -487,6 +488,10 @@
|
|
|
487
488
|
--fui-space-8: 4rem;
|
|
488
489
|
--fui-space-10: 5rem;
|
|
489
490
|
--fui-space-12: 6rem;
|
|
491
|
+
--fui-popup-padding: 0.5rem;
|
|
492
|
+
--fui-popup-row-gap: 1px;
|
|
493
|
+
--fui-popup-item-padding-block: 0.5rem;
|
|
494
|
+
--fui-popup-item-padding-inline: 1rem;
|
|
490
495
|
--fui-radius-sm: 0.25rem;
|
|
491
496
|
--fui-radius-md: 0.429rem;
|
|
492
497
|
--fui-radius-lg: 0.571rem;
|
|
@@ -1091,7 +1096,7 @@
|
|
|
1091
1096
|
}
|
|
1092
1097
|
}
|
|
1093
1098
|
/* @usefragments/ui — component CSS modules (vite bundle) */
|
|
1094
|
-
.
|
|
1099
|
+
._button_1bc7y_1 {
|
|
1095
1100
|
appearance: none;
|
|
1096
1101
|
background: transparent;
|
|
1097
1102
|
border: none;
|
|
@@ -1101,21 +1106,21 @@
|
|
|
1101
1106
|
color: inherit;
|
|
1102
1107
|
cursor: pointer;
|
|
1103
1108
|
}
|
|
1104
|
-
.
|
|
1109
|
+
._button_1bc7y_1:disabled {
|
|
1105
1110
|
cursor: not-allowed;
|
|
1106
1111
|
}
|
|
1107
|
-
.
|
|
1112
|
+
._button_1bc7y_1 {
|
|
1108
1113
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
1109
1114
|
}
|
|
1110
|
-
.
|
|
1115
|
+
._button_1bc7y_1:focus-visible {
|
|
1111
1116
|
outline: none;
|
|
1112
1117
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
1113
1118
|
}
|
|
1114
|
-
.
|
|
1119
|
+
._button_1bc7y_1:disabled, ._button_1bc7y_1[data-disabled] {
|
|
1115
1120
|
opacity: 0.5;
|
|
1116
1121
|
pointer-events: none;
|
|
1117
1122
|
}
|
|
1118
|
-
.
|
|
1123
|
+
._button_1bc7y_1 {
|
|
1119
1124
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
1120
1125
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
1121
1126
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -1144,59 +1149,59 @@
|
|
|
1144
1149
|
white-space: nowrap;
|
|
1145
1150
|
user-select: none;
|
|
1146
1151
|
}
|
|
1147
|
-
.
|
|
1152
|
+
._button_1bc7y_1 a {
|
|
1148
1153
|
color: inherit;
|
|
1149
1154
|
text-decoration: none;
|
|
1150
1155
|
}
|
|
1151
|
-
.
|
|
1156
|
+
._button_1bc7y_1:hover:not(:disabled):not([data-disabled]) {
|
|
1152
1157
|
border-color: var(--_button-border-hover);
|
|
1153
1158
|
background: var(--_button-bg-hover);
|
|
1154
1159
|
box-shadow: var(--_button-shadow-hover);
|
|
1155
1160
|
}
|
|
1156
|
-
.
|
|
1161
|
+
._button_1bc7y_1:active:not(:disabled):not([data-disabled]), ._button_1bc7y_1[data-pressed] {
|
|
1157
1162
|
border-color: var(--_button-border-hover);
|
|
1158
1163
|
background: var(--_button-bg-active);
|
|
1159
1164
|
box-shadow: var(--_button-shadow-active);
|
|
1160
1165
|
}
|
|
1161
|
-
.
|
|
1166
|
+
._button_1bc7y_1:focus-visible {
|
|
1162
1167
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 34%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 14%, transparent), var(--_button-shadow);
|
|
1163
1168
|
}
|
|
1164
|
-
.
|
|
1169
|
+
._button_1bc7y_1:disabled, ._button_1bc7y_1[data-disabled] {
|
|
1165
1170
|
box-shadow: none;
|
|
1166
1171
|
}
|
|
1167
1172
|
|
|
1168
|
-
.
|
|
1173
|
+
._xs_1bc7y_75 {
|
|
1169
1174
|
min-height: var(--fui-button-height-xs, 2.2857142857rem);
|
|
1170
1175
|
padding: 0 var(--fui-space-1, 0.5rem);
|
|
1171
1176
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
1172
1177
|
}
|
|
1173
1178
|
|
|
1174
|
-
.
|
|
1179
|
+
._sm_1bc7y_81 {
|
|
1175
1180
|
min-height: var(--fui-button-height-sm, 2.2857142857rem);
|
|
1176
1181
|
padding: 0 var(--fui-space-2, 1rem);
|
|
1177
1182
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
1178
1183
|
}
|
|
1179
1184
|
|
|
1180
|
-
.
|
|
1185
|
+
._md_1bc7y_87 {
|
|
1181
1186
|
min-height: var(--fui-button-height-md, 2.8571428571rem);
|
|
1182
1187
|
padding: 0 var(--fui-space-3, 1.5rem);
|
|
1183
1188
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
1184
1189
|
}
|
|
1185
1190
|
|
|
1186
|
-
.
|
|
1191
|
+
._lg_1bc7y_93 {
|
|
1187
1192
|
min-height: var(--fui-button-height-lg, 3.1428571429rem);
|
|
1188
1193
|
padding: 0 var(--fui-space-4, 2rem);
|
|
1189
1194
|
font-size: var(--fui-font-size-base, 1rem);
|
|
1190
1195
|
}
|
|
1191
1196
|
|
|
1192
|
-
.
|
|
1197
|
+
._button_1bc7y_1:not(._icon_1bc7y_99) > svg:first-child:not(:last-child) {
|
|
1193
1198
|
margin-left: calc(var(--fui-space-1, 0.5rem) * -0.5);
|
|
1194
1199
|
}
|
|
1195
|
-
.
|
|
1200
|
+
._button_1bc7y_1:not(._icon_1bc7y_99) > svg:last-child:not(:first-child) {
|
|
1196
1201
|
margin-right: calc(var(--fui-space-1, 0.5rem) * -0.5);
|
|
1197
1202
|
}
|
|
1198
1203
|
|
|
1199
|
-
.
|
|
1204
|
+
._primary_1bc7y_106 {
|
|
1200
1205
|
--_button-bg: var(--fui-button-primary-bg);
|
|
1201
1206
|
--_button-bg-hover: var(--fui-button-primary-bg-hover);
|
|
1202
1207
|
--_button-bg-active: var(--fui-button-primary-bg-active);
|
|
@@ -1211,7 +1216,7 @@
|
|
|
1211
1216
|
--_button-shadow-active: var(--fui-button-primary-shadow-active);
|
|
1212
1217
|
}
|
|
1213
1218
|
|
|
1214
|
-
.
|
|
1219
|
+
._secondary_1bc7y_121 {
|
|
1215
1220
|
--_button-bg: var(--fui-button-neutral-bg);
|
|
1216
1221
|
--_button-bg-hover: var(--fui-button-neutral-bg-hover);
|
|
1217
1222
|
--_button-bg-active: var(--fui-button-neutral-bg-active);
|
|
@@ -1223,7 +1228,7 @@
|
|
|
1223
1228
|
--_button-shadow-active: var(--fui-button-neutral-shadow-active);
|
|
1224
1229
|
}
|
|
1225
1230
|
|
|
1226
|
-
.
|
|
1231
|
+
._ghost_1bc7y_133 {
|
|
1227
1232
|
--_button-bg: transparent;
|
|
1228
1233
|
--_button-bg-hover: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
1229
1234
|
--_button-bg-active: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
@@ -1235,7 +1240,7 @@
|
|
|
1235
1240
|
--_button-shadow-active: none;
|
|
1236
1241
|
}
|
|
1237
1242
|
|
|
1238
|
-
.
|
|
1243
|
+
._link_1bc7y_145 {
|
|
1239
1244
|
--_button-bg: transparent;
|
|
1240
1245
|
--_button-bg-hover: color-mix(
|
|
1241
1246
|
in srgb,
|
|
@@ -1255,7 +1260,28 @@
|
|
|
1255
1260
|
--_button-shadow-active: none;
|
|
1256
1261
|
}
|
|
1257
1262
|
|
|
1258
|
-
.
|
|
1263
|
+
._quiet_1bc7y_165 {
|
|
1264
|
+
--_button-bg: transparent;
|
|
1265
|
+
--_button-bg-hover: transparent;
|
|
1266
|
+
--_button-bg-active: transparent;
|
|
1267
|
+
--_button-border: transparent;
|
|
1268
|
+
--_button-border-hover: transparent;
|
|
1269
|
+
--_button-color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
1270
|
+
--_button-shadow: none;
|
|
1271
|
+
--_button-shadow-hover: none;
|
|
1272
|
+
--_button-shadow-active: none;
|
|
1273
|
+
min-height: 0;
|
|
1274
|
+
padding: 0;
|
|
1275
|
+
font-weight: var(--fui-font-weight-normal, 400);
|
|
1276
|
+
}
|
|
1277
|
+
._quiet_1bc7y_165:hover:not(:disabled):not([data-disabled]) {
|
|
1278
|
+
--_button-color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
1279
|
+
}
|
|
1280
|
+
._quiet_1bc7y_165:active:not(:disabled):not([data-disabled]), ._quiet_1bc7y_165[data-pressed] {
|
|
1281
|
+
--_button-color: var(--fui-text-primary, #212121);
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
._danger_1bc7y_186 {
|
|
1259
1285
|
--_button-bg: var(--fui-color-danger, #d97066);
|
|
1260
1286
|
--_button-bg-hover: color-mix(
|
|
1261
1287
|
in srgb,
|
|
@@ -1283,7 +1309,7 @@
|
|
|
1283
1309
|
--_button-shadow-active: var(--fui-button-primary-shadow-active);
|
|
1284
1310
|
}
|
|
1285
1311
|
|
|
1286
|
-
.
|
|
1312
|
+
._outlined_1bc7y_214 {
|
|
1287
1313
|
--_button-bg: color-mix(in srgb, var(--fui-bg-elevated, #ffffff) 42%, transparent);
|
|
1288
1314
|
--_button-bg-hover: var(--fui-button-neutral-bg-hover);
|
|
1289
1315
|
--_button-bg-active: var(--fui-button-neutral-bg-active);
|
|
@@ -1295,51 +1321,51 @@
|
|
|
1295
1321
|
--_button-shadow-active: var(--fui-button-neutral-shadow-active);
|
|
1296
1322
|
}
|
|
1297
1323
|
|
|
1298
|
-
.
|
|
1324
|
+
._icon_1bc7y_99 {
|
|
1299
1325
|
aspect-ratio: 1;
|
|
1300
1326
|
padding: 0;
|
|
1301
1327
|
}
|
|
1302
|
-
.
|
|
1328
|
+
._icon_1bc7y_99._xs_1bc7y_75 {
|
|
1303
1329
|
width: var(--fui-button-height-xs, 2.2857142857rem);
|
|
1304
1330
|
}
|
|
1305
|
-
.
|
|
1331
|
+
._icon_1bc7y_99._sm_1bc7y_81 {
|
|
1306
1332
|
width: var(--fui-button-height-sm, 2.2857142857rem);
|
|
1307
1333
|
}
|
|
1308
|
-
.
|
|
1334
|
+
._icon_1bc7y_99._md_1bc7y_87 {
|
|
1309
1335
|
width: var(--fui-button-height-md, 2.8571428571rem);
|
|
1310
1336
|
}
|
|
1311
|
-
.
|
|
1337
|
+
._icon_1bc7y_99._lg_1bc7y_93 {
|
|
1312
1338
|
width: var(--fui-button-height-lg, 3.1428571429rem);
|
|
1313
1339
|
}
|
|
1314
1340
|
|
|
1315
|
-
.
|
|
1341
|
+
._fullWidth_1bc7y_243 {
|
|
1316
1342
|
width: 100%;
|
|
1317
1343
|
}
|
|
1318
1344
|
|
|
1319
1345
|
@media (prefers-reduced-motion: reduce) {
|
|
1320
|
-
.
|
|
1346
|
+
._button_1bc7y_1 {
|
|
1321
1347
|
transition: none;
|
|
1322
1348
|
}
|
|
1323
1349
|
}
|
|
1324
1350
|
@media (prefers-contrast: more) {
|
|
1325
|
-
.
|
|
1351
|
+
._secondary_1bc7y_121 {
|
|
1326
1352
|
border-width: 2px;
|
|
1327
1353
|
border-color: var(--fui-text-primary, #212121);
|
|
1328
1354
|
}
|
|
1329
|
-
.
|
|
1355
|
+
._outlined_1bc7y_214 {
|
|
1330
1356
|
border-width: 2px;
|
|
1331
1357
|
border-color: var(--fui-text-primary, #212121);
|
|
1332
1358
|
}
|
|
1333
|
-
.
|
|
1359
|
+
._ghost_1bc7y_133 {
|
|
1334
1360
|
border-width: 2px;
|
|
1335
1361
|
}
|
|
1336
|
-
.
|
|
1362
|
+
._ghost_1bc7y_133:hover:not(:disabled) {
|
|
1337
1363
|
border-color: var(--fui-text-primary, #212121);
|
|
1338
1364
|
}
|
|
1339
|
-
.
|
|
1365
|
+
._link_1bc7y_145 {
|
|
1340
1366
|
border-width: 2px;
|
|
1341
1367
|
}
|
|
1342
|
-
.
|
|
1368
|
+
._link_1bc7y_145:hover:not(:disabled) {
|
|
1343
1369
|
border-color: var(--fui-color-accent, #006b57);
|
|
1344
1370
|
}
|
|
1345
1371
|
}._wrapper_1vwgf_1 {
|
|
@@ -2138,7 +2164,7 @@
|
|
|
2138
2164
|
._action_r2w0u_87:focus-visible {
|
|
2139
2165
|
outline: none;
|
|
2140
2166
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
2141
|
-
}.
|
|
2167
|
+
}._badge_1luxf_1 {
|
|
2142
2168
|
display: inline-flex;
|
|
2143
2169
|
align-items: center;
|
|
2144
2170
|
width: max-content;
|
|
@@ -2151,53 +2177,53 @@
|
|
|
2151
2177
|
white-space: nowrap;
|
|
2152
2178
|
}
|
|
2153
2179
|
|
|
2154
|
-
.
|
|
2180
|
+
._sm_1luxf_14 {
|
|
2155
2181
|
padding: var(--fui-space-0-5, 0.15rem) var(--fui-space-1, 0.5rem);
|
|
2156
2182
|
font-size: var(--fui-font-size-2xs, 0.714rem);
|
|
2157
2183
|
}
|
|
2158
2184
|
|
|
2159
|
-
.
|
|
2185
|
+
._md_1luxf_19 {
|
|
2160
2186
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-1, 0.5rem);
|
|
2161
2187
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
2162
2188
|
}
|
|
2163
2189
|
|
|
2164
|
-
.
|
|
2190
|
+
._lg_1luxf_24 {
|
|
2165
2191
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
2166
2192
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
2167
2193
|
}
|
|
2168
2194
|
|
|
2169
|
-
.
|
|
2195
|
+
._default_1luxf_29 {
|
|
2170
2196
|
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
2171
2197
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
2172
2198
|
}
|
|
2173
2199
|
|
|
2174
|
-
.
|
|
2200
|
+
._success_1luxf_34 {
|
|
2175
2201
|
background: var(--fui-color-success-bg, rgba(127, 201, 179, 0.1));
|
|
2176
2202
|
color: var(--fui-color-success-text, rgb(29.9064810064, 108.5606699289, 89.7163569497));
|
|
2177
2203
|
}
|
|
2178
2204
|
|
|
2179
|
-
.
|
|
2205
|
+
._warning_1luxf_39 {
|
|
2180
2206
|
background: var(--fui-color-warning-bg, rgba(224, 170, 92, 0.1));
|
|
2181
2207
|
color: var(--fui-color-warning-text, hsl(41.194706405, 139.9133245857%, 21.9712967806%));
|
|
2182
2208
|
}
|
|
2183
2209
|
|
|
2184
|
-
.
|
|
2210
|
+
._error_1luxf_44 {
|
|
2185
2211
|
background: var(--fui-color-danger-bg, rgba(217, 112, 102, 0.1));
|
|
2186
2212
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
2187
2213
|
}
|
|
2188
2214
|
|
|
2189
|
-
.
|
|
2215
|
+
._info_1luxf_49 {
|
|
2190
2216
|
background: var(--fui-color-info-bg, rgba(127, 166, 196, 0.1));
|
|
2191
2217
|
color: var(--fui-color-info-text, rgb(63.1782487843, 100.0730830678, 127.5349009142));
|
|
2192
2218
|
}
|
|
2193
2219
|
|
|
2194
|
-
.
|
|
2220
|
+
._outline_1luxf_54 {
|
|
2195
2221
|
background-color: transparent;
|
|
2196
2222
|
color: var(--fui-text-primary, #212121);
|
|
2197
2223
|
border: 1px solid var(--fui-border-strong, rgba(0, 0, 0, 0.1));
|
|
2198
2224
|
}
|
|
2199
2225
|
|
|
2200
|
-
.
|
|
2226
|
+
._label_1luxf_60 {
|
|
2201
2227
|
height: var(--fui-target-size-min, 2.286rem);
|
|
2202
2228
|
padding: 0 calc(var(--fui-space-1, 0.5rem) - var(--fui-space-px, 1px));
|
|
2203
2229
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
@@ -2208,7 +2234,7 @@
|
|
|
2208
2234
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
2209
2235
|
}
|
|
2210
2236
|
|
|
2211
|
-
.
|
|
2237
|
+
._dim_1luxf_71 {
|
|
2212
2238
|
height: var(--fui-button-height-sm, 2.2857142857rem);
|
|
2213
2239
|
padding: 0 calc(var(--fui-space-1, 0.5rem) + var(--fui-space-0-5, 0.15rem));
|
|
2214
2240
|
border: 1px solid transparent;
|
|
@@ -2219,34 +2245,48 @@
|
|
|
2219
2245
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
2220
2246
|
transition: color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
2221
2247
|
}
|
|
2222
|
-
.
|
|
2248
|
+
._dim_1luxf_71._active_1luxf_82 {
|
|
2223
2249
|
border-color: var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
2224
2250
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
2225
2251
|
color: var(--fui-text-primary, #212121);
|
|
2226
2252
|
}
|
|
2227
2253
|
|
|
2228
|
-
.
|
|
2254
|
+
._dot_1luxf_88 {
|
|
2229
2255
|
width: 6px;
|
|
2230
2256
|
height: 6px;
|
|
2231
2257
|
border-radius: 50%;
|
|
2232
2258
|
background-color: var(--fui-badge-dot-color, currentColor);
|
|
2233
2259
|
flex-shrink: 0;
|
|
2234
2260
|
}
|
|
2235
|
-
.
|
|
2261
|
+
._sm_1luxf_14 ._dot_1luxf_88 {
|
|
2236
2262
|
width: 5px;
|
|
2237
2263
|
height: 5px;
|
|
2238
2264
|
}
|
|
2239
2265
|
|
|
2240
|
-
.
|
|
2266
|
+
._dotPulse_1luxf_100 {
|
|
2267
|
+
animation: _fui-badge-dot-pulse_1luxf_1 1.6s ease-in-out infinite;
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
@keyframes _fui-badge-dot-pulse_1luxf_1 {
|
|
2271
|
+
50% {
|
|
2272
|
+
opacity: 0.35;
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
@media (prefers-reduced-motion: reduce) {
|
|
2276
|
+
._dotPulse_1luxf_100 {
|
|
2277
|
+
animation: none;
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
2280
|
+
._icon_1luxf_114 {
|
|
2241
2281
|
display: flex;
|
|
2242
2282
|
align-items: center;
|
|
2243
2283
|
}
|
|
2244
2284
|
|
|
2245
|
-
.
|
|
2285
|
+
._badge_1luxf_1:has(._remove_1luxf_119) {
|
|
2246
2286
|
padding: var(--fui-space-0-5, 0.15rem) var(--fui-space-1, 0.5rem) var(--fui-space-0-5, 0.15rem) var(--fui-space-2, 1rem);
|
|
2247
2287
|
}
|
|
2248
2288
|
|
|
2249
|
-
.
|
|
2289
|
+
._remove_1luxf_119 {
|
|
2250
2290
|
appearance: none;
|
|
2251
2291
|
background: transparent;
|
|
2252
2292
|
border: none;
|
|
@@ -2256,21 +2296,21 @@
|
|
|
2256
2296
|
color: inherit;
|
|
2257
2297
|
cursor: pointer;
|
|
2258
2298
|
}
|
|
2259
|
-
.
|
|
2299
|
+
._remove_1luxf_119:disabled {
|
|
2260
2300
|
cursor: not-allowed;
|
|
2261
2301
|
}
|
|
2262
|
-
.
|
|
2302
|
+
._remove_1luxf_119 {
|
|
2263
2303
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
2264
2304
|
}
|
|
2265
|
-
.
|
|
2305
|
+
._remove_1luxf_119:focus-visible {
|
|
2266
2306
|
outline: none;
|
|
2267
2307
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
2268
2308
|
}
|
|
2269
|
-
.
|
|
2309
|
+
._remove_1luxf_119:disabled, ._remove_1luxf_119[data-disabled] {
|
|
2270
2310
|
opacity: 0.5;
|
|
2271
2311
|
pointer-events: none;
|
|
2272
2312
|
}
|
|
2273
|
-
.
|
|
2313
|
+
._remove_1luxf_119 {
|
|
2274
2314
|
min-width: var(--fui-target-size-min, 2.286rem);
|
|
2275
2315
|
min-height: var(--fui-target-size-min, 2.286rem);
|
|
2276
2316
|
display: inline-flex;
|
|
@@ -2284,7 +2324,7 @@
|
|
|
2284
2324
|
line-height: 1;
|
|
2285
2325
|
border-radius: var(--fui-radius-full, 9999px);
|
|
2286
2326
|
}
|
|
2287
|
-
.
|
|
2327
|
+
._remove_1luxf_119:hover {
|
|
2288
2328
|
opacity: 1;
|
|
2289
2329
|
}._iconButton_19n51_1 {
|
|
2290
2330
|
appearance: none;
|
|
@@ -3088,12 +3128,12 @@
|
|
|
3088
3128
|
|
|
3089
3129
|
._trigger_whfgf_63 {
|
|
3090
3130
|
display: inline-flex;
|
|
3091
|
-
}.
|
|
3131
|
+
}._wrapper_9zaqb_1 {
|
|
3092
3132
|
display: flex;
|
|
3093
3133
|
flex-direction: column;
|
|
3094
3134
|
}
|
|
3095
3135
|
|
|
3096
|
-
.
|
|
3136
|
+
._label_9zaqb_6 {
|
|
3097
3137
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
3098
3138
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
3099
3139
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
@@ -3101,29 +3141,29 @@
|
|
|
3101
3141
|
margin-bottom: var(--fui-space-1, 0.5rem);
|
|
3102
3142
|
}
|
|
3103
3143
|
|
|
3104
|
-
.
|
|
3144
|
+
._required_9zaqb_14 {
|
|
3105
3145
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
3106
3146
|
margin-left: 2px;
|
|
3107
3147
|
}
|
|
3108
3148
|
|
|
3109
|
-
.
|
|
3149
|
+
._helper_9zaqb_19 {
|
|
3110
3150
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
3111
3151
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3112
3152
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
3113
3153
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
3114
3154
|
}
|
|
3115
3155
|
|
|
3116
|
-
.
|
|
3156
|
+
._helperError_9zaqb_26 {
|
|
3117
3157
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
3118
3158
|
}
|
|
3119
3159
|
|
|
3120
|
-
.
|
|
3160
|
+
._errorMessage_9zaqb_30 {
|
|
3121
3161
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3122
3162
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
3123
3163
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
3124
3164
|
}
|
|
3125
3165
|
|
|
3126
|
-
.
|
|
3166
|
+
._trigger_9zaqb_36 {
|
|
3127
3167
|
appearance: none;
|
|
3128
3168
|
background: transparent;
|
|
3129
3169
|
border: none;
|
|
@@ -3133,21 +3173,21 @@
|
|
|
3133
3173
|
color: inherit;
|
|
3134
3174
|
cursor: pointer;
|
|
3135
3175
|
}
|
|
3136
|
-
.
|
|
3176
|
+
._trigger_9zaqb_36:disabled {
|
|
3137
3177
|
cursor: not-allowed;
|
|
3138
3178
|
}
|
|
3139
|
-
.
|
|
3179
|
+
._trigger_9zaqb_36 {
|
|
3140
3180
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3141
3181
|
}
|
|
3142
|
-
.
|
|
3182
|
+
._trigger_9zaqb_36:focus-visible {
|
|
3143
3183
|
outline: none;
|
|
3144
3184
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
3145
3185
|
}
|
|
3146
|
-
.
|
|
3186
|
+
._trigger_9zaqb_36:disabled, ._trigger_9zaqb_36[data-disabled] {
|
|
3147
3187
|
opacity: 0.5;
|
|
3148
3188
|
pointer-events: none;
|
|
3149
3189
|
}
|
|
3150
|
-
.
|
|
3190
|
+
._trigger_9zaqb_36 {
|
|
3151
3191
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
3152
3192
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
3153
3193
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -3159,17 +3199,17 @@
|
|
|
3159
3199
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
3160
3200
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3161
3201
|
}
|
|
3162
|
-
.
|
|
3202
|
+
._trigger_9zaqb_36:hover:not(:disabled):not([data-disabled]):not(:focus-visible) {
|
|
3163
3203
|
border-color: var(--fui-field-border-hover, var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852)));
|
|
3164
3204
|
}
|
|
3165
|
-
.
|
|
3205
|
+
._trigger_9zaqb_36:focus:not(:disabled):not([data-disabled]) {
|
|
3166
3206
|
border-color: var(--fui-field-border-focus, var(--fui-color-accent, #006b57));
|
|
3167
3207
|
}
|
|
3168
|
-
.
|
|
3208
|
+
._trigger_9zaqb_36:disabled, ._trigger_9zaqb_36[data-disabled] {
|
|
3169
3209
|
background-color: var(--fui-field-bg-disabled, var(--fui-bg-tertiary, #f4f4f4));
|
|
3170
3210
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
3171
3211
|
}
|
|
3172
|
-
.
|
|
3212
|
+
._trigger_9zaqb_36 {
|
|
3173
3213
|
min-height: var(--fui-target-size-min, 2.286rem);
|
|
3174
3214
|
height: var(--fui-input-height, 2.8571428571rem);
|
|
3175
3215
|
padding: 0 var(--fui-space-3, 1.5rem);
|
|
@@ -3182,25 +3222,69 @@
|
|
|
3182
3222
|
min-width: 10rem;
|
|
3183
3223
|
text-align: left;
|
|
3184
3224
|
}
|
|
3185
|
-
.
|
|
3225
|
+
._trigger_9zaqb_36[data-popup-open] {
|
|
3186
3226
|
border-color: var(--fui-field-border-focus, #006b57);
|
|
3187
3227
|
}
|
|
3188
3228
|
|
|
3189
|
-
.
|
|
3229
|
+
._triggerSm_9zaqb_99 {
|
|
3190
3230
|
min-height: var(--fui-target-size-min, 2.286rem);
|
|
3191
3231
|
height: var(--fui-input-height-sm, 2.2857142857rem);
|
|
3192
3232
|
padding: 0 var(--fui-space-2, 1rem);
|
|
3193
3233
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3194
3234
|
}
|
|
3195
3235
|
|
|
3196
|
-
.
|
|
3236
|
+
._triggerLg_9zaqb_106 {
|
|
3197
3237
|
min-height: var(--fui-target-size-min, 2.286rem);
|
|
3198
3238
|
height: var(--fui-input-height-lg, 3.1428571429rem);
|
|
3199
3239
|
padding: 0 var(--fui-space-4, 2rem);
|
|
3200
3240
|
font-size: var(--fui-font-size-base, 1rem);
|
|
3201
3241
|
}
|
|
3202
3242
|
|
|
3203
|
-
.
|
|
3243
|
+
._triggerGhost_9zaqb_113 {
|
|
3244
|
+
width: auto;
|
|
3245
|
+
min-width: 0;
|
|
3246
|
+
height: auto;
|
|
3247
|
+
gap: var(--fui-space-1, 0.5rem);
|
|
3248
|
+
padding: 0 var(--fui-space-2, 1rem);
|
|
3249
|
+
border: none;
|
|
3250
|
+
border-radius: var(--fui-radius-md, 0.429rem);
|
|
3251
|
+
background-color: transparent;
|
|
3252
|
+
box-shadow: none;
|
|
3253
|
+
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
3254
|
+
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3255
|
+
font-weight: var(--fui-font-weight-medium, 500);
|
|
3256
|
+
}
|
|
3257
|
+
._triggerGhost_9zaqb_113:hover:not(:disabled):not([data-disabled]) {
|
|
3258
|
+
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
3259
|
+
color: var(--fui-text-primary, #212121);
|
|
3260
|
+
}
|
|
3261
|
+
._triggerGhost_9zaqb_113:active:not(:disabled):not([data-disabled]) {
|
|
3262
|
+
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
3263
|
+
}
|
|
3264
|
+
._triggerGhost_9zaqb_113[data-popup-open] {
|
|
3265
|
+
border-color: transparent;
|
|
3266
|
+
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
3267
|
+
color: var(--fui-text-primary, #212121);
|
|
3268
|
+
}
|
|
3269
|
+
._triggerGhost_9zaqb_113:disabled, ._triggerGhost_9zaqb_113[data-disabled] {
|
|
3270
|
+
background-color: transparent;
|
|
3271
|
+
opacity: 0.5;
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
._wrapperGhost_9zaqb_144 {
|
|
3275
|
+
display: inline-flex;
|
|
3276
|
+
min-width: 0;
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
._triggerIcon_9zaqb_149 {
|
|
3280
|
+
display: flex;
|
|
3281
|
+
flex-shrink: 0;
|
|
3282
|
+
align-items: center;
|
|
3283
|
+
justify-content: center;
|
|
3284
|
+
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
._value_9zaqb_157 {
|
|
3204
3288
|
flex: 1;
|
|
3205
3289
|
min-width: 0;
|
|
3206
3290
|
overflow: hidden;
|
|
@@ -3209,67 +3293,79 @@
|
|
|
3209
3293
|
display: flex;
|
|
3210
3294
|
align-items: center;
|
|
3211
3295
|
}
|
|
3212
|
-
.
|
|
3296
|
+
._value_9zaqb_157[data-placeholder] {
|
|
3213
3297
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
3214
3298
|
}
|
|
3215
3299
|
|
|
3216
|
-
.
|
|
3300
|
+
._placeholder_9zaqb_170 {
|
|
3217
3301
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
3218
3302
|
}
|
|
3219
3303
|
|
|
3220
|
-
.
|
|
3304
|
+
._hint_9zaqb_174 {
|
|
3305
|
+
margin-inline-start: var(--fui-space-1, 0.5rem);
|
|
3306
|
+
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
3307
|
+
font-weight: var(--fui-font-weight-normal, 400);
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
._icon_9zaqb_180 {
|
|
3221
3311
|
display: flex;
|
|
3222
3312
|
align-items: center;
|
|
3223
3313
|
justify-content: center;
|
|
3224
3314
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
3225
3315
|
transition: transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3226
3316
|
}
|
|
3227
|
-
[data-popup-open] > .
|
|
3317
|
+
[data-popup-open] > ._icon_9zaqb_180 {
|
|
3228
3318
|
transform: rotate(180deg);
|
|
3229
3319
|
}
|
|
3230
|
-
.
|
|
3320
|
+
._icon_9zaqb_180 svg {
|
|
3231
3321
|
width: var(--fui-icon-sm, 1rem);
|
|
3232
3322
|
height: var(--fui-icon-sm, 1rem);
|
|
3233
3323
|
}
|
|
3234
3324
|
|
|
3235
|
-
.
|
|
3325
|
+
._positioner_9zaqb_195 {
|
|
3236
3326
|
z-index: 52;
|
|
3237
3327
|
outline: none;
|
|
3238
3328
|
}
|
|
3239
3329
|
|
|
3240
|
-
.
|
|
3330
|
+
._popup_9zaqb_200 {
|
|
3241
3331
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
3242
3332
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
3243
3333
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
3244
3334
|
display: flex;
|
|
3245
3335
|
flex-direction: column;
|
|
3246
|
-
gap: 1px;
|
|
3247
|
-
padding: var(--fui-
|
|
3336
|
+
gap: var(--fui-popup-row-gap, 1px);
|
|
3337
|
+
padding: var(--fui-popup-padding, 0.5rem);
|
|
3248
3338
|
box-shadow: var(--fui-shadow-md, 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 3px -2px rgba(0, 0, 0, 0.03));
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
var(--fui-font-size-sm, 1rem) *
|
|
3339
|
+
--_popup-row-h: calc(
|
|
3340
|
+
var(--fui-popup-item-font-size, 0.857rem) *
|
|
3252
3341
|
var(--fui-line-height-normal, 1.5) +
|
|
3253
|
-
var(--fui-
|
|
3342
|
+
var(--fui-popup-item-padding-block, 0.5rem) * 2 +
|
|
3343
|
+
var(--fui-popup-row-gap, 1px)
|
|
3254
3344
|
);
|
|
3345
|
+
--_popup-scroll-max-h: calc(
|
|
3346
|
+
var(--_popup-row-h) *
|
|
3347
|
+
var(--fui-select-max-items, 4.5) - var(--fui-popup-row-gap, 1px) +
|
|
3348
|
+
var(--fui-popup-padding, 0.5rem) * 2 + 2px
|
|
3349
|
+
);
|
|
3350
|
+
border-color: var(--fui-form-group-border, rgba(0, 0, 0, 0.05));
|
|
3255
3351
|
min-width: var(--anchor-width);
|
|
3256
|
-
max-height:
|
|
3352
|
+
max-height: var(--_popup-scroll-max-h) !important;
|
|
3257
3353
|
overflow-y: auto !important;
|
|
3258
3354
|
opacity: 0;
|
|
3259
3355
|
transform: scale(0.95);
|
|
3260
3356
|
transform-origin: var(--transform-origin);
|
|
3261
3357
|
transition: opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3262
3358
|
}
|
|
3263
|
-
.
|
|
3359
|
+
._popup_9zaqb_200[data-open] {
|
|
3264
3360
|
opacity: 1;
|
|
3265
3361
|
transform: scale(1);
|
|
3266
3362
|
}
|
|
3267
|
-
.
|
|
3363
|
+
._popup_9zaqb_200[data-starting-style], ._popup_9zaqb_200[data-ending-style] {
|
|
3268
3364
|
opacity: 0;
|
|
3269
3365
|
transform: scale(0.95);
|
|
3270
3366
|
}
|
|
3271
3367
|
|
|
3272
|
-
.
|
|
3368
|
+
._item_9zaqb_238 {
|
|
3273
3369
|
appearance: none;
|
|
3274
3370
|
background: transparent;
|
|
3275
3371
|
border: none;
|
|
@@ -3279,45 +3375,46 @@
|
|
|
3279
3375
|
color: inherit;
|
|
3280
3376
|
cursor: pointer;
|
|
3281
3377
|
}
|
|
3282
|
-
.
|
|
3378
|
+
._item_9zaqb_238:disabled {
|
|
3283
3379
|
cursor: not-allowed;
|
|
3284
3380
|
}
|
|
3285
|
-
.
|
|
3381
|
+
._item_9zaqb_238 {
|
|
3286
3382
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
3287
3383
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
3288
3384
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
3289
3385
|
color: var(--fui-text-primary, #212121);
|
|
3290
3386
|
-webkit-font-smoothing: antialiased;
|
|
3291
3387
|
-moz-osx-font-smoothing: grayscale;
|
|
3388
|
+
font-size: var(--fui-popup-item-font-size, 0.857rem);
|
|
3292
3389
|
display: flex;
|
|
3293
3390
|
align-items: center;
|
|
3294
3391
|
gap: var(--fui-space-1, 0.5rem);
|
|
3295
3392
|
width: 100%;
|
|
3296
|
-
padding: var(--fui-
|
|
3393
|
+
padding: var(--fui-popup-item-padding-block, 0.5rem) var(--fui-popup-item-padding-inline, 1rem);
|
|
3297
3394
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
3298
3395
|
cursor: pointer;
|
|
3299
3396
|
outline: none;
|
|
3300
3397
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3301
3398
|
}
|
|
3302
|
-
.
|
|
3399
|
+
._item_9zaqb_238[data-highlighted] {
|
|
3303
3400
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
3304
3401
|
color: var(--fui-text-primary, #212121);
|
|
3305
3402
|
}
|
|
3306
|
-
.
|
|
3403
|
+
._item_9zaqb_238[data-selected] {
|
|
3307
3404
|
background-color: var(--fui-field-selection-bg, var(--fui-bg-hover, rgba(0, 0, 0, 0.04)));
|
|
3308
3405
|
color: var(--fui-field-selection-color, var(--fui-text-primary, #212121));
|
|
3309
3406
|
box-shadow: inset 0 0 0 1px var(--fui-field-selection-border, var(--fui-color-accent, #006b57));
|
|
3310
3407
|
}
|
|
3311
|
-
.
|
|
3408
|
+
._item_9zaqb_238[data-selected][data-highlighted] {
|
|
3312
3409
|
background-color: var(--fui-field-selection-bg-hover, rgba(0, 0, 0, 0.04));
|
|
3313
3410
|
}
|
|
3314
|
-
.
|
|
3411
|
+
._item_9zaqb_238[data-disabled] {
|
|
3315
3412
|
opacity: 0.5;
|
|
3316
3413
|
pointer-events: none;
|
|
3317
3414
|
cursor: default;
|
|
3318
3415
|
}
|
|
3319
3416
|
|
|
3320
|
-
.
|
|
3417
|
+
._itemIndicator_9zaqb_287 {
|
|
3321
3418
|
display: flex;
|
|
3322
3419
|
align-items: center;
|
|
3323
3420
|
justify-content: center;
|
|
@@ -3326,18 +3423,18 @@
|
|
|
3326
3423
|
margin-left: auto;
|
|
3327
3424
|
color: var(--fui-color-accent, #006b57);
|
|
3328
3425
|
}
|
|
3329
|
-
.
|
|
3426
|
+
._itemIndicator_9zaqb_287 svg {
|
|
3330
3427
|
width: var(--fui-icon-xs, 0.857rem);
|
|
3331
3428
|
height: var(--fui-icon-xs, 0.857rem);
|
|
3332
3429
|
}
|
|
3333
3430
|
|
|
3334
|
-
.
|
|
3431
|
+
._group_9zaqb_301:not(:first-child) {
|
|
3335
3432
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
3336
3433
|
padding-top: var(--fui-space-1, 0.5rem);
|
|
3337
3434
|
border-top: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
3338
3435
|
}
|
|
3339
3436
|
|
|
3340
|
-
.
|
|
3437
|
+
._groupLabel_9zaqb_307 {
|
|
3341
3438
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
3342
3439
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3343
3440
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
@@ -3347,53 +3444,53 @@
|
|
|
3347
3444
|
}
|
|
3348
3445
|
|
|
3349
3446
|
@media (prefers-contrast: more) {
|
|
3350
|
-
.
|
|
3447
|
+
._trigger_9zaqb_36 {
|
|
3351
3448
|
border-width: 2px;
|
|
3352
3449
|
border-color: var(--fui-text-primary, #212121);
|
|
3353
3450
|
}
|
|
3354
|
-
.
|
|
3451
|
+
._trigger_9zaqb_36[data-popup-open] {
|
|
3355
3452
|
border-color: var(--fui-color-accent, #006b57);
|
|
3356
3453
|
}
|
|
3357
3454
|
}
|
|
3358
3455
|
@media (prefers-reduced-motion: reduce) {
|
|
3359
|
-
.
|
|
3456
|
+
._trigger_9zaqb_36 {
|
|
3360
3457
|
transition: none;
|
|
3361
3458
|
}
|
|
3362
|
-
.
|
|
3459
|
+
._popup_9zaqb_200 {
|
|
3363
3460
|
transition: none;
|
|
3364
3461
|
}
|
|
3365
|
-
.
|
|
3462
|
+
._icon_9zaqb_180 svg {
|
|
3366
3463
|
transition: none;
|
|
3367
3464
|
}
|
|
3368
3465
|
}
|
|
3369
|
-
.
|
|
3466
|
+
._arrow_9zaqb_336 {
|
|
3370
3467
|
width: 10px;
|
|
3371
3468
|
height: 10px;
|
|
3372
3469
|
transform: rotate(45deg);
|
|
3373
3470
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
3374
3471
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
3375
3472
|
}
|
|
3376
|
-
.
|
|
3473
|
+
._arrow_9zaqb_336[data-side=top] {
|
|
3377
3474
|
border-top: none;
|
|
3378
3475
|
border-left: none;
|
|
3379
3476
|
}
|
|
3380
|
-
.
|
|
3477
|
+
._arrow_9zaqb_336[data-side=bottom] {
|
|
3381
3478
|
border-bottom: none;
|
|
3382
3479
|
border-right: none;
|
|
3383
|
-
}.
|
|
3480
|
+
}._positioner_v24st_1 {
|
|
3384
3481
|
z-index: 52;
|
|
3385
3482
|
outline: none;
|
|
3386
3483
|
pointer-events: auto;
|
|
3387
3484
|
}
|
|
3388
3485
|
|
|
3389
|
-
.
|
|
3486
|
+
._popup_v24st_7 {
|
|
3390
3487
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
3391
3488
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
3392
3489
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
3393
3490
|
display: flex;
|
|
3394
3491
|
flex-direction: column;
|
|
3395
|
-
gap: 1px;
|
|
3396
|
-
padding: var(--fui-
|
|
3492
|
+
gap: var(--fui-popup-row-gap, 1px);
|
|
3493
|
+
padding: var(--fui-popup-padding, 0.5rem);
|
|
3397
3494
|
box-shadow: var(--fui-shadow-md, 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 3px -2px rgba(0, 0, 0, 0.03));
|
|
3398
3495
|
list-style: none;
|
|
3399
3496
|
margin: 0;
|
|
@@ -3402,21 +3499,21 @@
|
|
|
3402
3499
|
transform: none;
|
|
3403
3500
|
transform-origin: var(--transform-origin);
|
|
3404
3501
|
}
|
|
3405
|
-
.
|
|
3502
|
+
._popup_v24st_7[data-open] {
|
|
3406
3503
|
opacity: 1;
|
|
3407
3504
|
transform: none;
|
|
3408
3505
|
}
|
|
3409
|
-
.
|
|
3506
|
+
._popup_v24st_7[data-starting-style], ._popup_v24st_7[data-ending-style] {
|
|
3410
3507
|
opacity: 1;
|
|
3411
3508
|
transform: none;
|
|
3412
3509
|
}
|
|
3413
3510
|
|
|
3414
|
-
.
|
|
3511
|
+
._viewport_v24st_32 {
|
|
3415
3512
|
overflow: hidden;
|
|
3416
3513
|
transition: height var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3417
3514
|
}
|
|
3418
3515
|
|
|
3419
|
-
.
|
|
3516
|
+
._item_v24st_37 {
|
|
3420
3517
|
appearance: none;
|
|
3421
3518
|
background: transparent;
|
|
3422
3519
|
border: none;
|
|
@@ -3426,45 +3523,46 @@
|
|
|
3426
3523
|
color: inherit;
|
|
3427
3524
|
cursor: pointer;
|
|
3428
3525
|
}
|
|
3429
|
-
.
|
|
3526
|
+
._item_v24st_37:disabled {
|
|
3430
3527
|
cursor: not-allowed;
|
|
3431
3528
|
}
|
|
3432
|
-
.
|
|
3529
|
+
._item_v24st_37 {
|
|
3433
3530
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
3434
3531
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
3435
3532
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
3436
3533
|
color: var(--fui-text-primary, #212121);
|
|
3437
3534
|
-webkit-font-smoothing: antialiased;
|
|
3438
3535
|
-moz-osx-font-smoothing: grayscale;
|
|
3536
|
+
font-size: var(--fui-popup-item-font-size, 0.857rem);
|
|
3439
3537
|
display: flex;
|
|
3440
3538
|
align-items: center;
|
|
3441
3539
|
gap: var(--fui-space-1, 0.5rem);
|
|
3442
3540
|
width: 100%;
|
|
3443
|
-
padding: var(--fui-
|
|
3541
|
+
padding: var(--fui-popup-item-padding-block, 0.5rem) var(--fui-popup-item-padding-inline, 1rem);
|
|
3444
3542
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
3445
3543
|
cursor: pointer;
|
|
3446
3544
|
outline: none;
|
|
3447
3545
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
3448
3546
|
}
|
|
3449
|
-
.
|
|
3547
|
+
._item_v24st_37[data-highlighted] {
|
|
3450
3548
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
3451
3549
|
color: var(--fui-text-primary, #212121);
|
|
3452
3550
|
}
|
|
3453
|
-
.
|
|
3551
|
+
._item_v24st_37[data-disabled] {
|
|
3454
3552
|
opacity: 0.5;
|
|
3455
3553
|
pointer-events: none;
|
|
3456
3554
|
cursor: default;
|
|
3457
3555
|
}
|
|
3458
3556
|
|
|
3459
|
-
.
|
|
3557
|
+
._itemDanger_v24st_78 {
|
|
3460
3558
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
3461
3559
|
}
|
|
3462
|
-
.
|
|
3560
|
+
._itemDanger_v24st_78[data-highlighted] {
|
|
3463
3561
|
background-color: var(--fui-color-danger-bg, rgba(217, 112, 102, 0.1));
|
|
3464
3562
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
3465
3563
|
}
|
|
3466
3564
|
|
|
3467
|
-
.
|
|
3565
|
+
._itemIcon_v24st_86 {
|
|
3468
3566
|
display: flex;
|
|
3469
3567
|
align-items: center;
|
|
3470
3568
|
justify-content: center;
|
|
@@ -3472,35 +3570,39 @@
|
|
|
3472
3570
|
height: 1rem;
|
|
3473
3571
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
3474
3572
|
}
|
|
3475
|
-
.
|
|
3573
|
+
._itemDanger_v24st_78 ._itemIcon_v24st_86 {
|
|
3476
3574
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
3477
3575
|
}
|
|
3478
|
-
.
|
|
3576
|
+
._itemIcon_v24st_86 svg {
|
|
3479
3577
|
width: 1rem;
|
|
3480
3578
|
height: 1rem;
|
|
3481
3579
|
}
|
|
3482
3580
|
|
|
3483
|
-
.
|
|
3581
|
+
._itemLabel_v24st_102 {
|
|
3484
3582
|
flex: 1;
|
|
3485
3583
|
}
|
|
3486
3584
|
|
|
3487
|
-
.
|
|
3585
|
+
._itemShortcut_v24st_106 {
|
|
3488
3586
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3489
3587
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
3490
3588
|
margin-left: auto;
|
|
3491
3589
|
}
|
|
3492
3590
|
|
|
3493
|
-
.
|
|
3591
|
+
._checkIndicator_v24st_112 {
|
|
3494
3592
|
display: flex;
|
|
3495
3593
|
align-items: center;
|
|
3496
3594
|
justify-content: center;
|
|
3497
|
-
width:
|
|
3498
|
-
height:
|
|
3595
|
+
width: 0.75rem;
|
|
3596
|
+
height: 0.75rem;
|
|
3499
3597
|
flex-shrink: 0;
|
|
3500
3598
|
color: var(--fui-color-accent, #006b57);
|
|
3501
3599
|
}
|
|
3600
|
+
._checkIndicator_v24st_112 svg {
|
|
3601
|
+
width: 100%;
|
|
3602
|
+
height: 100%;
|
|
3603
|
+
}
|
|
3502
3604
|
|
|
3503
|
-
.
|
|
3605
|
+
._radioIndicator_v24st_126 {
|
|
3504
3606
|
display: flex;
|
|
3505
3607
|
align-items: center;
|
|
3506
3608
|
justify-content: center;
|
|
@@ -3508,23 +3610,23 @@
|
|
|
3508
3610
|
height: 1rem;
|
|
3509
3611
|
visibility: hidden;
|
|
3510
3612
|
}
|
|
3511
|
-
.
|
|
3613
|
+
._radioIndicator_v24st_126 svg {
|
|
3512
3614
|
width: 0.75rem;
|
|
3513
3615
|
height: 0.75rem;
|
|
3514
3616
|
}
|
|
3515
3617
|
|
|
3516
|
-
.
|
|
3618
|
+
._radioItem_v24st_139[data-checked] ._radioIndicator_v24st_126 {
|
|
3517
3619
|
visibility: visible;
|
|
3518
3620
|
color: var(--fui-color-accent, #006b57);
|
|
3519
3621
|
}
|
|
3520
3622
|
|
|
3521
|
-
.
|
|
3623
|
+
._separator_v24st_144 {
|
|
3522
3624
|
height: 1px;
|
|
3523
3625
|
margin: var(--fui-space-1, 0.5rem) 0;
|
|
3524
3626
|
background-color: var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
3525
3627
|
}
|
|
3526
3628
|
|
|
3527
|
-
.
|
|
3629
|
+
._groupLabel_v24st_150 {
|
|
3528
3630
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
3529
3631
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
3530
3632
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
@@ -3533,31 +3635,31 @@
|
|
|
3533
3635
|
letter-spacing: var(--fui-letter-spacing-wide, 0.05em);
|
|
3534
3636
|
}
|
|
3535
3637
|
|
|
3536
|
-
.
|
|
3638
|
+
._arrow_v24st_159 {
|
|
3537
3639
|
width: 10px;
|
|
3538
3640
|
height: 10px;
|
|
3539
3641
|
transform: rotate(45deg);
|
|
3540
3642
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
3541
3643
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
3542
3644
|
}
|
|
3543
|
-
.
|
|
3645
|
+
._arrow_v24st_159[data-side=top] {
|
|
3544
3646
|
border-top: none;
|
|
3545
3647
|
border-left: none;
|
|
3546
3648
|
}
|
|
3547
|
-
.
|
|
3649
|
+
._arrow_v24st_159[data-side=bottom] {
|
|
3548
3650
|
border-bottom: none;
|
|
3549
3651
|
border-right: none;
|
|
3550
3652
|
}
|
|
3551
|
-
.
|
|
3653
|
+
._arrow_v24st_159[data-side=left] {
|
|
3552
3654
|
border-left: none;
|
|
3553
3655
|
border-bottom: none;
|
|
3554
3656
|
}
|
|
3555
|
-
.
|
|
3657
|
+
._arrow_v24st_159[data-side=right] {
|
|
3556
3658
|
border-right: none;
|
|
3557
3659
|
border-top: none;
|
|
3558
3660
|
}
|
|
3559
3661
|
|
|
3560
|
-
.
|
|
3662
|
+
._submenuTrigger_v24st_183::after {
|
|
3561
3663
|
content: "";
|
|
3562
3664
|
margin-left: auto;
|
|
3563
3665
|
width: 0;
|
|
@@ -3568,10 +3670,10 @@
|
|
|
3568
3670
|
}
|
|
3569
3671
|
|
|
3570
3672
|
@media (prefers-reduced-motion: reduce) {
|
|
3571
|
-
.
|
|
3673
|
+
._popup_v24st_7 {
|
|
3572
3674
|
transform: none;
|
|
3573
3675
|
}
|
|
3574
|
-
.
|
|
3676
|
+
._popup_v24st_7[data-starting-style], ._popup_v24st_7[data-ending-style] {
|
|
3575
3677
|
transform: none;
|
|
3576
3678
|
}
|
|
3577
3679
|
}._positioner_1pyvn_1 {
|
|
@@ -4096,12 +4198,12 @@
|
|
|
4096
4198
|
._indicator_11gr0_83 {
|
|
4097
4199
|
transition: none;
|
|
4098
4200
|
}
|
|
4099
|
-
}.
|
|
4201
|
+
}._wrapper_1hwb3_1 {
|
|
4100
4202
|
display: flex;
|
|
4101
4203
|
flex-direction: column;
|
|
4102
4204
|
}
|
|
4103
4205
|
|
|
4104
|
-
.
|
|
4206
|
+
._label_1hwb3_6 {
|
|
4105
4207
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
4106
4208
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
4107
4209
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
@@ -4109,45 +4211,45 @@
|
|
|
4109
4211
|
margin-bottom: var(--fui-space-1, 0.5rem);
|
|
4110
4212
|
}
|
|
4111
4213
|
|
|
4112
|
-
.
|
|
4214
|
+
._required_1hwb3_14 {
|
|
4113
4215
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
4114
4216
|
margin-left: 2px;
|
|
4115
4217
|
}
|
|
4116
4218
|
|
|
4117
|
-
.
|
|
4219
|
+
._helper_1hwb3_19 {
|
|
4118
4220
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
4119
4221
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
4120
4222
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
4121
4223
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
4122
4224
|
}
|
|
4123
4225
|
|
|
4124
|
-
.
|
|
4226
|
+
._helperError_1hwb3_26 {
|
|
4125
4227
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
4126
4228
|
}
|
|
4127
4229
|
|
|
4128
|
-
.
|
|
4230
|
+
._errorMessage_1hwb3_30 {
|
|
4129
4231
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
4130
4232
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
4131
4233
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
4132
4234
|
}
|
|
4133
4235
|
|
|
4134
|
-
.
|
|
4236
|
+
._inputWrapper_1hwb3_36 {
|
|
4135
4237
|
background-color: var(--fui-field-bg, transparent);
|
|
4136
4238
|
border: 1px solid var(--fui-field-border, var(--fui-border-strong, rgba(0, 0, 0, 0.1)));
|
|
4137
4239
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
4138
4240
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
4139
4241
|
}
|
|
4140
|
-
.
|
|
4242
|
+
._inputWrapper_1hwb3_36:hover:not(:disabled):not([data-disabled]):not(:focus-visible) {
|
|
4141
4243
|
border-color: var(--fui-field-border-hover, var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852)));
|
|
4142
4244
|
}
|
|
4143
|
-
.
|
|
4245
|
+
._inputWrapper_1hwb3_36:focus:not(:disabled):not([data-disabled]) {
|
|
4144
4246
|
border-color: var(--fui-field-border-focus, var(--fui-color-accent, #006b57));
|
|
4145
4247
|
}
|
|
4146
|
-
.
|
|
4248
|
+
._inputWrapper_1hwb3_36:disabled, ._inputWrapper_1hwb3_36[data-disabled] {
|
|
4147
4249
|
background-color: var(--fui-field-bg-disabled, var(--fui-bg-tertiary, #f4f4f4));
|
|
4148
4250
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
4149
4251
|
}
|
|
4150
|
-
.
|
|
4252
|
+
._inputWrapper_1hwb3_36 {
|
|
4151
4253
|
--_field-h: var(--fui-input-height, 2.8571428571rem);
|
|
4152
4254
|
display: inline-flex;
|
|
4153
4255
|
align-items: center;
|
|
@@ -4159,33 +4261,33 @@
|
|
|
4159
4261
|
padding: calc(var(--fui-space-px, 1px) * 2);
|
|
4160
4262
|
padding-right: var(--fui-space-1, 0.5rem);
|
|
4161
4263
|
}
|
|
4162
|
-
.
|
|
4264
|
+
._inputWrapper_1hwb3_36:focus-within {
|
|
4163
4265
|
outline: none;
|
|
4164
4266
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
4165
4267
|
border-color: var(--fui-field-border-focus, var(--fui-color-accent, #006b57));
|
|
4166
4268
|
}
|
|
4167
|
-
.
|
|
4269
|
+
._inputWrapper_1hwb3_36:has([data-disabled]) {
|
|
4168
4270
|
background-color: var(--fui-field-bg-disabled, #f4f4f4);
|
|
4169
4271
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
4170
4272
|
}
|
|
4171
4273
|
|
|
4172
|
-
.
|
|
4274
|
+
._inputWrapperSm_1hwb3_74 {
|
|
4173
4275
|
--_field-h: var(--fui-input-height-sm, 2.2857142857rem);
|
|
4174
4276
|
}
|
|
4175
4277
|
|
|
4176
|
-
.
|
|
4278
|
+
._inputWrapperLg_1hwb3_78 {
|
|
4177
4279
|
--_field-h: var(--fui-input-height-lg, 3.1428571429rem);
|
|
4178
4280
|
}
|
|
4179
4281
|
|
|
4180
|
-
.
|
|
4282
|
+
._inputSm_1hwb3_82 {
|
|
4181
4283
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
4182
4284
|
}
|
|
4183
4285
|
|
|
4184
|
-
.
|
|
4286
|
+
._inputLg_1hwb3_86 {
|
|
4185
4287
|
font-size: var(--fui-font-size-base, 1rem);
|
|
4186
4288
|
}
|
|
4187
4289
|
|
|
4188
|
-
.
|
|
4290
|
+
._input_1hwb3_36 {
|
|
4189
4291
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
4190
4292
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
4191
4293
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -4202,23 +4304,23 @@
|
|
|
4202
4304
|
outline: none;
|
|
4203
4305
|
box-shadow: none;
|
|
4204
4306
|
}
|
|
4205
|
-
.
|
|
4307
|
+
._input_1hwb3_36:focus, ._input_1hwb3_36:focus-visible, ._input_1hwb3_36[data-focus-visible] {
|
|
4206
4308
|
outline: none;
|
|
4207
4309
|
box-shadow: none;
|
|
4208
4310
|
}
|
|
4209
|
-
.
|
|
4311
|
+
._input_1hwb3_36::placeholder {
|
|
4210
4312
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
4211
4313
|
}
|
|
4212
|
-
.
|
|
4314
|
+
._input_1hwb3_36:disabled, ._input_1hwb3_36[data-disabled] {
|
|
4213
4315
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
4214
4316
|
cursor: not-allowed;
|
|
4215
4317
|
}
|
|
4216
4318
|
|
|
4217
|
-
.
|
|
4319
|
+
._chips_1hwb3_119 {
|
|
4218
4320
|
display: contents;
|
|
4219
4321
|
}
|
|
4220
4322
|
|
|
4221
|
-
.
|
|
4323
|
+
._chip_1hwb3_119 {
|
|
4222
4324
|
display: inline-flex;
|
|
4223
4325
|
align-items: center;
|
|
4224
4326
|
gap: var(--fui-space-0-5, 0.15rem);
|
|
@@ -4234,13 +4336,13 @@
|
|
|
4234
4336
|
max-width: 12rem;
|
|
4235
4337
|
}
|
|
4236
4338
|
|
|
4237
|
-
.
|
|
4339
|
+
._chipLabel_1hwb3_139 {
|
|
4238
4340
|
overflow: hidden;
|
|
4239
4341
|
text-overflow: ellipsis;
|
|
4240
4342
|
white-space: nowrap;
|
|
4241
4343
|
}
|
|
4242
4344
|
|
|
4243
|
-
.
|
|
4345
|
+
._chipRemove_1hwb3_145 {
|
|
4244
4346
|
appearance: none;
|
|
4245
4347
|
background: transparent;
|
|
4246
4348
|
border: none;
|
|
@@ -4250,10 +4352,10 @@
|
|
|
4250
4352
|
color: inherit;
|
|
4251
4353
|
cursor: pointer;
|
|
4252
4354
|
}
|
|
4253
|
-
.
|
|
4355
|
+
._chipRemove_1hwb3_145:disabled {
|
|
4254
4356
|
cursor: not-allowed;
|
|
4255
4357
|
}
|
|
4256
|
-
.
|
|
4358
|
+
._chipRemove_1hwb3_145 {
|
|
4257
4359
|
min-width: var(--fui-target-size-min, 2.286rem);
|
|
4258
4360
|
min-height: var(--fui-target-size-min, 2.286rem);
|
|
4259
4361
|
display: inline-flex;
|
|
@@ -4270,12 +4372,12 @@
|
|
|
4270
4372
|
cursor: pointer;
|
|
4271
4373
|
transition: color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
4272
4374
|
}
|
|
4273
|
-
.
|
|
4375
|
+
._chipRemove_1hwb3_145:hover {
|
|
4274
4376
|
color: var(--fui-text-primary, #212121);
|
|
4275
4377
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
4276
4378
|
}
|
|
4277
4379
|
|
|
4278
|
-
.
|
|
4380
|
+
._trigger_1hwb3_180 {
|
|
4279
4381
|
appearance: none;
|
|
4280
4382
|
background: transparent;
|
|
4281
4383
|
border: none;
|
|
@@ -4285,10 +4387,10 @@
|
|
|
4285
4387
|
color: inherit;
|
|
4286
4388
|
cursor: pointer;
|
|
4287
4389
|
}
|
|
4288
|
-
.
|
|
4390
|
+
._trigger_1hwb3_180:disabled {
|
|
4289
4391
|
cursor: not-allowed;
|
|
4290
4392
|
}
|
|
4291
|
-
.
|
|
4393
|
+
._trigger_1hwb3_180 {
|
|
4292
4394
|
display: flex;
|
|
4293
4395
|
align-items: center;
|
|
4294
4396
|
justify-content: center;
|
|
@@ -4304,61 +4406,67 @@
|
|
|
4304
4406
|
transition: color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
4305
4407
|
margin-inline-end: calc(var(--fui-space-px, 1px) * 2);
|
|
4306
4408
|
}
|
|
4307
|
-
.
|
|
4409
|
+
._trigger_1hwb3_180:hover {
|
|
4308
4410
|
color: var(--fui-text-primary, #212121);
|
|
4309
4411
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
4310
4412
|
}
|
|
4311
|
-
.
|
|
4413
|
+
._trigger_1hwb3_180[data-disabled] {
|
|
4312
4414
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
4313
4415
|
cursor: not-allowed;
|
|
4314
4416
|
}
|
|
4315
|
-
.
|
|
4417
|
+
._trigger_1hwb3_180 svg {
|
|
4316
4418
|
width: var(--fui-icon-sm, 1rem);
|
|
4317
4419
|
height: var(--fui-icon-sm, 1rem);
|
|
4318
4420
|
transition: transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
4319
4421
|
}
|
|
4320
|
-
.
|
|
4422
|
+
._trigger_1hwb3_180[data-popup-open] svg {
|
|
4321
4423
|
transform: rotate(180deg);
|
|
4322
4424
|
}
|
|
4323
4425
|
|
|
4324
|
-
.
|
|
4426
|
+
._positioner_1hwb3_226 {
|
|
4325
4427
|
z-index: 52;
|
|
4326
4428
|
outline: none;
|
|
4327
4429
|
}
|
|
4328
4430
|
|
|
4329
|
-
.
|
|
4431
|
+
._popup_1hwb3_231 {
|
|
4330
4432
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
4331
4433
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
4332
4434
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
4333
4435
|
display: flex;
|
|
4334
4436
|
flex-direction: column;
|
|
4335
|
-
gap: 1px;
|
|
4336
|
-
padding: var(--fui-
|
|
4437
|
+
gap: var(--fui-popup-row-gap, 1px);
|
|
4438
|
+
padding: var(--fui-popup-padding, 0.5rem);
|
|
4337
4439
|
box-shadow: var(--fui-shadow-md, 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 3px -2px rgba(0, 0, 0, 0.03));
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
var(--fui-font-size-sm, 1rem) *
|
|
4440
|
+
--_popup-row-h: calc(
|
|
4441
|
+
var(--fui-popup-item-font-size, 0.857rem) *
|
|
4341
4442
|
var(--fui-line-height-normal, 1.5) +
|
|
4342
|
-
var(--fui-
|
|
4443
|
+
var(--fui-popup-item-padding-block, 0.5rem) * 2 +
|
|
4444
|
+
var(--fui-popup-row-gap, 1px)
|
|
4445
|
+
);
|
|
4446
|
+
--_popup-scroll-max-h: calc(
|
|
4447
|
+
var(--_popup-row-h) *
|
|
4448
|
+
var(--fui-select-max-items, 4.5) - var(--fui-popup-row-gap, 1px) +
|
|
4449
|
+
var(--fui-popup-padding, 0.5rem) * 2 + 2px
|
|
4343
4450
|
);
|
|
4451
|
+
border-color: var(--fui-form-group-border, rgba(0, 0, 0, 0.05));
|
|
4344
4452
|
min-width: var(--anchor-width);
|
|
4345
|
-
max-height:
|
|
4453
|
+
max-height: var(--_popup-scroll-max-h) !important;
|
|
4346
4454
|
overflow-y: auto !important;
|
|
4347
4455
|
opacity: 0;
|
|
4348
4456
|
transform: scale(0.95);
|
|
4349
4457
|
transform-origin: var(--transform-origin);
|
|
4350
4458
|
transition: opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
4351
4459
|
}
|
|
4352
|
-
.
|
|
4460
|
+
._popup_1hwb3_231[data-open] {
|
|
4353
4461
|
opacity: 1;
|
|
4354
4462
|
transform: scale(1);
|
|
4355
4463
|
}
|
|
4356
|
-
.
|
|
4464
|
+
._popup_1hwb3_231[data-starting-style], ._popup_1hwb3_231[data-ending-style] {
|
|
4357
4465
|
opacity: 0;
|
|
4358
4466
|
transform: scale(0.95);
|
|
4359
4467
|
}
|
|
4360
4468
|
|
|
4361
|
-
.
|
|
4469
|
+
._item_1hwb3_269 {
|
|
4362
4470
|
appearance: none;
|
|
4363
4471
|
background: transparent;
|
|
4364
4472
|
border: none;
|
|
@@ -4368,45 +4476,46 @@
|
|
|
4368
4476
|
color: inherit;
|
|
4369
4477
|
cursor: pointer;
|
|
4370
4478
|
}
|
|
4371
|
-
.
|
|
4479
|
+
._item_1hwb3_269:disabled {
|
|
4372
4480
|
cursor: not-allowed;
|
|
4373
4481
|
}
|
|
4374
|
-
.
|
|
4482
|
+
._item_1hwb3_269 {
|
|
4375
4483
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
4376
4484
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
4377
4485
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
4378
4486
|
color: var(--fui-text-primary, #212121);
|
|
4379
4487
|
-webkit-font-smoothing: antialiased;
|
|
4380
4488
|
-moz-osx-font-smoothing: grayscale;
|
|
4489
|
+
font-size: var(--fui-popup-item-font-size, 0.857rem);
|
|
4381
4490
|
display: flex;
|
|
4382
4491
|
align-items: center;
|
|
4383
4492
|
gap: var(--fui-space-1, 0.5rem);
|
|
4384
4493
|
width: 100%;
|
|
4385
|
-
padding: var(--fui-
|
|
4494
|
+
padding: var(--fui-popup-item-padding-block, 0.5rem) var(--fui-popup-item-padding-inline, 1rem);
|
|
4386
4495
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
4387
4496
|
cursor: pointer;
|
|
4388
4497
|
outline: none;
|
|
4389
4498
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
4390
4499
|
}
|
|
4391
|
-
.
|
|
4500
|
+
._item_1hwb3_269:hover, ._item_1hwb3_269[data-highlighted] {
|
|
4392
4501
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
4393
4502
|
color: var(--fui-text-primary, #212121);
|
|
4394
4503
|
}
|
|
4395
|
-
.
|
|
4504
|
+
._item_1hwb3_269[data-selected] {
|
|
4396
4505
|
background-color: var(--fui-field-selection-bg, var(--fui-bg-hover, rgba(0, 0, 0, 0.04)));
|
|
4397
4506
|
color: var(--fui-field-selection-color, var(--fui-text-primary, #212121));
|
|
4398
4507
|
box-shadow: inset 0 0 0 1px var(--fui-field-selection-border, var(--fui-color-accent, #006b57));
|
|
4399
4508
|
}
|
|
4400
|
-
.
|
|
4509
|
+
._item_1hwb3_269[data-selected]:hover, ._item_1hwb3_269[data-selected][data-highlighted] {
|
|
4401
4510
|
background-color: var(--fui-field-selection-bg-hover, rgba(0, 0, 0, 0.04));
|
|
4402
4511
|
}
|
|
4403
|
-
.
|
|
4512
|
+
._item_1hwb3_269[data-disabled] {
|
|
4404
4513
|
opacity: 0.5;
|
|
4405
4514
|
pointer-events: none;
|
|
4406
4515
|
cursor: default;
|
|
4407
4516
|
}
|
|
4408
4517
|
|
|
4409
|
-
.
|
|
4518
|
+
._itemIndicator_1hwb3_318 {
|
|
4410
4519
|
display: flex;
|
|
4411
4520
|
align-items: center;
|
|
4412
4521
|
justify-content: center;
|
|
@@ -4415,12 +4524,12 @@
|
|
|
4415
4524
|
margin-left: auto;
|
|
4416
4525
|
color: var(--fui-color-accent, #006b57);
|
|
4417
4526
|
}
|
|
4418
|
-
.
|
|
4527
|
+
._itemIndicator_1hwb3_318 svg {
|
|
4419
4528
|
width: var(--fui-icon-xs, 0.857rem);
|
|
4420
4529
|
height: var(--fui-icon-xs, 0.857rem);
|
|
4421
4530
|
}
|
|
4422
4531
|
|
|
4423
|
-
.
|
|
4532
|
+
._empty_1hwb3_332 {
|
|
4424
4533
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
4425
4534
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
4426
4535
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -4435,13 +4544,13 @@
|
|
|
4435
4544
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
4436
4545
|
}
|
|
4437
4546
|
|
|
4438
|
-
.
|
|
4547
|
+
._group_1hwb3_347:not(:first-child) {
|
|
4439
4548
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
4440
4549
|
padding-top: var(--fui-space-1, 0.5rem);
|
|
4441
4550
|
border-top: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
4442
4551
|
}
|
|
4443
4552
|
|
|
4444
|
-
.
|
|
4553
|
+
._groupLabel_1hwb3_353 {
|
|
4445
4554
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
4446
4555
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
4447
4556
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
@@ -4451,22 +4560,22 @@
|
|
|
4451
4560
|
}
|
|
4452
4561
|
|
|
4453
4562
|
@media (prefers-contrast: more) {
|
|
4454
|
-
.
|
|
4563
|
+
._inputWrapper_1hwb3_36 {
|
|
4455
4564
|
border-width: 2px;
|
|
4456
4565
|
border-color: var(--fui-text-primary, #212121);
|
|
4457
4566
|
}
|
|
4458
|
-
.
|
|
4567
|
+
._inputWrapper_1hwb3_36:focus-within {
|
|
4459
4568
|
border-color: var(--fui-color-accent, #006b57);
|
|
4460
4569
|
}
|
|
4461
4570
|
}
|
|
4462
4571
|
@media (prefers-reduced-motion: reduce) {
|
|
4463
|
-
.
|
|
4572
|
+
._inputWrapper_1hwb3_36 {
|
|
4464
4573
|
transition: none;
|
|
4465
4574
|
}
|
|
4466
|
-
.
|
|
4575
|
+
._popup_1hwb3_231 {
|
|
4467
4576
|
transition: none;
|
|
4468
4577
|
}
|
|
4469
|
-
.
|
|
4578
|
+
._trigger_1hwb3_180 svg {
|
|
4470
4579
|
transition: none;
|
|
4471
4580
|
}
|
|
4472
4581
|
}._wrapper_1mlpk_1 {
|
|
@@ -6460,7 +6569,7 @@
|
|
|
6460
6569
|
display: flex;
|
|
6461
6570
|
flex-direction: column;
|
|
6462
6571
|
gap: var(--fui-space-4, 2rem);
|
|
6463
|
-
}.
|
|
6572
|
+
}._root_1sl88_1 {
|
|
6464
6573
|
--fui-sidebar-row-height: var(--fui-sidebar-item-height, 2.2857142857rem);
|
|
6465
6574
|
--fui-sidebar-row-radius: var(--fui-radius-md, 0.429rem);
|
|
6466
6575
|
--fui-sidebar-row-gap: 0.571rem;
|
|
@@ -6493,30 +6602,30 @@
|
|
|
6493
6602
|
flex-shrink: 0;
|
|
6494
6603
|
}
|
|
6495
6604
|
@media (max-width: 767px) {
|
|
6496
|
-
.
|
|
6605
|
+
._root_1sl88_1:not(._mobile_1sl88_34) {
|
|
6497
6606
|
position: fixed;
|
|
6498
6607
|
transform: translateX(-100%);
|
|
6499
6608
|
}
|
|
6500
6609
|
}
|
|
6501
6610
|
|
|
6502
|
-
.
|
|
6611
|
+
._positionRight_1sl88_40 {
|
|
6503
6612
|
border-inline-start: 1px solid var(--fui-sidebar-border, var(--fui-border-default, rgba(0, 0, 0, 0.05)));
|
|
6504
6613
|
border-inline-end: 0;
|
|
6505
6614
|
}
|
|
6506
6615
|
|
|
6507
|
-
.
|
|
6616
|
+
._collapsed_1sl88_45 {
|
|
6508
6617
|
width: var(--sidebar-effective-collapsed-width, var(--sidebar-collapsed-width));
|
|
6509
6618
|
}
|
|
6510
|
-
.
|
|
6511
|
-
.
|
|
6512
|
-
.
|
|
6619
|
+
._collapsed_1sl88_45 ._header_1sl88_48,
|
|
6620
|
+
._collapsed_1sl88_45 ._nav_1sl88_49,
|
|
6621
|
+
._collapsed_1sl88_45 ._footer_1sl88_50 {
|
|
6513
6622
|
padding: var(--fui-space-1, 0.5rem);
|
|
6514
6623
|
}
|
|
6515
|
-
.
|
|
6516
|
-
.
|
|
6624
|
+
._collapsed_1sl88_45 ._header_1sl88_48,
|
|
6625
|
+
._collapsed_1sl88_45 ._footer_1sl88_50 {
|
|
6517
6626
|
justify-content: center;
|
|
6518
6627
|
}
|
|
6519
|
-
.
|
|
6628
|
+
._collapsed_1sl88_45 ._sectionLabel_1sl88_57 {
|
|
6520
6629
|
position: absolute;
|
|
6521
6630
|
width: 1px;
|
|
6522
6631
|
height: 1px;
|
|
@@ -6527,52 +6636,52 @@
|
|
|
6527
6636
|
white-space: nowrap;
|
|
6528
6637
|
border: 0;
|
|
6529
6638
|
}
|
|
6530
|
-
.
|
|
6531
|
-
.
|
|
6532
|
-
.
|
|
6639
|
+
._collapsed_1sl88_45 ._itemLabel_1sl88_68,
|
|
6640
|
+
._collapsed_1sl88_45 ._itemBadge_1sl88_69,
|
|
6641
|
+
._collapsed_1sl88_45 ._itemChevron_1sl88_70 {
|
|
6533
6642
|
display: none;
|
|
6534
6643
|
}
|
|
6535
|
-
.
|
|
6644
|
+
._collapsed_1sl88_45 ._item_1sl88_68 {
|
|
6536
6645
|
justify-content: center;
|
|
6537
6646
|
padding: 0;
|
|
6538
6647
|
min-height: var(--fui-sidebar-row-height);
|
|
6539
6648
|
}
|
|
6540
|
-
.
|
|
6649
|
+
._collapsed_1sl88_45 ._itemIcon_1sl88_78 {
|
|
6541
6650
|
margin: 0;
|
|
6542
6651
|
}
|
|
6543
|
-
.
|
|
6652
|
+
._collapsed_1sl88_45 ._collapseToggle_1sl88_81 {
|
|
6544
6653
|
margin: 0 auto;
|
|
6545
6654
|
}
|
|
6546
6655
|
|
|
6547
|
-
.
|
|
6548
|
-
.
|
|
6549
|
-
.
|
|
6550
|
-
.
|
|
6551
|
-
.
|
|
6552
|
-
.
|
|
6656
|
+
._collapsedNoIcons_1sl88_85 ._header_1sl88_48,
|
|
6657
|
+
._collapsedNoIcons_1sl88_85 ._nav_1sl88_49,
|
|
6658
|
+
._collapsedNoIcons_1sl88_85 ._footer_1sl88_50,
|
|
6659
|
+
._offcanvasCollapsed_1sl88_88 ._header_1sl88_48,
|
|
6660
|
+
._offcanvasCollapsed_1sl88_88 ._nav_1sl88_49,
|
|
6661
|
+
._offcanvasCollapsed_1sl88_88 ._footer_1sl88_50 {
|
|
6553
6662
|
visibility: hidden;
|
|
6554
6663
|
pointer-events: none;
|
|
6555
6664
|
}
|
|
6556
|
-
.
|
|
6557
|
-
.
|
|
6665
|
+
._collapsedNoIcons_1sl88_85 ._collapseToggleFloating_1sl88_94,
|
|
6666
|
+
._offcanvasCollapsed_1sl88_88 ._collapseToggleFloating_1sl88_94 {
|
|
6558
6667
|
visibility: visible;
|
|
6559
6668
|
pointer-events: auto;
|
|
6560
6669
|
}
|
|
6561
6670
|
|
|
6562
|
-
.
|
|
6671
|
+
._collapsedNoIcons_1sl88_85 {
|
|
6563
6672
|
overflow: visible;
|
|
6564
6673
|
}
|
|
6565
6674
|
|
|
6566
|
-
.
|
|
6675
|
+
._offcanvasCollapsed_1sl88_88 {
|
|
6567
6676
|
width: 0;
|
|
6568
6677
|
overflow: visible;
|
|
6569
6678
|
}
|
|
6570
|
-
.
|
|
6679
|
+
._offcanvasCollapsed_1sl88_88 ._rail_1sl88_108 {
|
|
6571
6680
|
visibility: hidden;
|
|
6572
6681
|
pointer-events: none;
|
|
6573
6682
|
}
|
|
6574
6683
|
|
|
6575
|
-
.
|
|
6684
|
+
._mobile_1sl88_34 {
|
|
6576
6685
|
position: fixed;
|
|
6577
6686
|
top: 0;
|
|
6578
6687
|
left: 0;
|
|
@@ -6581,16 +6690,16 @@
|
|
|
6581
6690
|
transition: transform var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1));
|
|
6582
6691
|
box-shadow: var(--fui-shadow-md, 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 3px -2px rgba(0, 0, 0, 0.03));
|
|
6583
6692
|
}
|
|
6584
|
-
.
|
|
6693
|
+
._mobile_1sl88_34._positionRight_1sl88_40 {
|
|
6585
6694
|
left: auto;
|
|
6586
6695
|
right: 0;
|
|
6587
6696
|
transform: translateX(100%);
|
|
6588
6697
|
}
|
|
6589
|
-
.
|
|
6698
|
+
._mobile_1sl88_34[data-state=open] {
|
|
6590
6699
|
transform: translateX(0);
|
|
6591
6700
|
}
|
|
6592
6701
|
|
|
6593
|
-
.
|
|
6702
|
+
._header_1sl88_48 {
|
|
6594
6703
|
display: flex;
|
|
6595
6704
|
align-items: center;
|
|
6596
6705
|
gap: 0.429rem;
|
|
@@ -6599,7 +6708,7 @@
|
|
|
6599
6708
|
min-height: 3rem;
|
|
6600
6709
|
}
|
|
6601
6710
|
|
|
6602
|
-
.
|
|
6711
|
+
._nav_1sl88_49 {
|
|
6603
6712
|
flex: 1;
|
|
6604
6713
|
min-height: 0;
|
|
6605
6714
|
display: flex;
|
|
@@ -6608,16 +6717,16 @@
|
|
|
6608
6717
|
padding: 0.286rem 0.571rem 0.857rem;
|
|
6609
6718
|
}
|
|
6610
6719
|
|
|
6611
|
-
.
|
|
6720
|
+
._navScrollArea_1sl88_149 {
|
|
6612
6721
|
flex: 1;
|
|
6613
6722
|
min-height: 0;
|
|
6614
6723
|
}
|
|
6615
6724
|
|
|
6616
|
-
.
|
|
6725
|
+
._section_1sl88_57:not(:first-child) {
|
|
6617
6726
|
margin-top: 1.286rem;
|
|
6618
6727
|
}
|
|
6619
6728
|
|
|
6620
|
-
.
|
|
6729
|
+
._sectionHeader_1sl88_158 {
|
|
6621
6730
|
display: flex;
|
|
6622
6731
|
align-items: center;
|
|
6623
6732
|
gap: 0.286rem;
|
|
@@ -6625,11 +6734,11 @@
|
|
|
6625
6734
|
padding: 0 0.571rem 0.286rem;
|
|
6626
6735
|
}
|
|
6627
6736
|
|
|
6628
|
-
.
|
|
6737
|
+
._sectionTrigger_1sl88_166 {
|
|
6629
6738
|
flex: 1;
|
|
6630
6739
|
}
|
|
6631
6740
|
|
|
6632
|
-
.
|
|
6741
|
+
._sectionLabel_1sl88_57 {
|
|
6633
6742
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
6634
6743
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
6635
6744
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
@@ -6647,11 +6756,11 @@
|
|
|
6647
6756
|
color: var(--fui-sidebar-faint);
|
|
6648
6757
|
}
|
|
6649
6758
|
|
|
6650
|
-
.
|
|
6759
|
+
._sectionActionWrapper_1sl88_188 {
|
|
6651
6760
|
flex-shrink: 0;
|
|
6652
6761
|
}
|
|
6653
6762
|
|
|
6654
|
-
.
|
|
6763
|
+
._sectionAction_1sl88_188 {
|
|
6655
6764
|
appearance: none;
|
|
6656
6765
|
background: transparent;
|
|
6657
6766
|
border: none;
|
|
@@ -6661,21 +6770,21 @@
|
|
|
6661
6770
|
color: inherit;
|
|
6662
6771
|
cursor: pointer;
|
|
6663
6772
|
}
|
|
6664
|
-
.
|
|
6773
|
+
._sectionAction_1sl88_188:disabled {
|
|
6665
6774
|
cursor: not-allowed;
|
|
6666
6775
|
}
|
|
6667
|
-
.
|
|
6776
|
+
._sectionAction_1sl88_188 {
|
|
6668
6777
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6669
6778
|
}
|
|
6670
|
-
.
|
|
6779
|
+
._sectionAction_1sl88_188:focus-visible {
|
|
6671
6780
|
outline: none;
|
|
6672
6781
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
6673
6782
|
}
|
|
6674
|
-
.
|
|
6783
|
+
._sectionAction_1sl88_188:disabled, ._sectionAction_1sl88_188[data-disabled] {
|
|
6675
6784
|
opacity: 0.5;
|
|
6676
6785
|
pointer-events: none;
|
|
6677
6786
|
}
|
|
6678
|
-
.
|
|
6787
|
+
._sectionAction_1sl88_188 {
|
|
6679
6788
|
display: flex;
|
|
6680
6789
|
align-items: center;
|
|
6681
6790
|
justify-content: center;
|
|
@@ -6684,17 +6793,17 @@
|
|
|
6684
6793
|
border-radius: var(--fui-sidebar-row-radius);
|
|
6685
6794
|
color: var(--fui-sidebar-faint);
|
|
6686
6795
|
}
|
|
6687
|
-
.
|
|
6796
|
+
._sectionAction_1sl88_188:hover {
|
|
6688
6797
|
background-color: var(--fui-sidebar-hover-bg);
|
|
6689
6798
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
6690
6799
|
}
|
|
6691
|
-
.
|
|
6800
|
+
._sectionAction_1sl88_188 svg {
|
|
6692
6801
|
width: var(--fui-sidebar-icon-size);
|
|
6693
6802
|
height: var(--fui-sidebar-icon-size);
|
|
6694
6803
|
}
|
|
6695
6804
|
|
|
6696
|
-
.
|
|
6697
|
-
.
|
|
6805
|
+
._sectionList_1sl88_234,
|
|
6806
|
+
._submenu_1sl88_235 {
|
|
6698
6807
|
list-style: none;
|
|
6699
6808
|
margin: 0;
|
|
6700
6809
|
padding: 0;
|
|
@@ -6703,7 +6812,7 @@
|
|
|
6703
6812
|
gap: 0.143rem;
|
|
6704
6813
|
}
|
|
6705
6814
|
|
|
6706
|
-
.
|
|
6815
|
+
._sectionCollapsible_1sl88_244 ._sectionTrigger_1sl88_166 {
|
|
6707
6816
|
display: flex;
|
|
6708
6817
|
align-items: center;
|
|
6709
6818
|
justify-content: flex-start;
|
|
@@ -6714,32 +6823,32 @@
|
|
|
6714
6823
|
border-radius: var(--fui-sidebar-row-radius);
|
|
6715
6824
|
background: transparent;
|
|
6716
6825
|
}
|
|
6717
|
-
.
|
|
6826
|
+
._sectionCollapsible_1sl88_244 ._sectionTrigger_1sl88_166:hover {
|
|
6718
6827
|
background-color: transparent;
|
|
6719
6828
|
}
|
|
6720
|
-
.
|
|
6829
|
+
._sectionCollapsible_1sl88_244 ._sectionTrigger_1sl88_166:hover ._sectionLabel_1sl88_57 {
|
|
6721
6830
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
6722
6831
|
}
|
|
6723
|
-
.
|
|
6832
|
+
._sectionCollapsible_1sl88_244 ._sectionTrigger_1sl88_166:hover svg {
|
|
6724
6833
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
6725
6834
|
}
|
|
6726
|
-
.
|
|
6835
|
+
._sectionCollapsible_1sl88_244 ._sectionTrigger_1sl88_166 svg {
|
|
6727
6836
|
width: 10px;
|
|
6728
6837
|
height: 10px;
|
|
6729
6838
|
color: var(--fui-sidebar-faint);
|
|
6730
6839
|
}
|
|
6731
6840
|
|
|
6732
|
-
.
|
|
6733
|
-
.
|
|
6734
|
-
.
|
|
6841
|
+
._itemWrapper_1sl88_270,
|
|
6842
|
+
._subItemWrapper_1sl88_271,
|
|
6843
|
+
._submenuWrapper_1sl88_272 {
|
|
6735
6844
|
list-style: none;
|
|
6736
6845
|
}
|
|
6737
6846
|
|
|
6738
|
-
.
|
|
6847
|
+
._itemWrapper_1sl88_270 {
|
|
6739
6848
|
width: 100%;
|
|
6740
6849
|
}
|
|
6741
6850
|
|
|
6742
|
-
.
|
|
6851
|
+
._item_1sl88_68 {
|
|
6743
6852
|
appearance: none;
|
|
6744
6853
|
background: transparent;
|
|
6745
6854
|
border: none;
|
|
@@ -6749,21 +6858,21 @@
|
|
|
6749
6858
|
color: inherit;
|
|
6750
6859
|
cursor: pointer;
|
|
6751
6860
|
}
|
|
6752
|
-
.
|
|
6861
|
+
._item_1sl88_68:disabled {
|
|
6753
6862
|
cursor: not-allowed;
|
|
6754
6863
|
}
|
|
6755
|
-
.
|
|
6864
|
+
._item_1sl88_68 {
|
|
6756
6865
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6757
6866
|
}
|
|
6758
|
-
.
|
|
6867
|
+
._item_1sl88_68:focus-visible {
|
|
6759
6868
|
outline: none;
|
|
6760
6869
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
6761
6870
|
}
|
|
6762
|
-
.
|
|
6871
|
+
._item_1sl88_68:disabled, ._item_1sl88_68[data-disabled] {
|
|
6763
6872
|
opacity: 0.5;
|
|
6764
6873
|
pointer-events: none;
|
|
6765
6874
|
}
|
|
6766
|
-
.
|
|
6875
|
+
._item_1sl88_68 {
|
|
6767
6876
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
6768
6877
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
6769
6878
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -6786,22 +6895,22 @@
|
|
|
6786
6895
|
outline-offset: -1px;
|
|
6787
6896
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6788
6897
|
}
|
|
6789
|
-
.
|
|
6898
|
+
._item_1sl88_68:hover:not(._itemDisabled_1sl88_327) {
|
|
6790
6899
|
background-color: var(--fui-sidebar-hover-bg);
|
|
6791
6900
|
color: var(--fui-sidebar-item-hover-color, var(--fui-text-primary, #212121));
|
|
6792
6901
|
text-decoration: none;
|
|
6793
6902
|
}
|
|
6794
|
-
.
|
|
6903
|
+
._item_1sl88_68:active:not(._itemDisabled_1sl88_327) {
|
|
6795
6904
|
background-color: var(--fui-sidebar-active-bg);
|
|
6796
6905
|
}
|
|
6797
6906
|
|
|
6798
|
-
.
|
|
6907
|
+
._itemActive_1sl88_336 {
|
|
6799
6908
|
background-color: var(--fui-sidebar-active-bg);
|
|
6800
6909
|
border-color: var(--fui-sidebar-active-border);
|
|
6801
6910
|
color: var(--fui-sidebar-item-active-color, var(--fui-text-primary, #212121));
|
|
6802
6911
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
6803
6912
|
}
|
|
6804
|
-
.
|
|
6913
|
+
._itemActive_1sl88_336::before {
|
|
6805
6914
|
content: "";
|
|
6806
6915
|
position: absolute;
|
|
6807
6916
|
left: -0.571rem;
|
|
@@ -6811,23 +6920,23 @@
|
|
|
6811
6920
|
border-radius: 0 2px 2px 0;
|
|
6812
6921
|
background: var(--fui-sidebar-item-active-indicator, var(--fui-color-accent, #006b57));
|
|
6813
6922
|
}
|
|
6814
|
-
.
|
|
6923
|
+
._itemActive_1sl88_336:hover, ._itemActive_1sl88_336:active {
|
|
6815
6924
|
background-color: var(--fui-sidebar-active-bg) !important;
|
|
6816
6925
|
border-color: var(--fui-sidebar-active-border) !important;
|
|
6817
6926
|
color: var(--fui-sidebar-item-active-color, var(--fui-text-primary, #212121)) !important;
|
|
6818
6927
|
text-decoration: none;
|
|
6819
6928
|
}
|
|
6820
|
-
.
|
|
6929
|
+
._itemActive_1sl88_336 ._itemIcon_1sl88_78 {
|
|
6821
6930
|
color: inherit;
|
|
6822
6931
|
}
|
|
6823
6932
|
|
|
6824
|
-
.
|
|
6825
|
-
.
|
|
6933
|
+
._itemDisabled_1sl88_327,
|
|
6934
|
+
._subItemDisabled_1sl88_363 {
|
|
6826
6935
|
opacity: 0.46;
|
|
6827
6936
|
cursor: not-allowed;
|
|
6828
6937
|
}
|
|
6829
6938
|
|
|
6830
|
-
.
|
|
6939
|
+
._itemIcon_1sl88_78 {
|
|
6831
6940
|
display: flex;
|
|
6832
6941
|
align-items: center;
|
|
6833
6942
|
justify-content: center;
|
|
@@ -6836,18 +6945,18 @@
|
|
|
6836
6945
|
flex-shrink: 0;
|
|
6837
6946
|
color: var(--fui-sidebar-faint);
|
|
6838
6947
|
}
|
|
6839
|
-
.
|
|
6948
|
+
._itemIcon_1sl88_78 svg {
|
|
6840
6949
|
width: var(--fui-sidebar-icon-size);
|
|
6841
6950
|
height: var(--fui-sidebar-icon-size);
|
|
6842
6951
|
}
|
|
6843
|
-
.
|
|
6952
|
+
._item_1sl88_68:hover:not(._itemDisabled_1sl88_327) ._itemIcon_1sl88_78 {
|
|
6844
6953
|
color: var(--fui-sidebar-muted);
|
|
6845
6954
|
}
|
|
6846
|
-
.
|
|
6955
|
+
._itemActive_1sl88_336 ._itemIcon_1sl88_78 {
|
|
6847
6956
|
color: var(--fui-sidebar-item-active-color, var(--fui-text-primary, #212121));
|
|
6848
6957
|
}
|
|
6849
6958
|
|
|
6850
|
-
.
|
|
6959
|
+
._itemLabel_1sl88_68 {
|
|
6851
6960
|
flex: 1;
|
|
6852
6961
|
text-align: left;
|
|
6853
6962
|
white-space: nowrap;
|
|
@@ -6856,7 +6965,12 @@
|
|
|
6856
6965
|
padding-top: 0.071rem;
|
|
6857
6966
|
}
|
|
6858
6967
|
|
|
6859
|
-
.
|
|
6968
|
+
._itemMultiline_1sl88_397 ._itemLabel_1sl88_68 {
|
|
6969
|
+
white-space: normal;
|
|
6970
|
+
min-width: 0;
|
|
6971
|
+
}
|
|
6972
|
+
|
|
6973
|
+
._itemBadge_1sl88_69 {
|
|
6860
6974
|
display: flex;
|
|
6861
6975
|
align-items: center;
|
|
6862
6976
|
justify-content: center;
|
|
@@ -6864,7 +6978,7 @@
|
|
|
6864
6978
|
margin-left: auto;
|
|
6865
6979
|
}
|
|
6866
6980
|
|
|
6867
|
-
.
|
|
6981
|
+
._itemChevron_1sl88_70 {
|
|
6868
6982
|
display: flex;
|
|
6869
6983
|
align-items: center;
|
|
6870
6984
|
justify-content: center;
|
|
@@ -6873,27 +6987,27 @@
|
|
|
6873
6987
|
flex-shrink: 0;
|
|
6874
6988
|
transition: transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6875
6989
|
}
|
|
6876
|
-
.
|
|
6990
|
+
._itemChevron_1sl88_70 svg {
|
|
6877
6991
|
width: var(--fui-sidebar-icon-size);
|
|
6878
6992
|
height: var(--fui-sidebar-icon-size);
|
|
6879
6993
|
}
|
|
6880
6994
|
|
|
6881
|
-
.
|
|
6995
|
+
._itemExpanded_1sl88_424 ._itemChevron_1sl88_70 {
|
|
6882
6996
|
transform: rotate(90deg);
|
|
6883
6997
|
}
|
|
6884
6998
|
|
|
6885
|
-
.
|
|
6999
|
+
._submenu_1sl88_235 {
|
|
6886
7000
|
padding-left: 1.714rem;
|
|
6887
7001
|
overflow: hidden;
|
|
6888
7002
|
max-height: 0;
|
|
6889
7003
|
transition: max-height var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1));
|
|
6890
7004
|
}
|
|
6891
7005
|
|
|
6892
|
-
.
|
|
7006
|
+
._itemExpanded_1sl88_424 + ._submenuWrapper_1sl88_272 ._submenu_1sl88_235 {
|
|
6893
7007
|
max-height: 500px;
|
|
6894
7008
|
}
|
|
6895
7009
|
|
|
6896
|
-
.
|
|
7010
|
+
._subItem_1sl88_271 {
|
|
6897
7011
|
appearance: none;
|
|
6898
7012
|
background: transparent;
|
|
6899
7013
|
border: none;
|
|
@@ -6903,21 +7017,21 @@
|
|
|
6903
7017
|
color: inherit;
|
|
6904
7018
|
cursor: pointer;
|
|
6905
7019
|
}
|
|
6906
|
-
.
|
|
7020
|
+
._subItem_1sl88_271:disabled {
|
|
6907
7021
|
cursor: not-allowed;
|
|
6908
7022
|
}
|
|
6909
|
-
.
|
|
7023
|
+
._subItem_1sl88_271 {
|
|
6910
7024
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6911
7025
|
}
|
|
6912
|
-
.
|
|
7026
|
+
._subItem_1sl88_271:focus-visible {
|
|
6913
7027
|
outline: none;
|
|
6914
7028
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
6915
7029
|
}
|
|
6916
|
-
.
|
|
7030
|
+
._subItem_1sl88_271:disabled, ._subItem_1sl88_271[data-disabled] {
|
|
6917
7031
|
opacity: 0.5;
|
|
6918
7032
|
pointer-events: none;
|
|
6919
7033
|
}
|
|
6920
|
-
.
|
|
7034
|
+
._subItem_1sl88_271 {
|
|
6921
7035
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
6922
7036
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
6923
7037
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -6934,7 +7048,7 @@
|
|
|
6934
7048
|
line-height: var(--fui-line-height-tight, 1.25);
|
|
6935
7049
|
position: relative;
|
|
6936
7050
|
}
|
|
6937
|
-
.
|
|
7051
|
+
._subItem_1sl88_271::before {
|
|
6938
7052
|
content: "";
|
|
6939
7053
|
position: absolute;
|
|
6940
7054
|
left: 0;
|
|
@@ -6946,24 +7060,24 @@
|
|
|
6946
7060
|
border-radius: var(--fui-radius-full, 9999px);
|
|
6947
7061
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6948
7062
|
}
|
|
6949
|
-
.
|
|
7063
|
+
._subItem_1sl88_271:hover:not(._subItemDisabled_1sl88_363) {
|
|
6950
7064
|
background-color: var(--fui-sidebar-hover-bg);
|
|
6951
7065
|
color: var(--fui-sidebar-item-hover-color, var(--fui-text-primary, #212121));
|
|
6952
7066
|
text-decoration: none;
|
|
6953
7067
|
}
|
|
6954
|
-
.
|
|
7068
|
+
._subItem_1sl88_271:active:not(._subItemDisabled_1sl88_363) {
|
|
6955
7069
|
background-color: var(--fui-sidebar-active-bg);
|
|
6956
7070
|
}
|
|
6957
7071
|
|
|
6958
|
-
.
|
|
7072
|
+
._subItemActive_1sl88_501 {
|
|
6959
7073
|
color: var(--fui-sidebar-item-active-color, var(--fui-text-primary, #212121));
|
|
6960
7074
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
6961
7075
|
}
|
|
6962
|
-
.
|
|
7076
|
+
._subItemActive_1sl88_501::before {
|
|
6963
7077
|
background-color: var(--fui-sidebar-item-active-indicator, var(--fui-border-strong, rgba(0, 0, 0, 0.1)));
|
|
6964
7078
|
}
|
|
6965
7079
|
|
|
6966
|
-
.
|
|
7080
|
+
._footer_1sl88_50 {
|
|
6967
7081
|
display: flex;
|
|
6968
7082
|
flex-direction: column;
|
|
6969
7083
|
gap: 0.571rem;
|
|
@@ -6973,7 +7087,7 @@
|
|
|
6973
7087
|
border-top: 1px solid var(--fui-sidebar-footer-border, color-mix(in srgb, var(--fui-border-default, rgba(0, 0, 0, 0.05)) 58%, transparent));
|
|
6974
7088
|
}
|
|
6975
7089
|
|
|
6976
|
-
.
|
|
7090
|
+
._trigger_1sl88_519 {
|
|
6977
7091
|
appearance: none;
|
|
6978
7092
|
background: transparent;
|
|
6979
7093
|
border: none;
|
|
@@ -6983,21 +7097,21 @@
|
|
|
6983
7097
|
color: inherit;
|
|
6984
7098
|
cursor: pointer;
|
|
6985
7099
|
}
|
|
6986
|
-
.
|
|
7100
|
+
._trigger_1sl88_519:disabled {
|
|
6987
7101
|
cursor: not-allowed;
|
|
6988
7102
|
}
|
|
6989
|
-
.
|
|
7103
|
+
._trigger_1sl88_519 {
|
|
6990
7104
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
6991
7105
|
}
|
|
6992
|
-
.
|
|
7106
|
+
._trigger_1sl88_519:focus-visible {
|
|
6993
7107
|
outline: none;
|
|
6994
7108
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
6995
7109
|
}
|
|
6996
|
-
.
|
|
7110
|
+
._trigger_1sl88_519:disabled, ._trigger_1sl88_519[data-disabled] {
|
|
6997
7111
|
opacity: 0.5;
|
|
6998
7112
|
pointer-events: none;
|
|
6999
7113
|
}
|
|
7000
|
-
.
|
|
7114
|
+
._trigger_1sl88_519 {
|
|
7001
7115
|
display: flex;
|
|
7002
7116
|
align-items: center;
|
|
7003
7117
|
justify-content: center;
|
|
@@ -7006,15 +7120,15 @@
|
|
|
7006
7120
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
7007
7121
|
color: var(--fui-text-primary, #212121);
|
|
7008
7122
|
}
|
|
7009
|
-
.
|
|
7123
|
+
._trigger_1sl88_519:hover {
|
|
7010
7124
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
7011
7125
|
}
|
|
7012
|
-
.
|
|
7126
|
+
._trigger_1sl88_519 svg {
|
|
7013
7127
|
width: 1.714rem;
|
|
7014
7128
|
height: 1.714rem;
|
|
7015
7129
|
}
|
|
7016
7130
|
|
|
7017
|
-
.
|
|
7131
|
+
._overlay_1sl88_560 {
|
|
7018
7132
|
position: fixed;
|
|
7019
7133
|
inset: 0;
|
|
7020
7134
|
z-index: 50;
|
|
@@ -7022,11 +7136,11 @@
|
|
|
7022
7136
|
opacity: 0;
|
|
7023
7137
|
transition: opacity var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1));
|
|
7024
7138
|
}
|
|
7025
|
-
.
|
|
7139
|
+
._overlay_1sl88_560[data-state=open] {
|
|
7026
7140
|
opacity: 1;
|
|
7027
7141
|
}
|
|
7028
7142
|
|
|
7029
|
-
.
|
|
7143
|
+
._collapseToggle_1sl88_81 {
|
|
7030
7144
|
appearance: none;
|
|
7031
7145
|
background: transparent;
|
|
7032
7146
|
border: none;
|
|
@@ -7036,21 +7150,21 @@
|
|
|
7036
7150
|
color: inherit;
|
|
7037
7151
|
cursor: pointer;
|
|
7038
7152
|
}
|
|
7039
|
-
.
|
|
7153
|
+
._collapseToggle_1sl88_81:disabled {
|
|
7040
7154
|
cursor: not-allowed;
|
|
7041
7155
|
}
|
|
7042
|
-
.
|
|
7156
|
+
._collapseToggle_1sl88_81 {
|
|
7043
7157
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
7044
7158
|
}
|
|
7045
|
-
.
|
|
7159
|
+
._collapseToggle_1sl88_81:focus-visible {
|
|
7046
7160
|
outline: none;
|
|
7047
7161
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
7048
7162
|
}
|
|
7049
|
-
.
|
|
7163
|
+
._collapseToggle_1sl88_81:disabled, ._collapseToggle_1sl88_81[data-disabled] {
|
|
7050
7164
|
opacity: 0.5;
|
|
7051
7165
|
pointer-events: none;
|
|
7052
7166
|
}
|
|
7053
|
-
.
|
|
7167
|
+
._collapseToggle_1sl88_81 {
|
|
7054
7168
|
display: flex;
|
|
7055
7169
|
align-items: center;
|
|
7056
7170
|
justify-content: center;
|
|
@@ -7060,16 +7174,16 @@
|
|
|
7060
7174
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
7061
7175
|
margin-left: auto;
|
|
7062
7176
|
}
|
|
7063
|
-
.
|
|
7177
|
+
._collapseToggle_1sl88_81:hover {
|
|
7064
7178
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
7065
7179
|
color: var(--fui-text-primary, #212121);
|
|
7066
7180
|
}
|
|
7067
|
-
.
|
|
7181
|
+
._collapseToggle_1sl88_81 svg {
|
|
7068
7182
|
width: 1.429rem;
|
|
7069
7183
|
height: 1.429rem;
|
|
7070
7184
|
}
|
|
7071
7185
|
|
|
7072
|
-
.
|
|
7186
|
+
._collapseToggleFloating_1sl88_94 {
|
|
7073
7187
|
position: absolute;
|
|
7074
7188
|
top: var(--fui-space-3, 1.5rem);
|
|
7075
7189
|
left: calc(100% + var(--fui-space-2, 1rem));
|
|
@@ -7079,12 +7193,12 @@
|
|
|
7079
7193
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
7080
7194
|
box-shadow: var(--fui-shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.02));
|
|
7081
7195
|
}
|
|
7082
|
-
.
|
|
7196
|
+
._positionRight_1sl88_40 ._collapseToggleFloating_1sl88_94 {
|
|
7083
7197
|
left: auto;
|
|
7084
7198
|
right: calc(100% + var(--fui-space-2, 1rem));
|
|
7085
7199
|
}
|
|
7086
7200
|
|
|
7087
|
-
.
|
|
7201
|
+
._rail_1sl88_108 {
|
|
7088
7202
|
appearance: none;
|
|
7089
7203
|
background: transparent;
|
|
7090
7204
|
border: none;
|
|
@@ -7094,10 +7208,10 @@
|
|
|
7094
7208
|
color: inherit;
|
|
7095
7209
|
cursor: pointer;
|
|
7096
7210
|
}
|
|
7097
|
-
.
|
|
7211
|
+
._rail_1sl88_108:disabled {
|
|
7098
7212
|
cursor: not-allowed;
|
|
7099
7213
|
}
|
|
7100
|
-
.
|
|
7214
|
+
._rail_1sl88_108 {
|
|
7101
7215
|
position: absolute;
|
|
7102
7216
|
top: 0;
|
|
7103
7217
|
right: 0;
|
|
@@ -7105,11 +7219,11 @@
|
|
|
7105
7219
|
height: 100%;
|
|
7106
7220
|
z-index: 10;
|
|
7107
7221
|
}
|
|
7108
|
-
.
|
|
7222
|
+
._positionRight_1sl88_40 ._rail_1sl88_108 {
|
|
7109
7223
|
right: auto;
|
|
7110
7224
|
left: 0;
|
|
7111
7225
|
}
|
|
7112
|
-
.
|
|
7226
|
+
._rail_1sl88_108::before {
|
|
7113
7227
|
content: "";
|
|
7114
7228
|
position: absolute;
|
|
7115
7229
|
top: 50%;
|
|
@@ -7122,30 +7236,30 @@
|
|
|
7122
7236
|
opacity: 0;
|
|
7123
7237
|
transition: opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), height var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
7124
7238
|
}
|
|
7125
|
-
.
|
|
7239
|
+
._positionRight_1sl88_40 ._rail_1sl88_108::before {
|
|
7126
7240
|
right: auto;
|
|
7127
7241
|
left: 4px;
|
|
7128
7242
|
}
|
|
7129
|
-
.
|
|
7243
|
+
._rail_1sl88_108:hover::before, ._rail_1sl88_108:focus-visible::before {
|
|
7130
7244
|
opacity: 1;
|
|
7131
7245
|
background-color: var(--fui-border-strong, rgba(0, 0, 0, 0.1));
|
|
7132
7246
|
}
|
|
7133
|
-
.
|
|
7247
|
+
._rail_1sl88_108:hover::before {
|
|
7134
7248
|
height: 4rem;
|
|
7135
7249
|
}
|
|
7136
7250
|
|
|
7137
|
-
.
|
|
7251
|
+
._railCollapsed_1sl88_680::before {
|
|
7138
7252
|
opacity: 0.7;
|
|
7139
7253
|
}
|
|
7140
7254
|
|
|
7141
|
-
.
|
|
7255
|
+
._menuSkeleton_1sl88_684 {
|
|
7142
7256
|
display: flex;
|
|
7143
7257
|
flex-direction: column;
|
|
7144
7258
|
gap: var(--fui-space-2, 1rem);
|
|
7145
7259
|
padding: var(--fui-space-2, 1rem);
|
|
7146
7260
|
}
|
|
7147
7261
|
|
|
7148
|
-
.
|
|
7262
|
+
._skeletonItem_1sl88_691 {
|
|
7149
7263
|
display: flex;
|
|
7150
7264
|
align-items: center;
|
|
7151
7265
|
gap: var(--fui-space-2, 1rem);
|
|
@@ -7153,18 +7267,18 @@
|
|
|
7153
7267
|
min-height: var(--fui-sidebar-item-height, 2.2857142857rem);
|
|
7154
7268
|
}
|
|
7155
7269
|
|
|
7156
|
-
.
|
|
7270
|
+
._skeletonLabel_1sl88_699 {
|
|
7157
7271
|
flex: 1;
|
|
7158
7272
|
}
|
|
7159
7273
|
|
|
7160
7274
|
@media (prefers-reduced-motion: reduce) {
|
|
7161
|
-
.
|
|
7162
|
-
.
|
|
7163
|
-
.
|
|
7164
|
-
.
|
|
7165
|
-
.
|
|
7166
|
-
.
|
|
7167
|
-
.
|
|
7275
|
+
._root_1sl88_1,
|
|
7276
|
+
._mobile_1sl88_34,
|
|
7277
|
+
._overlay_1sl88_560,
|
|
7278
|
+
._submenu_1sl88_235,
|
|
7279
|
+
._itemChevron_1sl88_70,
|
|
7280
|
+
._rail_1sl88_108::before,
|
|
7281
|
+
._subItem_1sl88_271::before {
|
|
7168
7282
|
transition: none;
|
|
7169
7283
|
}
|
|
7170
7284
|
}._root_nkqnt_1 {
|
|
@@ -8181,13 +8295,13 @@
|
|
|
8181
8295
|
|
|
8182
8296
|
._description_1wv9j_19 {
|
|
8183
8297
|
max-width: 68ch;
|
|
8184
|
-
}.
|
|
8298
|
+
}._text_1159j_1 {
|
|
8185
8299
|
font-family: var(--fui-font-sans, "Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif);
|
|
8186
8300
|
color: var(--fui-text-primary, #212121);
|
|
8187
8301
|
margin: 0;
|
|
8188
8302
|
}
|
|
8189
8303
|
|
|
8190
|
-
._variant-section-
|
|
8304
|
+
._variant-section-label_1159j_7 {
|
|
8191
8305
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
8192
8306
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
8193
8307
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
@@ -8197,90 +8311,102 @@
|
|
|
8197
8311
|
letter-spacing: var(--fui-letter-spacing-wide, 0.05em);
|
|
8198
8312
|
}
|
|
8199
8313
|
|
|
8200
|
-
._size-
|
|
8314
|
+
._size-2xs_1159j_17 {
|
|
8201
8315
|
font-size: var(--fui-font-size-2xs, 0.714rem);
|
|
8202
8316
|
}
|
|
8203
8317
|
|
|
8204
|
-
._size-
|
|
8318
|
+
._size-xs_1159j_21 {
|
|
8205
8319
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
8206
8320
|
}
|
|
8207
8321
|
|
|
8208
|
-
._size-
|
|
8322
|
+
._size-sm_1159j_25 {
|
|
8209
8323
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
8210
8324
|
}
|
|
8211
8325
|
|
|
8212
|
-
._size-
|
|
8326
|
+
._size-base_1159j_29 {
|
|
8213
8327
|
font-size: var(--fui-font-size-base, 1rem);
|
|
8214
8328
|
}
|
|
8215
8329
|
|
|
8216
|
-
._size-
|
|
8330
|
+
._size-md_1159j_33 {
|
|
8217
8331
|
font-size: var(--fui-font-size-md, 1.071rem);
|
|
8218
8332
|
}
|
|
8219
8333
|
|
|
8220
|
-
._size-
|
|
8334
|
+
._size-lg_1159j_37 {
|
|
8221
8335
|
font-size: var(--fui-font-size-lg, 1.429rem);
|
|
8222
8336
|
}
|
|
8223
8337
|
|
|
8224
|
-
._size-
|
|
8338
|
+
._size-xl_1159j_41 {
|
|
8225
8339
|
font-size: var(--fui-font-size-xl, 1.714rem);
|
|
8226
8340
|
}
|
|
8227
8341
|
|
|
8228
|
-
._size-
|
|
8342
|
+
._size-2xl_1159j_45 {
|
|
8229
8343
|
font-size: var(--fui-font-size-2xl, 2.143rem);
|
|
8230
8344
|
}
|
|
8231
8345
|
|
|
8232
|
-
._size-
|
|
8346
|
+
._size-3xl_1159j_49 {
|
|
8233
8347
|
font-size: var(--fui-font-size-3xl, 2.571rem);
|
|
8234
8348
|
line-height: var(--fui-line-height-display, 1.1);
|
|
8235
8349
|
letter-spacing: var(--fui-letter-spacing-display, 0);
|
|
8236
8350
|
}
|
|
8237
8351
|
|
|
8238
|
-
._size-
|
|
8352
|
+
._size-4xl_1159j_55 {
|
|
8239
8353
|
font-size: var(--fui-font-size-4xl, 3.429rem);
|
|
8240
8354
|
line-height: var(--fui-line-height-display, 1.1);
|
|
8241
8355
|
letter-spacing: var(--fui-letter-spacing-display, 0);
|
|
8242
8356
|
}
|
|
8243
8357
|
|
|
8244
|
-
._weight-
|
|
8358
|
+
._weight-normal_1159j_61 {
|
|
8245
8359
|
font-weight: var(--fui-font-weight-normal, 400);
|
|
8246
8360
|
}
|
|
8247
8361
|
|
|
8248
|
-
._weight-
|
|
8362
|
+
._weight-medium_1159j_65 {
|
|
8249
8363
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
8250
8364
|
}
|
|
8251
8365
|
|
|
8252
|
-
._weight-
|
|
8366
|
+
._weight-semibold_1159j_69 {
|
|
8253
8367
|
font-weight: var(--fui-font-weight-semibold, 600);
|
|
8254
8368
|
}
|
|
8255
8369
|
|
|
8256
|
-
._weight-
|
|
8370
|
+
._weight-bold_1159j_73 {
|
|
8257
8371
|
font-weight: var(--fui-font-weight-bold, 700);
|
|
8258
8372
|
}
|
|
8259
8373
|
|
|
8260
|
-
._color-
|
|
8374
|
+
._color-primary_1159j_77 {
|
|
8261
8375
|
color: var(--fui-text-primary, #212121);
|
|
8262
8376
|
}
|
|
8263
8377
|
|
|
8264
|
-
._color-
|
|
8378
|
+
._color-secondary_1159j_81 {
|
|
8265
8379
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
8266
8380
|
}
|
|
8267
8381
|
|
|
8268
|
-
._color-
|
|
8269
|
-
._color-
|
|
8382
|
+
._color-tertiary_1159j_85,
|
|
8383
|
+
._color-muted_1159j_86 {
|
|
8270
8384
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
8271
8385
|
}
|
|
8272
8386
|
|
|
8273
|
-
.
|
|
8387
|
+
._color-success_1159j_90 {
|
|
8388
|
+
color: var(--fui-color-success, #7fc9b3);
|
|
8389
|
+
}
|
|
8390
|
+
|
|
8391
|
+
._color-warning_1159j_94 {
|
|
8392
|
+
color: var(--fui-color-warning, #e0aa5c);
|
|
8393
|
+
}
|
|
8394
|
+
|
|
8395
|
+
._color-danger_1159j_98 {
|
|
8396
|
+
color: var(--fui-color-danger, #d97066);
|
|
8397
|
+
}
|
|
8398
|
+
|
|
8399
|
+
._mono_1159j_102 {
|
|
8274
8400
|
font-family: var(--fui-font-mono, "JetBrains Mono Variable", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace);
|
|
8275
8401
|
}
|
|
8276
8402
|
|
|
8277
|
-
.
|
|
8403
|
+
._truncate_1159j_106 {
|
|
8278
8404
|
overflow: hidden;
|
|
8279
8405
|
text-overflow: ellipsis;
|
|
8280
8406
|
white-space: nowrap;
|
|
8281
8407
|
}
|
|
8282
8408
|
|
|
8283
|
-
.
|
|
8409
|
+
._lineClamp_1159j_112 {
|
|
8284
8410
|
display: -webkit-box;
|
|
8285
8411
|
-webkit-box-orient: vertical;
|
|
8286
8412
|
-webkit-line-clamp: var(--fui-line-clamp, 2);
|
|
@@ -8288,23 +8414,23 @@
|
|
|
8288
8414
|
text-overflow: ellipsis;
|
|
8289
8415
|
}
|
|
8290
8416
|
|
|
8291
|
-
._tracking-
|
|
8417
|
+
._tracking-normal_1159j_120 {
|
|
8292
8418
|
letter-spacing: var(--fui-letter-spacing-normal, normal);
|
|
8293
8419
|
}
|
|
8294
8420
|
|
|
8295
|
-
._tracking-
|
|
8421
|
+
._tracking-tight_1159j_124 {
|
|
8296
8422
|
letter-spacing: var(--fui-letter-spacing-tight, 0);
|
|
8297
8423
|
}
|
|
8298
8424
|
|
|
8299
|
-
._tracking-
|
|
8425
|
+
._tracking-tighter_1159j_128 {
|
|
8300
8426
|
letter-spacing: var(--fui-letter-spacing-display, 0);
|
|
8301
8427
|
}
|
|
8302
8428
|
|
|
8303
|
-
._tracking-
|
|
8429
|
+
._tracking-tightest_1159j_132 {
|
|
8304
8430
|
letter-spacing: var(--fui-letter-spacing-display, 0);
|
|
8305
8431
|
}
|
|
8306
8432
|
|
|
8307
|
-
.
|
|
8433
|
+
._tabularNums_1159j_136 {
|
|
8308
8434
|
font-variant-numeric: tabular-nums;
|
|
8309
8435
|
}._group_138yl_1 {
|
|
8310
8436
|
display: flex;
|
|
@@ -9256,7 +9382,7 @@
|
|
|
9256
9382
|
._preset_8uzqf_406 {
|
|
9257
9383
|
transition: none;
|
|
9258
9384
|
}
|
|
9259
|
-
}.
|
|
9385
|
+
}._prompt_1wo4v_1 {
|
|
9260
9386
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
9261
9387
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
9262
9388
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
@@ -9266,43 +9392,43 @@
|
|
|
9266
9392
|
overflow: hidden;
|
|
9267
9393
|
position: relative;
|
|
9268
9394
|
}
|
|
9269
|
-
.
|
|
9395
|
+
._prompt_1wo4v_1::before, ._prompt_1wo4v_1::after {
|
|
9270
9396
|
content: "";
|
|
9271
9397
|
position: absolute;
|
|
9272
9398
|
inset: 0;
|
|
9273
9399
|
border-radius: inherit;
|
|
9274
9400
|
pointer-events: none;
|
|
9275
9401
|
}
|
|
9276
|
-
.
|
|
9402
|
+
._prompt_1wo4v_1::before {
|
|
9277
9403
|
inset: -1px;
|
|
9278
9404
|
z-index: 0;
|
|
9279
9405
|
background: conic-gradient(from var(--beam-angle, 0deg) at 50% 50%, transparent 0%, transparent 25%, var(--fui-color-accent, #006b57) 45%, transparent 50%, transparent 55%, color-mix(in srgb, var(--fui-color-accent, #006b57) 40%, transparent) 70%, transparent 75%, transparent 100%);
|
|
9280
|
-
animation: _beam-
|
|
9406
|
+
animation: _beam-rotate_1wo4v_1 4s linear infinite;
|
|
9281
9407
|
opacity: 0.6;
|
|
9282
9408
|
transition: opacity var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1));
|
|
9283
9409
|
}
|
|
9284
|
-
.
|
|
9410
|
+
._prompt_1wo4v_1::after {
|
|
9285
9411
|
inset: 1px;
|
|
9286
9412
|
z-index: 1;
|
|
9287
9413
|
background: var(--fui-bg-elevated, #ffffff);
|
|
9288
9414
|
}
|
|
9289
|
-
.
|
|
9415
|
+
._prompt_1wo4v_1 > * {
|
|
9290
9416
|
position: relative;
|
|
9291
9417
|
z-index: 2;
|
|
9292
9418
|
}
|
|
9293
|
-
.
|
|
9419
|
+
._prompt_1wo4v_1:focus-within::before {
|
|
9294
9420
|
opacity: 1;
|
|
9295
9421
|
}
|
|
9296
|
-
.
|
|
9422
|
+
._prompt_1wo4v_1[data-disabled] {
|
|
9297
9423
|
opacity: 0.5;
|
|
9298
9424
|
pointer-events: none;
|
|
9299
9425
|
}
|
|
9300
|
-
.
|
|
9426
|
+
._prompt_1wo4v_1[data-disabled]::before {
|
|
9301
9427
|
animation-play-state: paused;
|
|
9302
9428
|
opacity: 0.2;
|
|
9303
9429
|
}
|
|
9304
9430
|
|
|
9305
|
-
@keyframes _beam-
|
|
9431
|
+
@keyframes _beam-rotate_1wo4v_1 {
|
|
9306
9432
|
from {
|
|
9307
9433
|
--beam-angle: 0deg;
|
|
9308
9434
|
}
|
|
@@ -9315,7 +9441,7 @@
|
|
|
9315
9441
|
initial-value: 0deg;
|
|
9316
9442
|
inherits: false;
|
|
9317
9443
|
}
|
|
9318
|
-
.
|
|
9444
|
+
._fixed_1wo4v_60 {
|
|
9319
9445
|
position: fixed;
|
|
9320
9446
|
bottom: var(--fui-space-4, 2rem);
|
|
9321
9447
|
left: 50%;
|
|
@@ -9326,7 +9452,7 @@
|
|
|
9326
9452
|
box-shadow: var(--fui-shadow-lg, 0 8px 12px -3px rgba(0, 0, 0, 0.06), 0 3px 5px -4px rgba(0, 0, 0, 0.04));
|
|
9327
9453
|
}
|
|
9328
9454
|
|
|
9329
|
-
.
|
|
9455
|
+
._sticky_1wo4v_71 {
|
|
9330
9456
|
position: fixed;
|
|
9331
9457
|
bottom: var(--fui-space-4, 2rem);
|
|
9332
9458
|
left: var(--fui-prompt-inset-left, 0);
|
|
@@ -9341,7 +9467,108 @@
|
|
|
9341
9467
|
transform: translateX(-50%);
|
|
9342
9468
|
}
|
|
9343
9469
|
|
|
9344
|
-
.
|
|
9470
|
+
._seamless_1wo4v_86 {
|
|
9471
|
+
--_gutter: var(--fui-space-3, 1.5rem);
|
|
9472
|
+
--_control-padding: var(--fui-space-2, 1rem);
|
|
9473
|
+
--_chip-padding: var(--fui-space-1, 0.5rem);
|
|
9474
|
+
--fui-target-size-min: var(--fui-button-height-xs, 2.2857142857rem);
|
|
9475
|
+
--fui-button-height-sm: var(--fui-button-height-xs, 2.2857142857rem);
|
|
9476
|
+
--fui-input-height-sm: var(--fui-button-height-xs, 2.2857142857rem);
|
|
9477
|
+
border-color: transparent;
|
|
9478
|
+
border-radius: var(--fui-radius-xl, 0.857rem);
|
|
9479
|
+
}
|
|
9480
|
+
._seamless_1wo4v_86::before, ._seamless_1wo4v_86::after {
|
|
9481
|
+
display: none;
|
|
9482
|
+
}
|
|
9483
|
+
._seamless_1wo4v_86:focus-within {
|
|
9484
|
+
border-color: transparent;
|
|
9485
|
+
}
|
|
9486
|
+
._seamless_1wo4v_86 ._toolbar_1wo4v_102 {
|
|
9487
|
+
background-color: transparent;
|
|
9488
|
+
border-top: none;
|
|
9489
|
+
padding: 0 calc(var(--_gutter) - var(--_control-padding)) var(--_gutter);
|
|
9490
|
+
}
|
|
9491
|
+
._seamless_1wo4v_86 ._textarea_1wo4v_107 {
|
|
9492
|
+
padding: var(--_gutter) var(--_gutter) var(--fui-space-1, 0.5rem);
|
|
9493
|
+
}
|
|
9494
|
+
._seamless_1wo4v_86 ._attachments_1wo4v_110 {
|
|
9495
|
+
padding: var(--_gutter) calc(var(--_gutter) - var(--_chip-padding)) 0;
|
|
9496
|
+
gap: var(--fui-space-1, 0.5rem);
|
|
9497
|
+
}
|
|
9498
|
+
._seamless_1wo4v_86 ._attachments_1wo4v_110 + ._textarea_1wo4v_107,
|
|
9499
|
+
._seamless_1wo4v_86 ._tabs_1wo4v_115 + ._attachments_1wo4v_110 {
|
|
9500
|
+
padding-top: var(--fui-space-1, 0.5rem);
|
|
9501
|
+
}
|
|
9502
|
+
._seamless_1wo4v_86 ._tabs_1wo4v_115 {
|
|
9503
|
+
margin-bottom: 0;
|
|
9504
|
+
justify-content: flex-start;
|
|
9505
|
+
padding: var(--_gutter) calc(var(--_gutter) - var(--_control-padding)) 0;
|
|
9506
|
+
}
|
|
9507
|
+
._seamless_1wo4v_86 ._tabsInner_1wo4v_123 {
|
|
9508
|
+
background-color: transparent;
|
|
9509
|
+
border: none;
|
|
9510
|
+
border-radius: 0;
|
|
9511
|
+
padding: 0;
|
|
9512
|
+
gap: var(--fui-space-1, 0.5rem);
|
|
9513
|
+
}
|
|
9514
|
+
._seamless_1wo4v_86 ._tabs_1wo4v_115 + ._textarea_1wo4v_107 {
|
|
9515
|
+
padding-top: var(--fui-space-1, 0.5rem);
|
|
9516
|
+
}
|
|
9517
|
+
._seamless_1wo4v_86 ._attach_1wo4v_110 {
|
|
9518
|
+
width: auto;
|
|
9519
|
+
padding-inline: var(--_control-padding);
|
|
9520
|
+
}
|
|
9521
|
+
._seamless_1wo4v_86 ._attach_1wo4v_110 svg {
|
|
9522
|
+
width: var(--fui-icon-md, 1.143rem);
|
|
9523
|
+
height: var(--fui-icon-md, 1.143rem);
|
|
9524
|
+
}
|
|
9525
|
+
._seamless_1wo4v_86 ._select_1wo4v_141,
|
|
9526
|
+
._seamless_1wo4v_86 ._modeButton_1wo4v_142 {
|
|
9527
|
+
font-size: var(--fui-font-size-sm, 1rem);
|
|
9528
|
+
}
|
|
9529
|
+
._seamless_1wo4v_86 ._select_1wo4v_141 svg {
|
|
9530
|
+
width: var(--fui-icon-md, 1.143rem);
|
|
9531
|
+
height: var(--fui-icon-md, 1.143rem);
|
|
9532
|
+
}
|
|
9533
|
+
._seamless_1wo4v_86 ._select_1wo4v_141:hover:not(:disabled):not([data-disabled]), ._seamless_1wo4v_86 ._select_1wo4v_141:active:not(:disabled):not([data-disabled]),
|
|
9534
|
+
._seamless_1wo4v_86 ._attach_1wo4v_110:hover:not(:disabled):not([data-disabled]),
|
|
9535
|
+
._seamless_1wo4v_86 ._attach_1wo4v_110:active:not(:disabled):not([data-disabled]),
|
|
9536
|
+
._seamless_1wo4v_86 ._modeButton_1wo4v_142:hover:not(:disabled):not([data-disabled]),
|
|
9537
|
+
._seamless_1wo4v_86 ._modeButton_1wo4v_142:active:not(:disabled):not([data-disabled]) {
|
|
9538
|
+
background-color: transparent;
|
|
9539
|
+
color: var(--fui-text-primary, #212121);
|
|
9540
|
+
}
|
|
9541
|
+
._seamless_1wo4v_86 ._select_1wo4v_141:focus-visible,
|
|
9542
|
+
._seamless_1wo4v_86 ._attach_1wo4v_110:focus-visible,
|
|
9543
|
+
._seamless_1wo4v_86 ._modeButton_1wo4v_142:focus-visible {
|
|
9544
|
+
outline: none;
|
|
9545
|
+
box-shadow: inset 0 calc(var(--fui-space-px, 1px) * -2) 0 var(--fui-text-primary, #212121);
|
|
9546
|
+
}
|
|
9547
|
+
._seamless_1wo4v_86 ._select_1wo4v_141[data-popup-open] {
|
|
9548
|
+
border-color: transparent;
|
|
9549
|
+
background-color: transparent;
|
|
9550
|
+
box-shadow: none;
|
|
9551
|
+
color: var(--fui-text-primary, #212121);
|
|
9552
|
+
}
|
|
9553
|
+
._seamless_1wo4v_86 ._select_1wo4v_141:focus:not(:focus-visible) {
|
|
9554
|
+
border-color: transparent;
|
|
9555
|
+
box-shadow: none;
|
|
9556
|
+
}
|
|
9557
|
+
._seamless_1wo4v_86 ._submit_1wo4v_173,
|
|
9558
|
+
._seamless_1wo4v_86 ._actionButton_1wo4v_174 {
|
|
9559
|
+
width: var(--fui-target-size-min);
|
|
9560
|
+
height: var(--fui-target-size-min);
|
|
9561
|
+
}
|
|
9562
|
+
._seamless_1wo4v_86 ._submit_1wo4v_173 svg,
|
|
9563
|
+
._seamless_1wo4v_86 ._actionButton_1wo4v_174 svg {
|
|
9564
|
+
width: var(--fui-icon-md, 1.143rem);
|
|
9565
|
+
height: var(--fui-icon-md, 1.143rem);
|
|
9566
|
+
}
|
|
9567
|
+
._seamless_1wo4v_86 ._submit_1wo4v_173 {
|
|
9568
|
+
margin-inline-end: var(--_control-padding);
|
|
9569
|
+
}
|
|
9570
|
+
|
|
9571
|
+
._textarea_1wo4v_107 {
|
|
9345
9572
|
appearance: none;
|
|
9346
9573
|
background: transparent;
|
|
9347
9574
|
border: none;
|
|
@@ -9351,10 +9578,10 @@
|
|
|
9351
9578
|
color: inherit;
|
|
9352
9579
|
cursor: pointer;
|
|
9353
9580
|
}
|
|
9354
|
-
.
|
|
9581
|
+
._textarea_1wo4v_107:disabled {
|
|
9355
9582
|
cursor: not-allowed;
|
|
9356
9583
|
}
|
|
9357
|
-
.
|
|
9584
|
+
._textarea_1wo4v_107 {
|
|
9358
9585
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
9359
9586
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
9360
9587
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -9371,18 +9598,18 @@
|
|
|
9371
9598
|
overflow-y: auto;
|
|
9372
9599
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
9373
9600
|
}
|
|
9374
|
-
.
|
|
9601
|
+
._textarea_1wo4v_107::placeholder {
|
|
9375
9602
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
9376
9603
|
}
|
|
9377
|
-
.
|
|
9604
|
+
._textarea_1wo4v_107:focus, ._textarea_1wo4v_107:focus-visible {
|
|
9378
9605
|
outline: none;
|
|
9379
9606
|
box-shadow: none;
|
|
9380
9607
|
}
|
|
9381
|
-
.
|
|
9608
|
+
._textarea_1wo4v_107:disabled {
|
|
9382
9609
|
cursor: not-allowed;
|
|
9383
9610
|
}
|
|
9384
9611
|
|
|
9385
|
-
.
|
|
9612
|
+
._tabs_1wo4v_115 {
|
|
9386
9613
|
display: flex;
|
|
9387
9614
|
justify-content: center;
|
|
9388
9615
|
margin-bottom: calc(-1 * var(--fui-space-1, 0.5rem));
|
|
@@ -9390,7 +9617,7 @@
|
|
|
9390
9617
|
z-index: 1;
|
|
9391
9618
|
}
|
|
9392
9619
|
|
|
9393
|
-
.
|
|
9620
|
+
._tabsInner_1wo4v_123 {
|
|
9394
9621
|
display: inline-flex;
|
|
9395
9622
|
gap: var(--fui-space-px, 1px);
|
|
9396
9623
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
@@ -9400,7 +9627,7 @@
|
|
|
9400
9627
|
border-bottom: none;
|
|
9401
9628
|
}
|
|
9402
9629
|
|
|
9403
|
-
.
|
|
9630
|
+
._tabButton_1wo4v_246 {
|
|
9404
9631
|
appearance: none;
|
|
9405
9632
|
background: transparent;
|
|
9406
9633
|
border: none;
|
|
@@ -9410,10 +9637,10 @@
|
|
|
9410
9637
|
color: inherit;
|
|
9411
9638
|
cursor: pointer;
|
|
9412
9639
|
}
|
|
9413
|
-
.
|
|
9640
|
+
._tabButton_1wo4v_246:disabled {
|
|
9414
9641
|
cursor: not-allowed;
|
|
9415
9642
|
}
|
|
9416
|
-
.
|
|
9643
|
+
._tabButton_1wo4v_246 {
|
|
9417
9644
|
display: flex;
|
|
9418
9645
|
align-items: center;
|
|
9419
9646
|
justify-content: center;
|
|
@@ -9425,16 +9652,16 @@
|
|
|
9425
9652
|
transition: color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9426
9653
|
white-space: nowrap;
|
|
9427
9654
|
}
|
|
9428
|
-
.
|
|
9655
|
+
._tabButton_1wo4v_246:hover {
|
|
9429
9656
|
color: var(--fui-text-primary, #212121);
|
|
9430
9657
|
}
|
|
9431
9658
|
|
|
9432
|
-
.
|
|
9659
|
+
._tabButtonActive_1wo4v_275 {
|
|
9433
9660
|
background-color: var(--fui-bg-secondary, #f4f4f4);
|
|
9434
9661
|
color: var(--fui-text-primary, #212121);
|
|
9435
9662
|
}
|
|
9436
9663
|
|
|
9437
|
-
.
|
|
9664
|
+
._toolbar_1wo4v_102 {
|
|
9438
9665
|
display: flex;
|
|
9439
9666
|
align-items: center;
|
|
9440
9667
|
justify-content: space-between;
|
|
@@ -9444,21 +9671,21 @@
|
|
|
9444
9671
|
border-top: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
9445
9672
|
}
|
|
9446
9673
|
|
|
9447
|
-
.
|
|
9674
|
+
._actions_1wo4v_290 {
|
|
9448
9675
|
display: flex;
|
|
9449
9676
|
align-items: center;
|
|
9450
9677
|
align-self: flex-end;
|
|
9451
9678
|
gap: var(--fui-space-1, 0.5rem);
|
|
9452
9679
|
}
|
|
9453
9680
|
|
|
9454
|
-
.
|
|
9681
|
+
._info_1wo4v_297 {
|
|
9455
9682
|
display: flex;
|
|
9456
9683
|
align-items: center;
|
|
9457
9684
|
gap: var(--fui-space-2, 1rem);
|
|
9458
9685
|
margin-left: auto;
|
|
9459
9686
|
}
|
|
9460
9687
|
|
|
9461
|
-
.
|
|
9688
|
+
._actionButton_1wo4v_174 {
|
|
9462
9689
|
appearance: none;
|
|
9463
9690
|
background: transparent;
|
|
9464
9691
|
border: none;
|
|
@@ -9468,21 +9695,21 @@
|
|
|
9468
9695
|
color: inherit;
|
|
9469
9696
|
cursor: pointer;
|
|
9470
9697
|
}
|
|
9471
|
-
.
|
|
9698
|
+
._actionButton_1wo4v_174:disabled {
|
|
9472
9699
|
cursor: not-allowed;
|
|
9473
9700
|
}
|
|
9474
|
-
.
|
|
9701
|
+
._actionButton_1wo4v_174 {
|
|
9475
9702
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9476
9703
|
}
|
|
9477
|
-
.
|
|
9704
|
+
._actionButton_1wo4v_174:focus-visible {
|
|
9478
9705
|
outline: none;
|
|
9479
9706
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
9480
9707
|
}
|
|
9481
|
-
.
|
|
9708
|
+
._actionButton_1wo4v_174:disabled, ._actionButton_1wo4v_174[data-disabled] {
|
|
9482
9709
|
opacity: 0.5;
|
|
9483
9710
|
pointer-events: none;
|
|
9484
9711
|
}
|
|
9485
|
-
.
|
|
9712
|
+
._actionButton_1wo4v_174 {
|
|
9486
9713
|
display: flex;
|
|
9487
9714
|
align-items: center;
|
|
9488
9715
|
justify-content: center;
|
|
@@ -9493,18 +9720,18 @@
|
|
|
9493
9720
|
color: var(--fui-text-primary, #212121);
|
|
9494
9721
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
9495
9722
|
}
|
|
9496
|
-
.
|
|
9723
|
+
._actionButton_1wo4v_174:hover:not(:disabled) {
|
|
9497
9724
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
9498
9725
|
}
|
|
9499
|
-
.
|
|
9726
|
+
._actionButton_1wo4v_174:active:not(:disabled) {
|
|
9500
9727
|
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
9501
9728
|
}
|
|
9502
|
-
.
|
|
9729
|
+
._actionButton_1wo4v_174 svg {
|
|
9503
9730
|
width: 1rem;
|
|
9504
9731
|
height: 1rem;
|
|
9505
9732
|
}
|
|
9506
9733
|
|
|
9507
|
-
.
|
|
9734
|
+
._modeButton_1wo4v_142 {
|
|
9508
9735
|
appearance: none;
|
|
9509
9736
|
background: transparent;
|
|
9510
9737
|
border: none;
|
|
@@ -9514,21 +9741,21 @@
|
|
|
9514
9741
|
color: inherit;
|
|
9515
9742
|
cursor: pointer;
|
|
9516
9743
|
}
|
|
9517
|
-
.
|
|
9744
|
+
._modeButton_1wo4v_142:disabled {
|
|
9518
9745
|
cursor: not-allowed;
|
|
9519
9746
|
}
|
|
9520
|
-
.
|
|
9747
|
+
._modeButton_1wo4v_142 {
|
|
9521
9748
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9522
9749
|
}
|
|
9523
|
-
.
|
|
9750
|
+
._modeButton_1wo4v_142:focus-visible {
|
|
9524
9751
|
outline: none;
|
|
9525
9752
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
9526
9753
|
}
|
|
9527
|
-
.
|
|
9754
|
+
._modeButton_1wo4v_142:disabled, ._modeButton_1wo4v_142[data-disabled] {
|
|
9528
9755
|
opacity: 0.5;
|
|
9529
9756
|
pointer-events: none;
|
|
9530
9757
|
}
|
|
9531
|
-
.
|
|
9758
|
+
._modeButton_1wo4v_142 {
|
|
9532
9759
|
display: flex;
|
|
9533
9760
|
align-items: center;
|
|
9534
9761
|
gap: var(--fui-space-1, 0.5rem);
|
|
@@ -9539,27 +9766,176 @@
|
|
|
9539
9766
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
9540
9767
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
9541
9768
|
}
|
|
9542
|
-
.
|
|
9769
|
+
._modeButton_1wo4v_142:hover:not(:disabled) {
|
|
9543
9770
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
9544
9771
|
color: var(--fui-text-primary, #212121);
|
|
9545
9772
|
}
|
|
9546
|
-
.
|
|
9773
|
+
._modeButton_1wo4v_142:active:not(:disabled) {
|
|
9547
9774
|
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
9548
9775
|
}
|
|
9549
9776
|
|
|
9550
|
-
.
|
|
9777
|
+
._modeButtonActive_1wo4v_393 {
|
|
9551
9778
|
color: var(--fui-text-primary, #212121);
|
|
9552
9779
|
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
9553
9780
|
}
|
|
9554
9781
|
|
|
9555
|
-
.
|
|
9782
|
+
._attach_1wo4v_110 {
|
|
9783
|
+
appearance: none;
|
|
9784
|
+
background: transparent;
|
|
9785
|
+
border: none;
|
|
9786
|
+
padding: 0;
|
|
9787
|
+
margin: 0;
|
|
9788
|
+
font: inherit;
|
|
9789
|
+
color: inherit;
|
|
9790
|
+
cursor: pointer;
|
|
9791
|
+
}
|
|
9792
|
+
._attach_1wo4v_110:disabled {
|
|
9793
|
+
cursor: not-allowed;
|
|
9794
|
+
}
|
|
9795
|
+
._attach_1wo4v_110 {
|
|
9796
|
+
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9797
|
+
}
|
|
9798
|
+
._attach_1wo4v_110:focus-visible {
|
|
9799
|
+
outline: none;
|
|
9800
|
+
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
9801
|
+
}
|
|
9802
|
+
._attach_1wo4v_110:disabled, ._attach_1wo4v_110[data-disabled] {
|
|
9803
|
+
opacity: 0.5;
|
|
9804
|
+
pointer-events: none;
|
|
9805
|
+
}
|
|
9806
|
+
._attach_1wo4v_110 {
|
|
9807
|
+
display: flex;
|
|
9808
|
+
align-items: center;
|
|
9809
|
+
justify-content: center;
|
|
9810
|
+
flex-shrink: 0;
|
|
9811
|
+
width: var(--fui-target-size-min, 2.286rem);
|
|
9812
|
+
height: var(--fui-target-size-min, 2.286rem);
|
|
9813
|
+
border-radius: var(--fui-radius-md, 0.429rem);
|
|
9814
|
+
background-color: transparent;
|
|
9815
|
+
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
9816
|
+
}
|
|
9817
|
+
._attach_1wo4v_110:hover:not(:disabled) {
|
|
9818
|
+
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
9819
|
+
color: var(--fui-text-primary, #212121);
|
|
9820
|
+
}
|
|
9821
|
+
._attach_1wo4v_110:active:not(:disabled) {
|
|
9822
|
+
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
9823
|
+
}
|
|
9824
|
+
._attach_1wo4v_110:disabled {
|
|
9825
|
+
opacity: 0.5;
|
|
9826
|
+
cursor: not-allowed;
|
|
9827
|
+
}
|
|
9828
|
+
._attach_1wo4v_110 svg {
|
|
9829
|
+
width: var(--fui-icon-sm, 1rem);
|
|
9830
|
+
height: var(--fui-icon-sm, 1rem);
|
|
9831
|
+
}
|
|
9832
|
+
|
|
9833
|
+
._attachments_1wo4v_110 {
|
|
9834
|
+
display: flex;
|
|
9835
|
+
flex-wrap: wrap;
|
|
9836
|
+
gap: var(--fui-space-1, 0.5rem);
|
|
9837
|
+
margin: 0;
|
|
9838
|
+
padding: var(--fui-space-2, 1rem) var(--fui-space-3, 1.5rem) 0;
|
|
9839
|
+
list-style: none;
|
|
9840
|
+
}
|
|
9841
|
+
|
|
9842
|
+
._attachment_1wo4v_110 {
|
|
9843
|
+
--_chip-height: var(--fui-target-size-min, 2.286rem);
|
|
9844
|
+
display: inline-flex;
|
|
9845
|
+
align-items: center;
|
|
9846
|
+
gap: var(--fui-space-1, 0.5rem);
|
|
9847
|
+
height: var(--_chip-height);
|
|
9848
|
+
max-width: 15rem;
|
|
9849
|
+
padding-inline: var(--fui-space-1, 0.5rem);
|
|
9850
|
+
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
9851
|
+
border-radius: var(--fui-radius-md, 0.429rem);
|
|
9852
|
+
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
9853
|
+
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
9854
|
+
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
9855
|
+
}
|
|
9856
|
+
|
|
9857
|
+
._attachmentThumb_1wo4v_473 {
|
|
9858
|
+
width: calc(var(--_chip-height) - var(--fui-space-1, 0.5rem));
|
|
9859
|
+
height: calc(var(--_chip-height) - var(--fui-space-1, 0.5rem));
|
|
9860
|
+
flex-shrink: 0;
|
|
9861
|
+
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
9862
|
+
object-fit: cover;
|
|
9863
|
+
}
|
|
9864
|
+
|
|
9865
|
+
._attachmentName_1wo4v_481 {
|
|
9866
|
+
flex: 1;
|
|
9867
|
+
min-width: 0;
|
|
9868
|
+
overflow: hidden;
|
|
9869
|
+
text-overflow: ellipsis;
|
|
9870
|
+
white-space: nowrap;
|
|
9871
|
+
}
|
|
9872
|
+
|
|
9873
|
+
._attachmentSize_1wo4v_489 {
|
|
9874
|
+
flex-shrink: 0;
|
|
9875
|
+
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
9876
|
+
font-variant-numeric: tabular-nums;
|
|
9877
|
+
}
|
|
9878
|
+
|
|
9879
|
+
._attachmentRemove_1wo4v_495 {
|
|
9880
|
+
appearance: none;
|
|
9881
|
+
background: transparent;
|
|
9882
|
+
border: none;
|
|
9883
|
+
padding: 0;
|
|
9884
|
+
margin: 0;
|
|
9885
|
+
font: inherit;
|
|
9886
|
+
color: inherit;
|
|
9887
|
+
cursor: pointer;
|
|
9888
|
+
}
|
|
9889
|
+
._attachmentRemove_1wo4v_495:disabled {
|
|
9890
|
+
cursor: not-allowed;
|
|
9891
|
+
}
|
|
9892
|
+
._attachmentRemove_1wo4v_495 {
|
|
9893
|
+
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9894
|
+
}
|
|
9895
|
+
._attachmentRemove_1wo4v_495:focus-visible {
|
|
9896
|
+
outline: none;
|
|
9897
|
+
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
9898
|
+
}
|
|
9899
|
+
._attachmentRemove_1wo4v_495:disabled, ._attachmentRemove_1wo4v_495[data-disabled] {
|
|
9900
|
+
opacity: 0.5;
|
|
9901
|
+
pointer-events: none;
|
|
9902
|
+
}
|
|
9903
|
+
._attachmentRemove_1wo4v_495 {
|
|
9904
|
+
display: flex;
|
|
9905
|
+
align-items: center;
|
|
9906
|
+
justify-content: center;
|
|
9907
|
+
flex-shrink: 0;
|
|
9908
|
+
width: calc(var(--_chip-height) - var(--fui-space-1, 0.5rem));
|
|
9909
|
+
height: calc(var(--_chip-height) - var(--fui-space-1, 0.5rem));
|
|
9910
|
+
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
9911
|
+
background-color: transparent;
|
|
9912
|
+
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
9913
|
+
}
|
|
9914
|
+
._attachmentRemove_1wo4v_495:hover {
|
|
9915
|
+
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
9916
|
+
color: var(--fui-text-primary, #212121);
|
|
9917
|
+
}
|
|
9918
|
+
._attachmentRemove_1wo4v_495 svg {
|
|
9919
|
+
width: var(--fui-icon-xs, 0.857rem);
|
|
9920
|
+
height: var(--fui-icon-xs, 0.857rem);
|
|
9921
|
+
}
|
|
9922
|
+
|
|
9923
|
+
._dragging_1wo4v_539 {
|
|
9924
|
+
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
9925
|
+
}
|
|
9926
|
+
|
|
9927
|
+
._select_1wo4v_141 {
|
|
9928
|
+
max-width: 15rem;
|
|
9929
|
+
}
|
|
9930
|
+
|
|
9931
|
+
._usage_1wo4v_547 {
|
|
9556
9932
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
9557
9933
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
9558
9934
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
9559
9935
|
white-space: nowrap;
|
|
9560
9936
|
}
|
|
9561
9937
|
|
|
9562
|
-
.
|
|
9938
|
+
._submit_1wo4v_173 {
|
|
9563
9939
|
appearance: none;
|
|
9564
9940
|
background: transparent;
|
|
9565
9941
|
border: none;
|
|
@@ -9569,56 +9945,56 @@
|
|
|
9569
9945
|
color: inherit;
|
|
9570
9946
|
cursor: pointer;
|
|
9571
9947
|
}
|
|
9572
|
-
.
|
|
9948
|
+
._submit_1wo4v_173:disabled {
|
|
9573
9949
|
cursor: not-allowed;
|
|
9574
9950
|
}
|
|
9575
|
-
.
|
|
9951
|
+
._submit_1wo4v_173 {
|
|
9576
9952
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9577
9953
|
}
|
|
9578
|
-
.
|
|
9954
|
+
._submit_1wo4v_173:focus-visible {
|
|
9579
9955
|
outline: none;
|
|
9580
9956
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
9581
9957
|
}
|
|
9582
|
-
.
|
|
9958
|
+
._submit_1wo4v_173:disabled, ._submit_1wo4v_173[data-disabled] {
|
|
9583
9959
|
opacity: 0.5;
|
|
9584
9960
|
pointer-events: none;
|
|
9585
9961
|
}
|
|
9586
|
-
.
|
|
9962
|
+
._submit_1wo4v_173 {
|
|
9587
9963
|
display: flex;
|
|
9588
9964
|
align-items: center;
|
|
9589
9965
|
justify-content: center;
|
|
9590
9966
|
width: 2rem;
|
|
9591
9967
|
height: 2rem;
|
|
9592
9968
|
border-radius: var(--fui-radius-full, 9999px);
|
|
9593
|
-
background-color: var(--fui-
|
|
9594
|
-
color: var(--fui-
|
|
9969
|
+
background-color: var(--fui-text-primary, #212121);
|
|
9970
|
+
color: var(--fui-bg-elevated, #ffffff);
|
|
9595
9971
|
}
|
|
9596
|
-
.
|
|
9597
|
-
background-color: var(--fui-
|
|
9972
|
+
._submit_1wo4v_173:hover:not(:disabled) {
|
|
9973
|
+
background-color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
9598
9974
|
}
|
|
9599
|
-
.
|
|
9600
|
-
background-color: var(--fui-
|
|
9975
|
+
._submit_1wo4v_173:active:not(:disabled) {
|
|
9976
|
+
background-color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
9601
9977
|
}
|
|
9602
|
-
.
|
|
9978
|
+
._submit_1wo4v_173:disabled {
|
|
9603
9979
|
opacity: 0.5;
|
|
9604
9980
|
cursor: not-allowed;
|
|
9605
9981
|
}
|
|
9606
|
-
.
|
|
9982
|
+
._submit_1wo4v_173 svg {
|
|
9607
9983
|
width: 1rem;
|
|
9608
9984
|
height: 1rem;
|
|
9609
9985
|
}
|
|
9610
9986
|
|
|
9611
|
-
.
|
|
9987
|
+
._submitLoading_1wo4v_603 {
|
|
9612
9988
|
pointer-events: none;
|
|
9613
9989
|
}
|
|
9614
9990
|
|
|
9615
|
-
.
|
|
9991
|
+
._submitSpinner_1wo4v_607 {
|
|
9616
9992
|
line-height: 0;
|
|
9617
|
-
}.
|
|
9993
|
+
}._container_1nldn_1 {
|
|
9618
9994
|
width: 100%;
|
|
9619
9995
|
}
|
|
9620
9996
|
|
|
9621
|
-
.
|
|
9997
|
+
._title_1nldn_5 {
|
|
9622
9998
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
9623
9999
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
9624
10000
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
@@ -9627,14 +10003,14 @@
|
|
|
9627
10003
|
margin-bottom: var(--fui-space-1, 0.5rem);
|
|
9628
10004
|
}
|
|
9629
10005
|
|
|
9630
|
-
.
|
|
10006
|
+
._wrapper_1nldn_14 {
|
|
9631
10007
|
position: relative;
|
|
9632
10008
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
9633
10009
|
overflow: hidden;
|
|
9634
10010
|
background-color: var(--fui-code-bg, #171717);
|
|
9635
10011
|
}
|
|
9636
10012
|
|
|
9637
|
-
.
|
|
10013
|
+
._header_1nldn_21 {
|
|
9638
10014
|
display: flex;
|
|
9639
10015
|
align-items: center;
|
|
9640
10016
|
justify-content: space-between;
|
|
@@ -9644,7 +10020,7 @@
|
|
|
9644
10020
|
min-height: var(--fui-input-height, 2.8571428571rem);
|
|
9645
10021
|
}
|
|
9646
10022
|
|
|
9647
|
-
.
|
|
10023
|
+
._filename_1nldn_31 {
|
|
9648
10024
|
font-family: var(--fui-font-mono, "JetBrains Mono Variable", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace);
|
|
9649
10025
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
9650
10026
|
font-weight: var(--fui-font-weight-normal, 400);
|
|
@@ -9652,7 +10028,7 @@
|
|
|
9652
10028
|
letter-spacing: 0.01em;
|
|
9653
10029
|
}
|
|
9654
10030
|
|
|
9655
|
-
.
|
|
10031
|
+
._copyButton_1nldn_39 {
|
|
9656
10032
|
appearance: none;
|
|
9657
10033
|
background: transparent;
|
|
9658
10034
|
border: none;
|
|
@@ -9662,10 +10038,10 @@
|
|
|
9662
10038
|
color: inherit;
|
|
9663
10039
|
cursor: pointer;
|
|
9664
10040
|
}
|
|
9665
|
-
.
|
|
10041
|
+
._copyButton_1nldn_39:disabled {
|
|
9666
10042
|
cursor: not-allowed;
|
|
9667
10043
|
}
|
|
9668
|
-
.
|
|
10044
|
+
._copyButton_1nldn_39 {
|
|
9669
10045
|
min-width: var(--fui-target-size-min, 2.286rem);
|
|
9670
10046
|
min-height: var(--fui-target-size-min, 2.286rem);
|
|
9671
10047
|
display: inline-flex;
|
|
@@ -9682,20 +10058,20 @@
|
|
|
9682
10058
|
cursor: pointer;
|
|
9683
10059
|
transition: background var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9684
10060
|
}
|
|
9685
|
-
.
|
|
10061
|
+
._copyButton_1nldn_39:hover {
|
|
9686
10062
|
color: var(--fui-code-tab-text-active, #e2e2e5);
|
|
9687
10063
|
background: var(--fui-code-copy-bg-hover, rgba(255, 255, 255, 0.12));
|
|
9688
10064
|
}
|
|
9689
|
-
.
|
|
10065
|
+
._copyButton_1nldn_39:focus-visible {
|
|
9690
10066
|
outline: none;
|
|
9691
10067
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
9692
10068
|
}
|
|
9693
|
-
.
|
|
10069
|
+
._copyButton_1nldn_39._copied_1nldn_77 {
|
|
9694
10070
|
color: var(--fui-color-success-text, rgb(29.9064810064, 108.5606699289, 89.7163569497));
|
|
9695
10071
|
opacity: 1;
|
|
9696
10072
|
}
|
|
9697
10073
|
|
|
9698
|
-
.
|
|
10074
|
+
._copyOverlay_1nldn_82 {
|
|
9699
10075
|
position: absolute;
|
|
9700
10076
|
top: var(--fui-space-2, 1rem);
|
|
9701
10077
|
right: var(--fui-space-2, 1rem);
|
|
@@ -9706,33 +10082,33 @@
|
|
|
9706
10082
|
transition: opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), background var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9707
10083
|
}
|
|
9708
10084
|
|
|
9709
|
-
.
|
|
9710
|
-
.
|
|
10085
|
+
._withCopyOverlay_1nldn_93:hover ._copyOverlay_1nldn_82,
|
|
10086
|
+
._withCopyOverlay_1nldn_93 ._copyOverlay_1nldn_82:focus-visible {
|
|
9711
10087
|
opacity: 1;
|
|
9712
10088
|
}
|
|
9713
|
-
.
|
|
10089
|
+
._withCopyOverlay_1nldn_93 ._copyOverlay_1nldn_82._copied_1nldn_77 {
|
|
9714
10090
|
opacity: 1;
|
|
9715
10091
|
}
|
|
9716
|
-
.
|
|
9717
|
-
.
|
|
10092
|
+
._withCopyOverlay_1nldn_93 ._codeContainer_1nldn_100 .shiki,
|
|
10093
|
+
._withCopyOverlay_1nldn_93 ._loading_1nldn_101 pre {
|
|
9718
10094
|
padding-right: calc(var(--fui-space-4, 2rem) + var(--fui-target-size-min, 2.286rem) + var(--fui-space-3, 1.5rem));
|
|
9719
10095
|
}
|
|
9720
10096
|
|
|
9721
|
-
.
|
|
10097
|
+
._icon_1nldn_105 {
|
|
9722
10098
|
flex-shrink: 0;
|
|
9723
10099
|
}
|
|
9724
10100
|
|
|
9725
|
-
.
|
|
10101
|
+
._persistentCopy_1nldn_109 {
|
|
9726
10102
|
top: 50%;
|
|
9727
10103
|
transform: translateY(-50%);
|
|
9728
10104
|
opacity: 1;
|
|
9729
10105
|
}
|
|
9730
10106
|
|
|
9731
|
-
.
|
|
10107
|
+
._persistentCopyWrapper_1nldn_115 ._copyOverlay_1nldn_82 {
|
|
9732
10108
|
opacity: 1;
|
|
9733
10109
|
}
|
|
9734
10110
|
|
|
9735
|
-
.
|
|
10111
|
+
._loading_1nldn_101 pre {
|
|
9736
10112
|
margin: 0;
|
|
9737
10113
|
padding: var(--fui-space-4, 2rem);
|
|
9738
10114
|
background-color: transparent !important;
|
|
@@ -9744,7 +10120,7 @@
|
|
|
9744
10120
|
color: var(--fui-code-text, #e2e2e5);
|
|
9745
10121
|
overflow-x: auto;
|
|
9746
10122
|
}
|
|
9747
|
-
.
|
|
10123
|
+
._loading_1nldn_101 code {
|
|
9748
10124
|
background: none !important;
|
|
9749
10125
|
padding: 0;
|
|
9750
10126
|
border: none;
|
|
@@ -9753,7 +10129,7 @@
|
|
|
9753
10129
|
font-size: inherit;
|
|
9754
10130
|
}
|
|
9755
10131
|
|
|
9756
|
-
.
|
|
10132
|
+
._codeContainer_1nldn_100 .shiki {
|
|
9757
10133
|
background-color: transparent !important;
|
|
9758
10134
|
margin: 0;
|
|
9759
10135
|
padding: var(--fui-space-4, 2rem);
|
|
@@ -9765,7 +10141,7 @@
|
|
|
9765
10141
|
overflow-x: auto;
|
|
9766
10142
|
tab-size: 2;
|
|
9767
10143
|
}
|
|
9768
|
-
.
|
|
10144
|
+
._codeContainer_1nldn_100 .shiki code {
|
|
9769
10145
|
background: none !important;
|
|
9770
10146
|
padding: 0;
|
|
9771
10147
|
border: none;
|
|
@@ -9774,18 +10150,18 @@
|
|
|
9774
10150
|
font-size: inherit;
|
|
9775
10151
|
counter-reset: line;
|
|
9776
10152
|
}
|
|
9777
|
-
.
|
|
10153
|
+
._codeContainer_1nldn_100 .line {
|
|
9778
10154
|
display: inline-block;
|
|
9779
10155
|
width: 100%;
|
|
9780
10156
|
min-height: calc(var(--fui-line-height-normal, 1.5) * 1em);
|
|
9781
10157
|
}
|
|
9782
|
-
.
|
|
10158
|
+
._codeContainer_1nldn_100 .line.highlighted {
|
|
9783
10159
|
background-color: var(--fui-code-highlight-bg, rgba(255, 255, 255, 0.06));
|
|
9784
10160
|
margin: 0 calc(-1 * var(--fui-space-4, 2rem));
|
|
9785
10161
|
padding: 0 var(--fui-space-4, 2rem);
|
|
9786
10162
|
border-left: 2px solid var(--fui-color-info-text, rgb(63.1782487843, 100.0730830678, 127.5349009142));
|
|
9787
10163
|
}
|
|
9788
|
-
.
|
|
10164
|
+
._codeContainer_1nldn_100 .line-number {
|
|
9789
10165
|
display: inline-block;
|
|
9790
10166
|
width: 2.5em;
|
|
9791
10167
|
padding-right: 1em;
|
|
@@ -9794,86 +10170,86 @@
|
|
|
9794
10170
|
user-select: none;
|
|
9795
10171
|
opacity: 0.6;
|
|
9796
10172
|
}
|
|
9797
|
-
.
|
|
10173
|
+
._codeContainer_1nldn_100 *::selection {
|
|
9798
10174
|
background: var(--fui-code-selection-bg, color-mix(in srgb, var(--fui-button-primary-base, #006b57) 30%, transparent));
|
|
9799
10175
|
color: var(--fui-code-tab-text-active, #e2e2e5);
|
|
9800
10176
|
}
|
|
9801
|
-
.
|
|
10177
|
+
._codeContainer_1nldn_100 .shiki::-webkit-scrollbar {
|
|
9802
10178
|
height: 4px;
|
|
9803
10179
|
}
|
|
9804
|
-
.
|
|
10180
|
+
._codeContainer_1nldn_100 .shiki::-webkit-scrollbar-track {
|
|
9805
10181
|
background: transparent;
|
|
9806
10182
|
}
|
|
9807
|
-
.
|
|
10183
|
+
._codeContainer_1nldn_100 .shiki::-webkit-scrollbar-thumb {
|
|
9808
10184
|
background: var(--fui-code-scrollbar-thumb, rgba(255, 255, 255, 0.1));
|
|
9809
10185
|
border-radius: var(--fui-radius-full, 9999px);
|
|
9810
10186
|
}
|
|
9811
|
-
.
|
|
10187
|
+
._codeContainer_1nldn_100 .shiki::-webkit-scrollbar-thumb:hover {
|
|
9812
10188
|
background: var(--fui-code-scrollbar-thumb-hover, rgba(255, 255, 255, 0.2));
|
|
9813
10189
|
}
|
|
9814
10190
|
|
|
9815
|
-
.
|
|
10191
|
+
._withLineNumbers_1nldn_199 ._codeContainer_1nldn_100 .shiki {
|
|
9816
10192
|
padding-left: var(--fui-space-2, 1rem);
|
|
9817
10193
|
}
|
|
9818
10194
|
|
|
9819
|
-
.
|
|
10195
|
+
._withDiff_1nldn_203 .diff-marker {
|
|
9820
10196
|
display: inline-block;
|
|
9821
10197
|
width: 1.5em;
|
|
9822
10198
|
text-align: center;
|
|
9823
10199
|
user-select: none;
|
|
9824
10200
|
color: var(--fui-code-text-muted, #8a8a9a);
|
|
9825
10201
|
}
|
|
9826
|
-
.
|
|
10202
|
+
._withDiff_1nldn_203 .diff-added {
|
|
9827
10203
|
background-color: var(--fui-color-success-bg, rgba(127, 201, 179, 0.1));
|
|
9828
10204
|
margin: 0 calc(-1 * var(--fui-space-4, 2rem));
|
|
9829
10205
|
padding: 0 var(--fui-space-4, 2rem);
|
|
9830
10206
|
}
|
|
9831
|
-
.
|
|
10207
|
+
._withDiff_1nldn_203 .diff-added .diff-marker {
|
|
9832
10208
|
color: var(--fui-color-success-text, rgb(29.9064810064, 108.5606699289, 89.7163569497));
|
|
9833
10209
|
}
|
|
9834
|
-
.
|
|
10210
|
+
._withDiff_1nldn_203 .diff-removed {
|
|
9835
10211
|
background-color: var(--fui-color-danger-bg, rgba(217, 112, 102, 0.1));
|
|
9836
10212
|
margin: 0 calc(-1 * var(--fui-space-4, 2rem));
|
|
9837
10213
|
padding: 0 var(--fui-space-4, 2rem);
|
|
9838
10214
|
}
|
|
9839
|
-
.
|
|
10215
|
+
._withDiff_1nldn_203 .diff-removed .diff-marker {
|
|
9840
10216
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
9841
10217
|
}
|
|
9842
10218
|
|
|
9843
|
-
.
|
|
10219
|
+
._compact_1nldn_227 ._wrapper_1nldn_14 {
|
|
9844
10220
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
9845
10221
|
}
|
|
9846
|
-
.
|
|
9847
|
-
.
|
|
10222
|
+
._compact_1nldn_227 ._codeContainer_1nldn_100 .shiki,
|
|
10223
|
+
._compact_1nldn_227 ._loading_1nldn_101 pre {
|
|
9848
10224
|
padding: var(--fui-space-2, 1rem) var(--fui-space-3, 1.5rem);
|
|
9849
10225
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
9850
10226
|
line-height: var(--fui-line-height-tight, 1.25);
|
|
9851
10227
|
}
|
|
9852
|
-
.
|
|
10228
|
+
._compact_1nldn_227 ._codeContainer_1nldn_100 .line {
|
|
9853
10229
|
min-height: calc(var(--fui-line-height-tight, 1.25) * 1em);
|
|
9854
10230
|
}
|
|
9855
|
-
.
|
|
9856
|
-
.
|
|
10231
|
+
._compact_1nldn_227 ._withCopyOverlay_1nldn_93 ._codeContainer_1nldn_100 .shiki,
|
|
10232
|
+
._compact_1nldn_227 ._withCopyOverlay_1nldn_93 ._loading_1nldn_101 pre {
|
|
9857
10233
|
padding-right: calc(var(--fui-space-3, 1.5rem) + var(--fui-target-size-min, 2.286rem) + var(--fui-space-3, 1.5rem));
|
|
9858
10234
|
}
|
|
9859
10235
|
|
|
9860
|
-
.
|
|
9861
|
-
.
|
|
10236
|
+
._wordWrap_1nldn_244 ._codeContainer_1nldn_100 .shiki,
|
|
10237
|
+
._wordWrap_1nldn_244 ._loading_1nldn_101 pre {
|
|
9862
10238
|
white-space: pre-wrap;
|
|
9863
10239
|
word-break: break-word;
|
|
9864
10240
|
}
|
|
9865
|
-
.
|
|
9866
|
-
display: block;
|
|
9867
|
-
width:
|
|
10241
|
+
._wordWrap_1nldn_244 .line {
|
|
10242
|
+
display: inline-block;
|
|
10243
|
+
width: 100%;
|
|
9868
10244
|
}
|
|
9869
10245
|
|
|
9870
|
-
.
|
|
10246
|
+
._caption_1nldn_254 {
|
|
9871
10247
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
9872
10248
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
9873
10249
|
margin-top: var(--fui-space-2, 1rem);
|
|
9874
10250
|
}
|
|
9875
10251
|
|
|
9876
|
-
.
|
|
10252
|
+
._collapseButton_1nldn_260 {
|
|
9877
10253
|
appearance: none;
|
|
9878
10254
|
background: transparent;
|
|
9879
10255
|
border: none;
|
|
@@ -9883,10 +10259,10 @@
|
|
|
9883
10259
|
color: inherit;
|
|
9884
10260
|
cursor: pointer;
|
|
9885
10261
|
}
|
|
9886
|
-
.
|
|
10262
|
+
._collapseButton_1nldn_260:disabled {
|
|
9887
10263
|
cursor: not-allowed;
|
|
9888
10264
|
}
|
|
9889
|
-
.
|
|
10265
|
+
._collapseButton_1nldn_260 {
|
|
9890
10266
|
display: flex;
|
|
9891
10267
|
align-items: center;
|
|
9892
10268
|
justify-content: center;
|
|
@@ -9902,21 +10278,21 @@
|
|
|
9902
10278
|
cursor: pointer;
|
|
9903
10279
|
transition: color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
9904
10280
|
}
|
|
9905
|
-
.
|
|
10281
|
+
._collapseButton_1nldn_260:hover {
|
|
9906
10282
|
color: var(--fui-code-tab-text-active, #e2e2e5);
|
|
9907
10283
|
}
|
|
9908
|
-
.
|
|
10284
|
+
._collapseButton_1nldn_260:focus-visible {
|
|
9909
10285
|
outline: var(--fui-focus-ring-width, 2px) solid var(--fui-focus-ring-color, #006b57);
|
|
9910
10286
|
outline-offset: calc(-1 * var(--fui-focus-ring-offset, 2px));
|
|
9911
10287
|
}
|
|
9912
10288
|
|
|
9913
10289
|
@media (max-width: 768px) {
|
|
9914
|
-
.
|
|
10290
|
+
._codeContainer_1nldn_100 .shiki {
|
|
9915
10291
|
font-size: var(--fui-font-size-2xs, 0.714rem);
|
|
9916
10292
|
padding: var(--fui-space-3, 1.5rem);
|
|
9917
10293
|
}
|
|
9918
10294
|
}
|
|
9919
|
-
.
|
|
10295
|
+
._tabbedPanel_1nldn_303 {
|
|
9920
10296
|
margin-top: 0;
|
|
9921
10297
|
}._icon_gw1xu_1 {
|
|
9922
10298
|
display: inline-flex;
|
|
@@ -10152,31 +10528,37 @@
|
|
|
10152
10528
|
|
|
10153
10529
|
._itemContent_13ive_64 {
|
|
10154
10530
|
flex: 1;
|
|
10155
|
-
}.
|
|
10531
|
+
}._listbox_1py8r_1 {
|
|
10156
10532
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
10157
10533
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
10158
10534
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
10159
10535
|
display: flex;
|
|
10160
10536
|
flex-direction: column;
|
|
10161
|
-
gap: 1px;
|
|
10162
|
-
padding: var(--fui-
|
|
10537
|
+
gap: var(--fui-popup-row-gap, 1px);
|
|
10538
|
+
padding: var(--fui-popup-padding, 0.5rem);
|
|
10163
10539
|
box-shadow: var(--fui-shadow-md, 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 3px -2px rgba(0, 0, 0, 0.03));
|
|
10164
|
-
--
|
|
10165
|
-
var(--fui-font-size
|
|
10540
|
+
--_popup-row-h: calc(
|
|
10541
|
+
var(--fui-popup-item-font-size, 0.857rem) *
|
|
10166
10542
|
var(--fui-line-height-normal, 1.5) +
|
|
10167
|
-
var(--fui-
|
|
10543
|
+
var(--fui-popup-item-padding-block, 0.5rem) * 2 +
|
|
10544
|
+
var(--fui-popup-row-gap, 1px)
|
|
10545
|
+
);
|
|
10546
|
+
--_popup-scroll-max-h: calc(
|
|
10547
|
+
var(--_popup-row-h) *
|
|
10548
|
+
var(--fui-select-max-items, 4.5) - var(--fui-popup-row-gap, 1px) +
|
|
10549
|
+
var(--fui-popup-padding, 0.5rem) * 2 + 2px
|
|
10168
10550
|
);
|
|
10169
10551
|
min-width: 12rem;
|
|
10170
|
-
max-height:
|
|
10552
|
+
max-height: var(--_popup-scroll-max-h);
|
|
10171
10553
|
overflow-y: auto;
|
|
10172
10554
|
border-color: var(--fui-form-group-border, rgba(0, 0, 0, 0.05));
|
|
10173
10555
|
}
|
|
10174
|
-
.
|
|
10556
|
+
._listbox_1py8r_1:focus-visible {
|
|
10175
10557
|
outline: none;
|
|
10176
10558
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
10177
10559
|
}
|
|
10178
10560
|
|
|
10179
|
-
.
|
|
10561
|
+
._item_1py8r_31 {
|
|
10180
10562
|
appearance: none;
|
|
10181
10563
|
background: transparent;
|
|
10182
10564
|
border: none;
|
|
@@ -10186,66 +10568,67 @@
|
|
|
10186
10568
|
color: inherit;
|
|
10187
10569
|
cursor: pointer;
|
|
10188
10570
|
}
|
|
10189
|
-
.
|
|
10571
|
+
._item_1py8r_31:disabled {
|
|
10190
10572
|
cursor: not-allowed;
|
|
10191
10573
|
}
|
|
10192
|
-
.
|
|
10574
|
+
._item_1py8r_31 {
|
|
10193
10575
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
10194
10576
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
10195
10577
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
10196
10578
|
color: var(--fui-text-primary, #212121);
|
|
10197
10579
|
-webkit-font-smoothing: antialiased;
|
|
10198
10580
|
-moz-osx-font-smoothing: grayscale;
|
|
10581
|
+
font-size: var(--fui-popup-item-font-size, 0.857rem);
|
|
10199
10582
|
display: flex;
|
|
10200
10583
|
align-items: center;
|
|
10201
10584
|
gap: var(--fui-space-1, 0.5rem);
|
|
10202
10585
|
width: 100%;
|
|
10203
|
-
padding: var(--fui-
|
|
10586
|
+
padding: var(--fui-popup-item-padding-block, 0.5rem) var(--fui-popup-item-padding-inline, 1rem);
|
|
10204
10587
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
10205
10588
|
cursor: pointer;
|
|
10206
10589
|
outline: none;
|
|
10207
10590
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
10208
10591
|
text-align: left;
|
|
10209
10592
|
}
|
|
10210
|
-
.
|
|
10593
|
+
._item_1py8r_31:hover, ._item_1py8r_31[data-highlighted] {
|
|
10211
10594
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
10212
10595
|
color: var(--fui-text-primary, #212121);
|
|
10213
10596
|
}
|
|
10214
|
-
.
|
|
10597
|
+
._item_1py8r_31:focus-visible {
|
|
10215
10598
|
outline: none;
|
|
10216
10599
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
10217
10600
|
}
|
|
10218
10601
|
|
|
10219
|
-
.
|
|
10602
|
+
._itemSelected_1py8r_72 {
|
|
10220
10603
|
background-color: var(--fui-field-selection-bg, var(--fui-bg-hover, rgba(0, 0, 0, 0.04)));
|
|
10221
10604
|
color: var(--fui-field-selection-color, var(--fui-text-primary, #212121));
|
|
10222
10605
|
box-shadow: inset 0 0 0 1px var(--fui-field-selection-border, var(--fui-color-accent, #006b57));
|
|
10223
10606
|
}
|
|
10224
10607
|
|
|
10225
|
-
.
|
|
10608
|
+
._itemActive_1py8r_78:not(._itemSelected_1py8r_72) {
|
|
10226
10609
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
10227
10610
|
color: var(--fui-text-primary, #212121);
|
|
10228
10611
|
}
|
|
10229
10612
|
|
|
10230
|
-
.
|
|
10613
|
+
._itemActive_1py8r_78._itemSelected_1py8r_72 {
|
|
10231
10614
|
background-color: var(--fui-field-selection-bg, var(--fui-bg-hover, rgba(0, 0, 0, 0.04)));
|
|
10232
10615
|
color: var(--fui-field-selection-color, var(--fui-text-primary, #212121));
|
|
10233
10616
|
box-shadow: inset 0 0 0 1px var(--fui-field-selection-border, var(--fui-color-accent, #006b57));
|
|
10234
10617
|
}
|
|
10235
10618
|
|
|
10236
|
-
.
|
|
10619
|
+
._itemDisabled_1py8r_89 {
|
|
10237
10620
|
opacity: 0.5;
|
|
10238
10621
|
pointer-events: none;
|
|
10239
10622
|
cursor: default;
|
|
10240
10623
|
}
|
|
10241
10624
|
|
|
10242
|
-
.
|
|
10625
|
+
._group_1py8r_95:not(:first-child) {
|
|
10243
10626
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
10244
10627
|
padding-top: var(--fui-space-1, 0.5rem);
|
|
10245
10628
|
border-top: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
10246
10629
|
}
|
|
10247
10630
|
|
|
10248
|
-
.
|
|
10631
|
+
._groupLabel_1py8r_101 {
|
|
10249
10632
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
10250
10633
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
10251
10634
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
@@ -10254,7 +10637,7 @@
|
|
|
10254
10637
|
letter-spacing: var(--fui-letter-spacing-wide, 0.05em);
|
|
10255
10638
|
}
|
|
10256
10639
|
|
|
10257
|
-
.
|
|
10640
|
+
._empty_1py8r_110 {
|
|
10258
10641
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
10259
10642
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
10260
10643
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -10267,11 +10650,11 @@
|
|
|
10267
10650
|
}
|
|
10268
10651
|
|
|
10269
10652
|
@media (prefers-contrast: more) {
|
|
10270
|
-
.
|
|
10653
|
+
._listbox_1py8r_1 {
|
|
10271
10654
|
border-width: 2px;
|
|
10272
10655
|
}
|
|
10273
|
-
.
|
|
10274
|
-
.
|
|
10656
|
+
._itemSelected_1py8r_72,
|
|
10657
|
+
._itemActive_1py8r_78 {
|
|
10275
10658
|
outline: 2px solid var(--fui-color-accent, #006b57);
|
|
10276
10659
|
outline-offset: -2px;
|
|
10277
10660
|
}
|
|
@@ -11248,7 +11631,7 @@
|
|
|
11248
11631
|
clip: rect(0, 0, 0, 0);
|
|
11249
11632
|
white-space: nowrap;
|
|
11250
11633
|
border-width: 0;
|
|
11251
|
-
}.
|
|
11634
|
+
}._markdown_1396t_1 {
|
|
11252
11635
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
11253
11636
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
11254
11637
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -11256,208 +11639,225 @@
|
|
|
11256
11639
|
-webkit-font-smoothing: antialiased;
|
|
11257
11640
|
-moz-osx-font-smoothing: grayscale;
|
|
11258
11641
|
word-wrap: break-word;
|
|
11259
|
-
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
11642
|
+
color: var(--fui-markdown-text, var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358)));
|
|
11260
11643
|
font-size: var(--fui-font-size-md, 1.071rem);
|
|
11261
11644
|
line-height: var(--fui-line-height-prose, 1.7);
|
|
11262
11645
|
}
|
|
11263
|
-
.
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
.
|
|
11267
|
-
|
|
11268
|
-
|
|
11646
|
+
._markdown_1396t_1 > :first-child {
|
|
11647
|
+
margin-top: 0;
|
|
11648
|
+
}
|
|
11649
|
+
._markdown_1396t_1 > :last-child {
|
|
11650
|
+
margin-bottom: 0;
|
|
11651
|
+
}
|
|
11652
|
+
._markdown_1396t_1 h1,
|
|
11653
|
+
._markdown_1396t_1 h2,
|
|
11654
|
+
._markdown_1396t_1 h3,
|
|
11655
|
+
._markdown_1396t_1 h4,
|
|
11656
|
+
._markdown_1396t_1 h5,
|
|
11657
|
+
._markdown_1396t_1 h6 {
|
|
11269
11658
|
margin-top: var(--fui-space-4, 2rem);
|
|
11270
11659
|
margin-bottom: var(--fui-space-2, 1rem);
|
|
11271
11660
|
font-weight: var(--fui-font-weight-semibold, 600);
|
|
11272
11661
|
line-height: var(--fui-line-height-tight, 1.25);
|
|
11273
11662
|
color: var(--fui-text-primary, #212121);
|
|
11274
11663
|
}
|
|
11275
|
-
.
|
|
11276
|
-
.
|
|
11277
|
-
.
|
|
11278
|
-
.
|
|
11279
|
-
.
|
|
11280
|
-
.
|
|
11664
|
+
._markdown_1396t_1 h1:first-child,
|
|
11665
|
+
._markdown_1396t_1 h2:first-child,
|
|
11666
|
+
._markdown_1396t_1 h3:first-child,
|
|
11667
|
+
._markdown_1396t_1 h4:first-child,
|
|
11668
|
+
._markdown_1396t_1 h5:first-child,
|
|
11669
|
+
._markdown_1396t_1 h6:first-child {
|
|
11281
11670
|
margin-top: 0;
|
|
11282
11671
|
}
|
|
11283
|
-
.
|
|
11672
|
+
._markdown_1396t_1 h1 {
|
|
11284
11673
|
font-size: var(--fui-font-size-3xl, 2.571rem);
|
|
11285
11674
|
line-height: var(--fui-line-height-display, 1.1);
|
|
11286
11675
|
letter-spacing: var(--fui-letter-spacing-display, 0);
|
|
11287
11676
|
}
|
|
11288
|
-
.
|
|
11677
|
+
._markdown_1396t_1 h2 {
|
|
11289
11678
|
font-size: var(--fui-font-size-xl, 1.714rem);
|
|
11290
11679
|
letter-spacing: var(--fui-letter-spacing-tight, 0);
|
|
11291
11680
|
margin-top: var(--fui-space-8, 4rem);
|
|
11292
11681
|
}
|
|
11293
|
-
.
|
|
11682
|
+
._markdown_1396t_1 h3 {
|
|
11294
11683
|
font-size: var(--fui-font-size-lg, 1.429rem);
|
|
11295
11684
|
letter-spacing: var(--fui-letter-spacing-tight, 0);
|
|
11296
11685
|
line-height: var(--fui-line-height-tight, 1.25);
|
|
11297
11686
|
}
|
|
11298
|
-
.
|
|
11687
|
+
._markdown_1396t_1 h4 {
|
|
11299
11688
|
font-size: var(--fui-font-size-md, 1.071rem);
|
|
11300
11689
|
}
|
|
11301
|
-
.
|
|
11302
|
-
.
|
|
11690
|
+
._markdown_1396t_1 h5,
|
|
11691
|
+
._markdown_1396t_1 h6 {
|
|
11303
11692
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
11304
11693
|
}
|
|
11305
|
-
.
|
|
11694
|
+
._markdown_1396t_1 p {
|
|
11306
11695
|
margin: 0;
|
|
11307
11696
|
line-height: var(--fui-line-height-prose, 1.7);
|
|
11308
11697
|
}
|
|
11309
|
-
.
|
|
11698
|
+
._markdown_1396t_1 p + p {
|
|
11310
11699
|
margin-top: var(--fui-space-3, 1.5rem);
|
|
11311
11700
|
}
|
|
11312
|
-
.
|
|
11701
|
+
._markdown_1396t_1 a {
|
|
11313
11702
|
color: var(--fui-color-accent, #006b57);
|
|
11314
11703
|
text-decoration: underline;
|
|
11315
11704
|
text-underline-offset: 2px;
|
|
11316
11705
|
}
|
|
11317
|
-
.
|
|
11706
|
+
._markdown_1396t_1 a:hover {
|
|
11318
11707
|
opacity: 0.8;
|
|
11319
11708
|
}
|
|
11320
|
-
.
|
|
11321
|
-
.
|
|
11709
|
+
._markdown_1396t_1 ul,
|
|
11710
|
+
._markdown_1396t_1 ol {
|
|
11322
11711
|
margin: var(--fui-space-2, 1rem) 0;
|
|
11323
11712
|
padding-left: var(--fui-space-4, 2rem);
|
|
11324
11713
|
}
|
|
11325
|
-
.
|
|
11714
|
+
._markdown_1396t_1 li {
|
|
11326
11715
|
margin-bottom: var(--fui-space-1, 0.5rem);
|
|
11327
11716
|
line-height: var(--fui-line-height-prose, 1.7);
|
|
11328
11717
|
}
|
|
11329
|
-
.
|
|
11718
|
+
._markdown_1396t_1 li:last-child {
|
|
11330
11719
|
margin-bottom: 0;
|
|
11331
11720
|
}
|
|
11332
|
-
.
|
|
11333
|
-
.
|
|
11721
|
+
._markdown_1396t_1 li > ul,
|
|
11722
|
+
._markdown_1396t_1 li > ol {
|
|
11334
11723
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
11335
11724
|
margin-bottom: 0;
|
|
11336
11725
|
}
|
|
11337
|
-
.
|
|
11726
|
+
._markdown_1396t_1 code {
|
|
11338
11727
|
font-family: var(--fui-font-mono, "JetBrains Mono Variable", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace);
|
|
11339
11728
|
font-size: 0.9em;
|
|
11340
11729
|
padding: 0.125em 0.375em;
|
|
11341
11730
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
11342
11731
|
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
11343
11732
|
}
|
|
11344
|
-
.
|
|
11733
|
+
._markdown_1396t_1 pre {
|
|
11345
11734
|
margin: var(--fui-space-2, 1rem) 0;
|
|
11346
11735
|
padding: var(--fui-space-2);
|
|
11347
11736
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
11348
11737
|
background-color: var(--fui-code-bg, #171717);
|
|
11349
11738
|
overflow-x: auto;
|
|
11350
11739
|
}
|
|
11351
|
-
.
|
|
11740
|
+
._markdown_1396t_1 pre code {
|
|
11352
11741
|
padding: 0;
|
|
11353
11742
|
background: none;
|
|
11354
11743
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
11355
11744
|
}
|
|
11356
|
-
.
|
|
11745
|
+
._markdown_1396t_1 div:has(> div > div > pre) {
|
|
11357
11746
|
margin: var(--fui-space-3, 1.5rem) 0;
|
|
11358
11747
|
}
|
|
11359
|
-
.
|
|
11748
|
+
._markdown_1396t_1 blockquote {
|
|
11360
11749
|
margin: var(--fui-space-2, 1rem) 0;
|
|
11361
11750
|
padding: var(--fui-space-1) var(--fui-space-3);
|
|
11362
11751
|
border-left: 3px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
11363
11752
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
11364
11753
|
}
|
|
11365
|
-
.
|
|
11754
|
+
._markdown_1396t_1 blockquote p {
|
|
11366
11755
|
margin: 0;
|
|
11367
11756
|
}
|
|
11368
|
-
.
|
|
11757
|
+
._markdown_1396t_1 hr {
|
|
11369
11758
|
margin: var(--fui-space-4, 2rem) 0;
|
|
11370
11759
|
border: none;
|
|
11371
11760
|
border-top: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
11372
11761
|
}
|
|
11373
|
-
.
|
|
11762
|
+
._markdown_1396t_1 table {
|
|
11374
11763
|
width: 100%;
|
|
11375
11764
|
margin: var(--fui-space-2, 1rem) 0;
|
|
11376
11765
|
border-collapse: collapse;
|
|
11377
11766
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
11378
11767
|
}
|
|
11379
|
-
.
|
|
11380
|
-
.
|
|
11768
|
+
._markdown_1396t_1 th,
|
|
11769
|
+
._markdown_1396t_1 td {
|
|
11381
11770
|
padding: var(--fui-space-1) var(--fui-space-2);
|
|
11382
11771
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
11383
11772
|
text-align: left;
|
|
11384
11773
|
}
|
|
11385
|
-
.
|
|
11774
|
+
._markdown_1396t_1 th {
|
|
11386
11775
|
font-weight: var(--fui-font-weight-semibold, 600);
|
|
11387
11776
|
background-color: var(--fui-bg-secondary, #f4f4f4);
|
|
11388
11777
|
}
|
|
11389
|
-
.
|
|
11778
|
+
._markdown_1396t_1 img {
|
|
11390
11779
|
max-width: 100%;
|
|
11391
11780
|
height: auto;
|
|
11392
11781
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
11393
11782
|
}
|
|
11394
|
-
.
|
|
11783
|
+
._markdown_1396t_1 input[type=checkbox] {
|
|
11395
11784
|
margin-right: var(--fui-space-1, 0.5rem);
|
|
11396
11785
|
}
|
|
11397
|
-
.
|
|
11786
|
+
._markdown_1396t_1 strong {
|
|
11398
11787
|
font-weight: var(--fui-font-weight-semibold, 600);
|
|
11399
11788
|
}
|
|
11400
|
-
.
|
|
11789
|
+
._markdown_1396t_1 > *:first-child {
|
|
11401
11790
|
margin-top: 0;
|
|
11402
11791
|
}
|
|
11403
|
-
.
|
|
11792
|
+
._markdown_1396t_1 > *:last-child {
|
|
11404
11793
|
margin-bottom: 0;
|
|
11405
|
-
}.
|
|
11794
|
+
}._message_1x3cg_1 {
|
|
11406
11795
|
display: flex;
|
|
11407
11796
|
gap: var(--fui-space-2, 1rem);
|
|
11408
11797
|
padding: var(--fui-space-2, 1rem);
|
|
11409
11798
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
11410
11799
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
11411
11800
|
}
|
|
11412
|
-
.
|
|
11801
|
+
._message_1x3cg_1:hover ._actions_1x3cg_8 {
|
|
11413
11802
|
opacity: 1;
|
|
11414
11803
|
}
|
|
11415
|
-
.
|
|
11804
|
+
._message_1x3cg_1:focus-within ._actions_1x3cg_8 {
|
|
11416
11805
|
opacity: 1;
|
|
11417
11806
|
}
|
|
11418
11807
|
|
|
11419
|
-
.
|
|
11808
|
+
._withoutAvatar_1x3cg_15 {
|
|
11809
|
+
padding-inline: 0;
|
|
11810
|
+
}
|
|
11811
|
+
._withoutAvatar_1x3cg_15._assistant_1x3cg_18 ._content_1x3cg_18 {
|
|
11812
|
+
padding: 0;
|
|
11813
|
+
}
|
|
11814
|
+
._withoutAvatar_1x3cg_15._user_1x3cg_21 ._content_1x3cg_18 {
|
|
11815
|
+
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
11816
|
+
}
|
|
11817
|
+
|
|
11818
|
+
._user_1x3cg_21 {
|
|
11420
11819
|
flex-direction: row-reverse;
|
|
11421
11820
|
margin-left: auto;
|
|
11422
11821
|
}
|
|
11423
|
-
.
|
|
11822
|
+
._user_1x3cg_21 ._body_1x3cg_29 {
|
|
11424
11823
|
align-items: flex-end;
|
|
11425
11824
|
}
|
|
11426
|
-
.
|
|
11427
|
-
|
|
11428
|
-
color: var(--fui-
|
|
11825
|
+
._user_1x3cg_21 ._content_1x3cg_18 {
|
|
11826
|
+
max-inline-size: 80%;
|
|
11827
|
+
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
11828
|
+
color: var(--fui-text-primary, #212121);
|
|
11429
11829
|
}
|
|
11430
11830
|
|
|
11431
|
-
.
|
|
11831
|
+
._assistant_1x3cg_18 ._content_1x3cg_18 {
|
|
11432
11832
|
background-color: var(--fui-bg-secondary, #f4f4f4);
|
|
11433
11833
|
color: var(--fui-text-primary, #212121);
|
|
11434
11834
|
}
|
|
11435
11835
|
|
|
11436
|
-
.
|
|
11836
|
+
._system_1x3cg_43 {
|
|
11437
11837
|
max-width: 100%;
|
|
11438
11838
|
justify-content: center;
|
|
11439
11839
|
}
|
|
11440
|
-
.
|
|
11840
|
+
._system_1x3cg_43 ._content_1x3cg_18 {
|
|
11441
11841
|
background-color: var(--fui-color-info-bg, rgba(127, 166, 196, 0.1));
|
|
11442
11842
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
11443
11843
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
11444
11844
|
text-align: center;
|
|
11445
11845
|
}
|
|
11446
|
-
.
|
|
11846
|
+
._system_1x3cg_43 ._avatar_1x3cg_53 {
|
|
11447
11847
|
display: none;
|
|
11448
11848
|
}
|
|
11449
11849
|
|
|
11450
|
-
.
|
|
11850
|
+
._error_1x3cg_57 ._content_1x3cg_18 {
|
|
11451
11851
|
background: var(--fui-color-danger-bg, rgba(217, 112, 102, 0.1));
|
|
11452
11852
|
border: 1px solid var(--fui-color-danger-border, color-mix(in srgb, rgb(162.7774064935, 63.3790672702, 56.4827894566) 30%, transparent));
|
|
11453
11853
|
color: var(--fui-color-danger-text, rgb(162.7774064935, 63.3790672702, 56.4827894566));
|
|
11454
11854
|
}
|
|
11455
11855
|
|
|
11456
|
-
.
|
|
11856
|
+
._sending_1x3cg_63 {
|
|
11457
11857
|
opacity: 0.7;
|
|
11458
11858
|
}
|
|
11459
11859
|
|
|
11460
|
-
.
|
|
11860
|
+
._avatar_1x3cg_53 {
|
|
11461
11861
|
flex-shrink: 0;
|
|
11462
11862
|
display: flex;
|
|
11463
11863
|
align-items: center;
|
|
@@ -11468,38 +11868,38 @@
|
|
|
11468
11868
|
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
11469
11869
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
11470
11870
|
}
|
|
11471
|
-
.
|
|
11871
|
+
._avatar_1x3cg_53 svg {
|
|
11472
11872
|
width: 1rem;
|
|
11473
11873
|
height: 1rem;
|
|
11474
11874
|
}
|
|
11475
11875
|
|
|
11476
|
-
.
|
|
11477
|
-
background-color: var(--fui-
|
|
11478
|
-
color: var(--fui-
|
|
11876
|
+
._avatarUser_1x3cg_83 {
|
|
11877
|
+
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
11878
|
+
color: var(--fui-text-primary, #212121);
|
|
11479
11879
|
}
|
|
11480
11880
|
|
|
11481
|
-
.
|
|
11881
|
+
._avatarAssistant_1x3cg_88 {
|
|
11482
11882
|
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
11483
11883
|
color: var(--fui-text-primary, #212121);
|
|
11484
11884
|
}
|
|
11485
11885
|
|
|
11486
|
-
.
|
|
11886
|
+
._avatarSystem_1x3cg_93 {
|
|
11487
11887
|
background-color: var(--fui-color-info-bg, rgba(127, 166, 196, 0.1));
|
|
11488
11888
|
color: var(--fui-color-info-text, rgb(63.1782487843, 100.0730830678, 127.5349009142));
|
|
11489
11889
|
}
|
|
11490
11890
|
|
|
11491
|
-
.
|
|
11891
|
+
._avatarImage_1x3cg_98 {
|
|
11492
11892
|
padding: 0;
|
|
11493
11893
|
overflow: hidden;
|
|
11494
11894
|
}
|
|
11495
11895
|
|
|
11496
|
-
.
|
|
11896
|
+
._avatarImg_1x3cg_103 {
|
|
11497
11897
|
width: 100%;
|
|
11498
11898
|
height: 100%;
|
|
11499
11899
|
object-fit: cover;
|
|
11500
11900
|
}
|
|
11501
11901
|
|
|
11502
|
-
.
|
|
11902
|
+
._body_1x3cg_29 {
|
|
11503
11903
|
display: flex;
|
|
11504
11904
|
flex-direction: column;
|
|
11505
11905
|
gap: var(--fui-space-1, 0.5rem);
|
|
@@ -11507,7 +11907,7 @@
|
|
|
11507
11907
|
flex: 1;
|
|
11508
11908
|
}
|
|
11509
11909
|
|
|
11510
|
-
.
|
|
11910
|
+
._content_1x3cg_18 {
|
|
11511
11911
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
11512
11912
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
11513
11913
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -11518,48 +11918,49 @@
|
|
|
11518
11918
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
11519
11919
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
11520
11920
|
word-wrap: break-word;
|
|
11921
|
+
--fui-markdown-text: currentColor;
|
|
11521
11922
|
}
|
|
11522
|
-
.
|
|
11923
|
+
._content_1x3cg_18 p {
|
|
11523
11924
|
margin: 0;
|
|
11524
11925
|
}
|
|
11525
|
-
.
|
|
11926
|
+
._content_1x3cg_18 p + p {
|
|
11526
11927
|
margin-top: var(--fui-space-2, 1rem);
|
|
11527
11928
|
}
|
|
11528
|
-
.
|
|
11929
|
+
._content_1x3cg_18 code {
|
|
11529
11930
|
font-family: var(--fui-font-mono, "JetBrains Mono Variable", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace);
|
|
11530
11931
|
font-size: 0.9em;
|
|
11531
11932
|
padding: 0.125em 0.375em;
|
|
11532
11933
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
11533
11934
|
background-color: var(--fui-bg-subtle, #fafafa);
|
|
11534
11935
|
}
|
|
11535
|
-
.
|
|
11936
|
+
._content_1x3cg_18 pre {
|
|
11536
11937
|
margin: var(--fui-space-2, 1rem) 0;
|
|
11537
11938
|
padding: var(--fui-space-2, 1rem);
|
|
11538
11939
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
11539
11940
|
background-color: var(--fui-bg-subtle, #fafafa);
|
|
11540
11941
|
overflow-x: auto;
|
|
11541
11942
|
}
|
|
11542
|
-
.
|
|
11943
|
+
._content_1x3cg_18 pre code {
|
|
11543
11944
|
padding: 0;
|
|
11544
11945
|
background: none;
|
|
11545
11946
|
}
|
|
11546
|
-
.
|
|
11547
|
-
.
|
|
11947
|
+
._content_1x3cg_18 ul,
|
|
11948
|
+
._content_1x3cg_18 ol {
|
|
11548
11949
|
margin: var(--fui-space-2, 1rem) 0;
|
|
11549
11950
|
padding-left: var(--fui-space-4, 2rem);
|
|
11550
11951
|
}
|
|
11551
11952
|
|
|
11552
|
-
.
|
|
11953
|
+
._streaming_1x3cg_160::after {
|
|
11553
11954
|
content: "";
|
|
11554
11955
|
display: inline-block;
|
|
11555
11956
|
width: 0.5em;
|
|
11556
11957
|
height: 1em;
|
|
11557
11958
|
margin-left: 2px;
|
|
11558
11959
|
background-color: currentColor;
|
|
11559
|
-
animation:
|
|
11960
|
+
animation: _blink_1x3cg_1 1s step-end infinite;
|
|
11560
11961
|
}
|
|
11561
11962
|
|
|
11562
|
-
@keyframes
|
|
11963
|
+
@keyframes _blink_1x3cg_1 {
|
|
11563
11964
|
0%, 100% {
|
|
11564
11965
|
opacity: 1;
|
|
11565
11966
|
}
|
|
@@ -11567,7 +11968,7 @@
|
|
|
11567
11968
|
opacity: 0;
|
|
11568
11969
|
}
|
|
11569
11970
|
}
|
|
11570
|
-
.
|
|
11971
|
+
._actions_1x3cg_8 {
|
|
11571
11972
|
display: flex;
|
|
11572
11973
|
align-items: center;
|
|
11573
11974
|
gap: var(--fui-space-1, 0.5rem);
|
|
@@ -11575,7 +11976,7 @@
|
|
|
11575
11976
|
transition: opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
11576
11977
|
}
|
|
11577
11978
|
|
|
11578
|
-
.
|
|
11979
|
+
._timestamp_1x3cg_186 {
|
|
11579
11980
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
11580
11981
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
11581
11982
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
@@ -11584,32 +11985,34 @@
|
|
|
11584
11985
|
}
|
|
11585
11986
|
|
|
11586
11987
|
@media (prefers-reduced-motion: reduce) {
|
|
11587
|
-
.
|
|
11988
|
+
._streaming_1x3cg_160::after {
|
|
11588
11989
|
animation: none;
|
|
11589
11990
|
}
|
|
11590
|
-
}.
|
|
11991
|
+
}._conversationList_zr7xl_1 {
|
|
11591
11992
|
display: flex;
|
|
11592
11993
|
flex-direction: column;
|
|
11593
11994
|
flex: 1;
|
|
11995
|
+
color: var(--fui-text-primary, #212121);
|
|
11594
11996
|
overflow-y: auto;
|
|
11595
11997
|
overflow-x: hidden;
|
|
11596
11998
|
scroll-behavior: smooth;
|
|
11597
11999
|
}
|
|
11598
12000
|
@media (prefers-reduced-motion: reduce) {
|
|
11599
|
-
.
|
|
12001
|
+
._conversationList_zr7xl_1 {
|
|
11600
12002
|
scroll-behavior: auto;
|
|
11601
12003
|
}
|
|
11602
12004
|
}
|
|
11603
12005
|
|
|
11604
|
-
.
|
|
12006
|
+
._content_zr7xl_16 {
|
|
11605
12007
|
display: flex;
|
|
11606
12008
|
flex-direction: column;
|
|
11607
12009
|
gap: var(--fui-space-2, 1rem);
|
|
11608
12010
|
padding: var(--fui-space-3, 1.5rem);
|
|
11609
12011
|
min-height: 100%;
|
|
12012
|
+
flex-shrink: 0;
|
|
11610
12013
|
}
|
|
11611
12014
|
|
|
11612
|
-
.
|
|
12015
|
+
._loadingHistory_zr7xl_25 {
|
|
11613
12016
|
display: flex;
|
|
11614
12017
|
align-items: center;
|
|
11615
12018
|
justify-content: center;
|
|
@@ -11619,16 +12022,16 @@
|
|
|
11619
12022
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
11620
12023
|
}
|
|
11621
12024
|
|
|
11622
|
-
.
|
|
11623
|
-
animation:
|
|
12025
|
+
._spinner_zr7xl_35 {
|
|
12026
|
+
animation: _spin_zr7xl_35 1s linear infinite;
|
|
11624
12027
|
}
|
|
11625
12028
|
@media (prefers-reduced-motion: reduce) {
|
|
11626
|
-
.
|
|
12029
|
+
._spinner_zr7xl_35 {
|
|
11627
12030
|
animation: none;
|
|
11628
12031
|
}
|
|
11629
12032
|
}
|
|
11630
12033
|
|
|
11631
|
-
@keyframes
|
|
12034
|
+
@keyframes _spin_zr7xl_35 {
|
|
11632
12035
|
from {
|
|
11633
12036
|
transform: rotate(0deg);
|
|
11634
12037
|
}
|
|
@@ -11636,20 +12039,20 @@
|
|
|
11636
12039
|
transform: rotate(360deg);
|
|
11637
12040
|
}
|
|
11638
12041
|
}
|
|
11639
|
-
.
|
|
12042
|
+
._dateSeparator_zr7xl_52 {
|
|
11640
12043
|
display: flex;
|
|
11641
12044
|
align-items: center;
|
|
11642
12045
|
gap: var(--fui-space-2, 1rem);
|
|
11643
12046
|
padding: var(--fui-space-2, 1rem) 0;
|
|
11644
12047
|
}
|
|
11645
12048
|
|
|
11646
|
-
.
|
|
12049
|
+
._dateSeparatorLine_zr7xl_59 {
|
|
11647
12050
|
flex: 1;
|
|
11648
12051
|
height: 1px;
|
|
11649
12052
|
background-color: var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
11650
12053
|
}
|
|
11651
12054
|
|
|
11652
|
-
.
|
|
12055
|
+
._dateSeparatorText_zr7xl_65 {
|
|
11653
12056
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
11654
12057
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
11655
12058
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
@@ -11660,14 +12063,18 @@
|
|
|
11660
12063
|
letter-spacing: var(--fui-letter-spacing-wide, 0.05em);
|
|
11661
12064
|
}
|
|
11662
12065
|
|
|
11663
|
-
.
|
|
12066
|
+
._typingIndicator_zr7xl_76 {
|
|
11664
12067
|
display: flex;
|
|
11665
12068
|
align-items: center;
|
|
11666
12069
|
gap: var(--fui-space-2, 1rem);
|
|
11667
12070
|
padding: var(--fui-space-2, 1rem);
|
|
11668
12071
|
}
|
|
11669
12072
|
|
|
11670
|
-
.
|
|
12073
|
+
._withoutAvatar_zr7xl_83 {
|
|
12074
|
+
padding-inline: 0;
|
|
12075
|
+
}
|
|
12076
|
+
|
|
12077
|
+
._typingAvatar_zr7xl_87 {
|
|
11671
12078
|
flex-shrink: 0;
|
|
11672
12079
|
display: flex;
|
|
11673
12080
|
align-items: center;
|
|
@@ -11678,12 +12085,12 @@
|
|
|
11678
12085
|
background-color: var(--fui-bg-tertiary, #f4f4f4);
|
|
11679
12086
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
11680
12087
|
}
|
|
11681
|
-
.
|
|
12088
|
+
._typingAvatar_zr7xl_87 svg {
|
|
11682
12089
|
width: 1rem;
|
|
11683
12090
|
height: 1rem;
|
|
11684
12091
|
}
|
|
11685
12092
|
|
|
11686
|
-
.
|
|
12093
|
+
._typingContent_zr7xl_103 {
|
|
11687
12094
|
display: flex;
|
|
11688
12095
|
align-items: center;
|
|
11689
12096
|
gap: calc(var(--fui-space-px, 1px) * 4);
|
|
@@ -11692,30 +12099,30 @@
|
|
|
11692
12099
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
11693
12100
|
}
|
|
11694
12101
|
|
|
11695
|
-
.
|
|
12102
|
+
._typingDot_zr7xl_112 {
|
|
11696
12103
|
width: 6px;
|
|
11697
12104
|
height: 6px;
|
|
11698
12105
|
border-radius: var(--fui-radius-full, 9999px);
|
|
11699
12106
|
background-color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
11700
|
-
animation:
|
|
12107
|
+
animation: _bounce_zr7xl_1 1.4s ease-in-out infinite;
|
|
11701
12108
|
}
|
|
11702
|
-
.
|
|
12109
|
+
._typingDot_zr7xl_112:nth-child(1) {
|
|
11703
12110
|
animation-delay: 0s;
|
|
11704
12111
|
}
|
|
11705
|
-
.
|
|
12112
|
+
._typingDot_zr7xl_112:nth-child(2) {
|
|
11706
12113
|
animation-delay: 0.2s;
|
|
11707
12114
|
}
|
|
11708
|
-
.
|
|
12115
|
+
._typingDot_zr7xl_112:nth-child(3) {
|
|
11709
12116
|
animation-delay: 0.4s;
|
|
11710
12117
|
}
|
|
11711
12118
|
@media (prefers-reduced-motion: reduce) {
|
|
11712
|
-
.
|
|
12119
|
+
._typingDot_zr7xl_112 {
|
|
11713
12120
|
animation: none;
|
|
11714
12121
|
opacity: 0.6;
|
|
11715
12122
|
}
|
|
11716
12123
|
}
|
|
11717
12124
|
|
|
11718
|
-
@keyframes
|
|
12125
|
+
@keyframes _bounce_zr7xl_1 {
|
|
11719
12126
|
0%, 60%, 100% {
|
|
11720
12127
|
transform: translateY(0);
|
|
11721
12128
|
opacity: 0.4;
|
|
@@ -11939,7 +12346,7 @@
|
|
|
11939
12346
|
._legendLabel_1up7w_119 {
|
|
11940
12347
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
11941
12348
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
11942
|
-
}.
|
|
12349
|
+
}._root_4ah1e_1 {
|
|
11943
12350
|
container-type: inline-size;
|
|
11944
12351
|
container-name: fui-navmenu;
|
|
11945
12352
|
position: relative;
|
|
@@ -11947,12 +12354,12 @@
|
|
|
11947
12354
|
align-items: center;
|
|
11948
12355
|
}
|
|
11949
12356
|
|
|
11950
|
-
.
|
|
12357
|
+
._rootVertical_4ah1e_9 {
|
|
11951
12358
|
flex-direction: column;
|
|
11952
12359
|
align-items: flex-start;
|
|
11953
12360
|
}
|
|
11954
12361
|
|
|
11955
|
-
.
|
|
12362
|
+
._list_4ah1e_14 {
|
|
11956
12363
|
display: flex;
|
|
11957
12364
|
align-items: center;
|
|
11958
12365
|
gap: var(--fui-space-1, 0.5rem);
|
|
@@ -11961,17 +12368,17 @@
|
|
|
11961
12368
|
padding: 0;
|
|
11962
12369
|
}
|
|
11963
12370
|
@media (max-width: 767px) {
|
|
11964
|
-
.
|
|
12371
|
+
._list_4ah1e_14 {
|
|
11965
12372
|
display: none;
|
|
11966
12373
|
}
|
|
11967
12374
|
}
|
|
11968
12375
|
|
|
11969
|
-
.
|
|
12376
|
+
._listVertical_4ah1e_28 {
|
|
11970
12377
|
flex-direction: column;
|
|
11971
12378
|
align-items: stretch;
|
|
11972
12379
|
}
|
|
11973
12380
|
|
|
11974
|
-
.
|
|
12381
|
+
._trigger_4ah1e_33 {
|
|
11975
12382
|
appearance: none;
|
|
11976
12383
|
background: transparent;
|
|
11977
12384
|
border: none;
|
|
@@ -11981,21 +12388,21 @@
|
|
|
11981
12388
|
color: inherit;
|
|
11982
12389
|
cursor: pointer;
|
|
11983
12390
|
}
|
|
11984
|
-
.
|
|
12391
|
+
._trigger_4ah1e_33:disabled {
|
|
11985
12392
|
cursor: not-allowed;
|
|
11986
12393
|
}
|
|
11987
|
-
.
|
|
12394
|
+
._trigger_4ah1e_33 {
|
|
11988
12395
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
11989
12396
|
}
|
|
11990
|
-
.
|
|
12397
|
+
._trigger_4ah1e_33:focus-visible {
|
|
11991
12398
|
outline: none;
|
|
11992
12399
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
11993
12400
|
}
|
|
11994
|
-
.
|
|
12401
|
+
._trigger_4ah1e_33:disabled, ._trigger_4ah1e_33[data-disabled] {
|
|
11995
12402
|
opacity: 0.5;
|
|
11996
12403
|
pointer-events: none;
|
|
11997
12404
|
}
|
|
11998
|
-
.
|
|
12405
|
+
._trigger_4ah1e_33 {
|
|
11999
12406
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12000
12407
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12001
12408
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -12012,26 +12419,26 @@
|
|
|
12012
12419
|
min-height: var(--fui-button-height-md, 2.8571428571rem);
|
|
12013
12420
|
cursor: pointer;
|
|
12014
12421
|
}
|
|
12015
|
-
.
|
|
12422
|
+
._trigger_4ah1e_33:hover {
|
|
12016
12423
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
12017
12424
|
color: var(--fui-text-primary, #212121);
|
|
12018
12425
|
}
|
|
12019
|
-
.
|
|
12426
|
+
._trigger_4ah1e_33:active {
|
|
12020
12427
|
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
12021
12428
|
}
|
|
12022
|
-
.
|
|
12429
|
+
._trigger_4ah1e_33[data-state=open] {
|
|
12023
12430
|
color: var(--fui-text-primary, #212121);
|
|
12024
12431
|
}
|
|
12025
12432
|
|
|
12026
|
-
.
|
|
12433
|
+
._triggerChevron_4ah1e_85 {
|
|
12027
12434
|
transition: transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12028
12435
|
flex-shrink: 0;
|
|
12029
12436
|
}
|
|
12030
|
-
[data-state=open] > .
|
|
12437
|
+
[data-state=open] > ._triggerChevron_4ah1e_85 {
|
|
12031
12438
|
transform: rotate(180deg);
|
|
12032
12439
|
}
|
|
12033
12440
|
|
|
12034
|
-
.
|
|
12441
|
+
._content_4ah1e_93 {
|
|
12035
12442
|
display: flex;
|
|
12036
12443
|
flex-direction: column;
|
|
12037
12444
|
gap: 1px;
|
|
@@ -12041,20 +12448,20 @@
|
|
|
12041
12448
|
width: 100%;
|
|
12042
12449
|
min-width: 180px;
|
|
12043
12450
|
}
|
|
12044
|
-
.
|
|
12045
|
-
animation:
|
|
12451
|
+
._content_4ah1e_93[data-motion=from-start] {
|
|
12452
|
+
animation: _slideFromStart_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease forwards;
|
|
12046
12453
|
}
|
|
12047
|
-
.
|
|
12048
|
-
animation:
|
|
12454
|
+
._content_4ah1e_93[data-motion=from-end] {
|
|
12455
|
+
animation: _slideFromEnd_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease forwards;
|
|
12049
12456
|
}
|
|
12050
|
-
.
|
|
12051
|
-
animation:
|
|
12457
|
+
._content_4ah1e_93[data-motion=to-start] {
|
|
12458
|
+
animation: _slideToStart_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease forwards;
|
|
12052
12459
|
}
|
|
12053
|
-
.
|
|
12054
|
-
animation:
|
|
12460
|
+
._content_4ah1e_93[data-motion=to-end] {
|
|
12461
|
+
animation: _slideToEnd_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease forwards;
|
|
12055
12462
|
}
|
|
12056
12463
|
|
|
12057
|
-
@keyframes
|
|
12464
|
+
@keyframes _slideFromStart_4ah1e_1 {
|
|
12058
12465
|
from {
|
|
12059
12466
|
opacity: 0;
|
|
12060
12467
|
transform: translateX(calc(-1 * 8px));
|
|
@@ -12064,7 +12471,7 @@
|
|
|
12064
12471
|
transform: translateX(0);
|
|
12065
12472
|
}
|
|
12066
12473
|
}
|
|
12067
|
-
@keyframes
|
|
12474
|
+
@keyframes _slideFromEnd_4ah1e_1 {
|
|
12068
12475
|
from {
|
|
12069
12476
|
opacity: 0;
|
|
12070
12477
|
transform: translateX(8px);
|
|
@@ -12074,7 +12481,7 @@
|
|
|
12074
12481
|
transform: translateX(0);
|
|
12075
12482
|
}
|
|
12076
12483
|
}
|
|
12077
|
-
@keyframes
|
|
12484
|
+
@keyframes _slideToStart_4ah1e_1 {
|
|
12078
12485
|
from {
|
|
12079
12486
|
opacity: 1;
|
|
12080
12487
|
transform: translateX(0);
|
|
@@ -12084,7 +12491,7 @@
|
|
|
12084
12491
|
transform: translateX(calc(-1 * 8px));
|
|
12085
12492
|
}
|
|
12086
12493
|
}
|
|
12087
|
-
@keyframes
|
|
12494
|
+
@keyframes _slideToEnd_4ah1e_1 {
|
|
12088
12495
|
from {
|
|
12089
12496
|
opacity: 1;
|
|
12090
12497
|
transform: translateX(0);
|
|
@@ -12094,7 +12501,7 @@
|
|
|
12094
12501
|
transform: translateX(8px);
|
|
12095
12502
|
}
|
|
12096
12503
|
}
|
|
12097
|
-
.
|
|
12504
|
+
._link_4ah1e_156 {
|
|
12098
12505
|
appearance: none;
|
|
12099
12506
|
background: transparent;
|
|
12100
12507
|
border: none;
|
|
@@ -12104,21 +12511,22 @@
|
|
|
12104
12511
|
color: inherit;
|
|
12105
12512
|
cursor: pointer;
|
|
12106
12513
|
}
|
|
12107
|
-
.
|
|
12514
|
+
._link_4ah1e_156:disabled {
|
|
12108
12515
|
cursor: not-allowed;
|
|
12109
12516
|
}
|
|
12110
|
-
.
|
|
12517
|
+
._link_4ah1e_156 {
|
|
12111
12518
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12112
12519
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12113
12520
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
12114
12521
|
color: var(--fui-text-primary, #212121);
|
|
12115
12522
|
-webkit-font-smoothing: antialiased;
|
|
12116
12523
|
-moz-osx-font-smoothing: grayscale;
|
|
12524
|
+
font-size: var(--fui-popup-item-font-size, 0.857rem);
|
|
12117
12525
|
display: flex;
|
|
12118
12526
|
align-items: center;
|
|
12119
12527
|
gap: var(--fui-space-1, 0.5rem);
|
|
12120
12528
|
width: 100%;
|
|
12121
|
-
padding: var(--fui-
|
|
12529
|
+
padding: var(--fui-popup-item-padding-block, 0.5rem) var(--fui-popup-item-padding-inline, 1rem);
|
|
12122
12530
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
12123
12531
|
cursor: pointer;
|
|
12124
12532
|
outline: none;
|
|
@@ -12126,22 +12534,22 @@
|
|
|
12126
12534
|
text-decoration: none;
|
|
12127
12535
|
white-space: nowrap;
|
|
12128
12536
|
}
|
|
12129
|
-
.
|
|
12537
|
+
._link_4ah1e_156:hover {
|
|
12130
12538
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
12131
12539
|
color: var(--fui-text-primary, #212121);
|
|
12132
12540
|
}
|
|
12133
|
-
.
|
|
12541
|
+
._link_4ah1e_156:focus-visible {
|
|
12134
12542
|
outline: none;
|
|
12135
12543
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
12136
12544
|
}
|
|
12137
12545
|
|
|
12138
|
-
.
|
|
12546
|
+
._linkActive_4ah1e_198 {
|
|
12139
12547
|
background-color: var(--fui-field-selection-bg, var(--fui-bg-hover, rgba(0, 0, 0, 0.04)));
|
|
12140
12548
|
color: var(--fui-color-accent, #006b57);
|
|
12141
12549
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
12142
12550
|
}
|
|
12143
12551
|
|
|
12144
|
-
.
|
|
12552
|
+
._linkStructured_4ah1e_204 {
|
|
12145
12553
|
display: flex;
|
|
12146
12554
|
gap: var(--fui-space-2, 1rem);
|
|
12147
12555
|
padding: var(--fui-space-2, 1rem) var(--fui-space-2, 1rem);
|
|
@@ -12149,12 +12557,12 @@
|
|
|
12149
12557
|
white-space: normal;
|
|
12150
12558
|
min-height: auto;
|
|
12151
12559
|
}
|
|
12152
|
-
.
|
|
12560
|
+
._linkStructured_4ah1e_204:hover {
|
|
12153
12561
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
12154
12562
|
color: var(--fui-text-primary, #212121);
|
|
12155
12563
|
}
|
|
12156
12564
|
|
|
12157
|
-
.
|
|
12565
|
+
._linkIcon_4ah1e_217 {
|
|
12158
12566
|
display: flex;
|
|
12159
12567
|
align-items: center;
|
|
12160
12568
|
justify-content: center;
|
|
@@ -12165,37 +12573,37 @@
|
|
|
12165
12573
|
margin-top: var(--fui-space-0-5, 0.15rem);
|
|
12166
12574
|
}
|
|
12167
12575
|
|
|
12168
|
-
.
|
|
12576
|
+
._linkBody_4ah1e_228 {
|
|
12169
12577
|
display: flex;
|
|
12170
12578
|
flex-direction: column;
|
|
12171
12579
|
gap: var(--fui-space-0-5, 0.15rem);
|
|
12172
12580
|
min-width: 0;
|
|
12173
12581
|
}
|
|
12174
12582
|
|
|
12175
|
-
.
|
|
12583
|
+
._linkTitle_4ah1e_235 {
|
|
12176
12584
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
12177
12585
|
color: var(--fui-text-primary, #212121);
|
|
12178
12586
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12179
12587
|
line-height: var(--fui-line-height-tight, 1.25);
|
|
12180
12588
|
}
|
|
12181
12589
|
|
|
12182
|
-
.
|
|
12590
|
+
._linkDescription_4ah1e_242 {
|
|
12183
12591
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
12184
12592
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
12185
12593
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
12186
12594
|
}
|
|
12187
12595
|
|
|
12188
|
-
.
|
|
12596
|
+
._linkFeatured_4ah1e_248 {
|
|
12189
12597
|
background-color: var(--fui-bg-secondary, #f4f4f4);
|
|
12190
12598
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
12191
12599
|
}
|
|
12192
|
-
.
|
|
12600
|
+
._linkFeatured_4ah1e_248:hover {
|
|
12193
12601
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
12194
12602
|
color: var(--fui-text-primary, #212121);
|
|
12195
12603
|
border-color: var(--fui-border-strong, rgba(0, 0, 0, 0.1));
|
|
12196
12604
|
}
|
|
12197
12605
|
|
|
12198
|
-
.
|
|
12606
|
+
._indicator_4ah1e_258 {
|
|
12199
12607
|
position: absolute;
|
|
12200
12608
|
bottom: 0;
|
|
12201
12609
|
height: 2px;
|
|
@@ -12205,7 +12613,7 @@
|
|
|
12205
12613
|
pointer-events: none;
|
|
12206
12614
|
}
|
|
12207
12615
|
|
|
12208
|
-
.
|
|
12616
|
+
._viewport_4ah1e_268 {
|
|
12209
12617
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
12210
12618
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
12211
12619
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
@@ -12221,23 +12629,23 @@
|
|
|
12221
12629
|
height: var(--fui-navmenu-viewport-height);
|
|
12222
12630
|
transition: opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12223
12631
|
}
|
|
12224
|
-
.
|
|
12632
|
+
._viewport_4ah1e_268[data-state=closed] {
|
|
12225
12633
|
opacity: 0;
|
|
12226
12634
|
pointer-events: none;
|
|
12227
12635
|
width: 0;
|
|
12228
12636
|
height: 0;
|
|
12229
12637
|
overflow: hidden;
|
|
12230
12638
|
}
|
|
12231
|
-
.
|
|
12639
|
+
._viewport_4ah1e_268[data-state=open] {
|
|
12232
12640
|
opacity: 1;
|
|
12233
12641
|
}
|
|
12234
12642
|
@media (max-width: 767px) {
|
|
12235
|
-
.
|
|
12643
|
+
._viewport_4ah1e_268 {
|
|
12236
12644
|
display: none;
|
|
12237
12645
|
}
|
|
12238
12646
|
}
|
|
12239
12647
|
|
|
12240
|
-
.
|
|
12648
|
+
._hamburger_4ah1e_300 {
|
|
12241
12649
|
appearance: none;
|
|
12242
12650
|
background: transparent;
|
|
12243
12651
|
border: none;
|
|
@@ -12247,21 +12655,21 @@
|
|
|
12247
12655
|
color: inherit;
|
|
12248
12656
|
cursor: pointer;
|
|
12249
12657
|
}
|
|
12250
|
-
.
|
|
12658
|
+
._hamburger_4ah1e_300:disabled {
|
|
12251
12659
|
cursor: not-allowed;
|
|
12252
12660
|
}
|
|
12253
|
-
.
|
|
12661
|
+
._hamburger_4ah1e_300 {
|
|
12254
12662
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12255
12663
|
}
|
|
12256
|
-
.
|
|
12664
|
+
._hamburger_4ah1e_300:focus-visible {
|
|
12257
12665
|
outline: none;
|
|
12258
12666
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
12259
12667
|
}
|
|
12260
|
-
.
|
|
12668
|
+
._hamburger_4ah1e_300:disabled, ._hamburger_4ah1e_300[data-disabled] {
|
|
12261
12669
|
opacity: 0.5;
|
|
12262
12670
|
pointer-events: none;
|
|
12263
12671
|
}
|
|
12264
|
-
.
|
|
12672
|
+
._hamburger_4ah1e_300 {
|
|
12265
12673
|
display: none;
|
|
12266
12674
|
align-items: center;
|
|
12267
12675
|
justify-content: center;
|
|
@@ -12271,28 +12679,28 @@
|
|
|
12271
12679
|
color: var(--fui-text-primary, #212121);
|
|
12272
12680
|
flex-shrink: 0;
|
|
12273
12681
|
}
|
|
12274
|
-
.
|
|
12682
|
+
._hamburger_4ah1e_300:hover {
|
|
12275
12683
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
12276
12684
|
}
|
|
12277
|
-
.
|
|
12685
|
+
._hamburger_4ah1e_300 svg {
|
|
12278
12686
|
width: var(--fui-icon-xl, 1.714rem);
|
|
12279
12687
|
height: var(--fui-icon-xl, 1.714rem);
|
|
12280
12688
|
}
|
|
12281
12689
|
@media (max-width: 767px) {
|
|
12282
|
-
.
|
|
12690
|
+
._hamburger_4ah1e_300 {
|
|
12283
12691
|
display: flex;
|
|
12284
12692
|
}
|
|
12285
12693
|
}
|
|
12286
12694
|
|
|
12287
|
-
.
|
|
12695
|
+
._drawerBackdrop_4ah1e_347 {
|
|
12288
12696
|
position: fixed;
|
|
12289
12697
|
inset: 0;
|
|
12290
12698
|
background: var(--fui-backdrop, rgba(0, 0, 0, 0.5));
|
|
12291
12699
|
z-index: calc(var(--fui-header-z-index, 40) + 10);
|
|
12292
|
-
animation:
|
|
12700
|
+
animation: _fadeIn_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease;
|
|
12293
12701
|
}
|
|
12294
12702
|
|
|
12295
|
-
.
|
|
12703
|
+
._drawer_4ah1e_347 {
|
|
12296
12704
|
position: fixed;
|
|
12297
12705
|
top: 0;
|
|
12298
12706
|
bottom: 0;
|
|
@@ -12304,21 +12712,21 @@
|
|
|
12304
12712
|
display: flex;
|
|
12305
12713
|
flex-direction: column;
|
|
12306
12714
|
overflow-y: auto;
|
|
12307
|
-
animation:
|
|
12715
|
+
animation: _slideInLeft_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease;
|
|
12308
12716
|
}
|
|
12309
12717
|
@media (min-width: 480px) {
|
|
12310
|
-
.
|
|
12718
|
+
._drawer_4ah1e_347 {
|
|
12311
12719
|
width: min(380px, 85vw);
|
|
12312
12720
|
}
|
|
12313
12721
|
}
|
|
12314
12722
|
|
|
12315
|
-
.
|
|
12723
|
+
._drawerRight_4ah1e_375 {
|
|
12316
12724
|
left: auto;
|
|
12317
12725
|
right: 0;
|
|
12318
|
-
animation:
|
|
12726
|
+
animation: _slideInRight_4ah1e_1 var(--fui-transition-normal, 200ms cubic-bezier(0.4, 0, 0.2, 1)) ease;
|
|
12319
12727
|
}
|
|
12320
12728
|
|
|
12321
|
-
.
|
|
12729
|
+
._drawerHeader_4ah1e_381 {
|
|
12322
12730
|
display: flex;
|
|
12323
12731
|
align-items: center;
|
|
12324
12732
|
justify-content: space-between;
|
|
@@ -12327,7 +12735,7 @@
|
|
|
12327
12735
|
min-height: var(--fui-appshell-header-height, 56px);
|
|
12328
12736
|
}
|
|
12329
12737
|
|
|
12330
|
-
.
|
|
12738
|
+
._drawerClose_4ah1e_390 {
|
|
12331
12739
|
appearance: none;
|
|
12332
12740
|
background: transparent;
|
|
12333
12741
|
border: none;
|
|
@@ -12337,21 +12745,21 @@
|
|
|
12337
12745
|
color: inherit;
|
|
12338
12746
|
cursor: pointer;
|
|
12339
12747
|
}
|
|
12340
|
-
.
|
|
12748
|
+
._drawerClose_4ah1e_390:disabled {
|
|
12341
12749
|
cursor: not-allowed;
|
|
12342
12750
|
}
|
|
12343
|
-
.
|
|
12751
|
+
._drawerClose_4ah1e_390 {
|
|
12344
12752
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), opacity var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12345
12753
|
}
|
|
12346
|
-
.
|
|
12754
|
+
._drawerClose_4ah1e_390:focus-visible {
|
|
12347
12755
|
outline: none;
|
|
12348
12756
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
12349
12757
|
}
|
|
12350
|
-
.
|
|
12758
|
+
._drawerClose_4ah1e_390:disabled, ._drawerClose_4ah1e_390[data-disabled] {
|
|
12351
12759
|
opacity: 0.5;
|
|
12352
12760
|
pointer-events: none;
|
|
12353
12761
|
}
|
|
12354
|
-
.
|
|
12762
|
+
._drawerClose_4ah1e_390 {
|
|
12355
12763
|
display: flex;
|
|
12356
12764
|
align-items: center;
|
|
12357
12765
|
justify-content: center;
|
|
@@ -12360,23 +12768,23 @@
|
|
|
12360
12768
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
12361
12769
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
12362
12770
|
}
|
|
12363
|
-
.
|
|
12771
|
+
._drawerClose_4ah1e_390:hover {
|
|
12364
12772
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
12365
12773
|
color: var(--fui-text-primary, #212121);
|
|
12366
12774
|
}
|
|
12367
12775
|
|
|
12368
|
-
.
|
|
12776
|
+
._drawerBody_4ah1e_428 {
|
|
12369
12777
|
flex: 1;
|
|
12370
12778
|
overflow-y: auto;
|
|
12371
12779
|
padding: var(--fui-space-2, 1rem) 0;
|
|
12372
12780
|
}
|
|
12373
12781
|
|
|
12374
|
-
.
|
|
12782
|
+
._drawerNav_4ah1e_434 {
|
|
12375
12783
|
display: flex;
|
|
12376
12784
|
flex-direction: column;
|
|
12377
12785
|
}
|
|
12378
12786
|
|
|
12379
|
-
.
|
|
12787
|
+
._drawerLink_4ah1e_439 {
|
|
12380
12788
|
appearance: none;
|
|
12381
12789
|
background: transparent;
|
|
12382
12790
|
border: none;
|
|
@@ -12386,10 +12794,10 @@
|
|
|
12386
12794
|
color: inherit;
|
|
12387
12795
|
cursor: pointer;
|
|
12388
12796
|
}
|
|
12389
|
-
.
|
|
12797
|
+
._drawerLink_4ah1e_439:disabled {
|
|
12390
12798
|
cursor: not-allowed;
|
|
12391
12799
|
}
|
|
12392
|
-
.
|
|
12800
|
+
._drawerLink_4ah1e_439 {
|
|
12393
12801
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12394
12802
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12395
12803
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -12405,12 +12813,12 @@
|
|
|
12405
12813
|
min-height: var(--fui-sidebar-item-height, 2.2857142857rem);
|
|
12406
12814
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12407
12815
|
}
|
|
12408
|
-
.
|
|
12816
|
+
._drawerLink_4ah1e_439:hover {
|
|
12409
12817
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
12410
12818
|
color: var(--fui-text-primary, #212121);
|
|
12411
12819
|
}
|
|
12412
12820
|
|
|
12413
|
-
.
|
|
12821
|
+
._drawerSectionLabel_4ah1e_473 {
|
|
12414
12822
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12415
12823
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
12416
12824
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
@@ -12421,7 +12829,7 @@
|
|
|
12421
12829
|
padding: var(--fui-space-2, 1rem) var(--fui-space-4, 2rem) var(--fui-space-1, 0.5rem);
|
|
12422
12830
|
}
|
|
12423
12831
|
|
|
12424
|
-
.
|
|
12832
|
+
._drawerCollapsibleTrigger_4ah1e_484 {
|
|
12425
12833
|
appearance: none;
|
|
12426
12834
|
background: transparent;
|
|
12427
12835
|
border: none;
|
|
@@ -12431,10 +12839,10 @@
|
|
|
12431
12839
|
color: inherit;
|
|
12432
12840
|
cursor: pointer;
|
|
12433
12841
|
}
|
|
12434
|
-
.
|
|
12842
|
+
._drawerCollapsibleTrigger_4ah1e_484:disabled {
|
|
12435
12843
|
cursor: not-allowed;
|
|
12436
12844
|
}
|
|
12437
|
-
.
|
|
12845
|
+
._drawerCollapsibleTrigger_4ah1e_484 {
|
|
12438
12846
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12439
12847
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12440
12848
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -12451,24 +12859,24 @@
|
|
|
12451
12859
|
min-height: var(--fui-sidebar-item-height, 2.2857142857rem);
|
|
12452
12860
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12453
12861
|
}
|
|
12454
|
-
.
|
|
12862
|
+
._drawerCollapsibleTrigger_4ah1e_484:hover {
|
|
12455
12863
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
12456
12864
|
}
|
|
12457
12865
|
|
|
12458
|
-
.
|
|
12866
|
+
._drawerCollapsibleChevron_4ah1e_518 {
|
|
12459
12867
|
transition: transform var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12460
12868
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
12461
12869
|
flex-shrink: 0;
|
|
12462
12870
|
}
|
|
12463
|
-
.
|
|
12871
|
+
._drawerCollapsibleChevron_4ah1e_518[data-open=true] {
|
|
12464
12872
|
transform: rotate(90deg);
|
|
12465
12873
|
}
|
|
12466
12874
|
|
|
12467
|
-
.
|
|
12875
|
+
._drawerCollapsibleContent_4ah1e_527 {
|
|
12468
12876
|
padding-left: var(--fui-space-2, 1rem);
|
|
12469
12877
|
}
|
|
12470
12878
|
|
|
12471
|
-
@keyframes
|
|
12879
|
+
@keyframes _fadeIn_4ah1e_1 {
|
|
12472
12880
|
from {
|
|
12473
12881
|
opacity: 0;
|
|
12474
12882
|
}
|
|
@@ -12476,7 +12884,7 @@
|
|
|
12476
12884
|
opacity: 1;
|
|
12477
12885
|
}
|
|
12478
12886
|
}
|
|
12479
|
-
@keyframes
|
|
12887
|
+
@keyframes _slideInLeft_4ah1e_1 {
|
|
12480
12888
|
from {
|
|
12481
12889
|
transform: translateX(-100%);
|
|
12482
12890
|
}
|
|
@@ -12484,7 +12892,7 @@
|
|
|
12484
12892
|
transform: translateX(0);
|
|
12485
12893
|
}
|
|
12486
12894
|
}
|
|
12487
|
-
@keyframes
|
|
12895
|
+
@keyframes _slideInRight_4ah1e_1 {
|
|
12488
12896
|
from {
|
|
12489
12897
|
transform: translateX(100%);
|
|
12490
12898
|
}
|
|
@@ -12493,23 +12901,23 @@
|
|
|
12493
12901
|
}
|
|
12494
12902
|
}
|
|
12495
12903
|
@media (prefers-reduced-motion: reduce) {
|
|
12496
|
-
.
|
|
12904
|
+
._content_4ah1e_93 {
|
|
12497
12905
|
animation: none;
|
|
12498
12906
|
}
|
|
12499
|
-
.
|
|
12907
|
+
._viewport_4ah1e_268 {
|
|
12500
12908
|
transition: none;
|
|
12501
12909
|
}
|
|
12502
|
-
.
|
|
12910
|
+
._triggerChevron_4ah1e_85 {
|
|
12503
12911
|
transition: none;
|
|
12504
12912
|
}
|
|
12505
|
-
.
|
|
12913
|
+
._indicator_4ah1e_258 {
|
|
12506
12914
|
transition: none;
|
|
12507
12915
|
}
|
|
12508
|
-
.
|
|
12509
|
-
.
|
|
12916
|
+
._drawer_4ah1e_347,
|
|
12917
|
+
._drawerBackdrop_4ah1e_347 {
|
|
12510
12918
|
animation: none;
|
|
12511
12919
|
}
|
|
12512
|
-
.
|
|
12920
|
+
._drawerCollapsibleChevron_4ah1e_518 {
|
|
12513
12921
|
transition: none;
|
|
12514
12922
|
}
|
|
12515
12923
|
}._backdrop_1qta8_1 {
|
|
@@ -12757,13 +13165,13 @@
|
|
|
12757
13165
|
._popup_1qta8_26[data-starting-style], ._popup_1qta8_26[data-ending-style] {
|
|
12758
13166
|
transform: none;
|
|
12759
13167
|
}
|
|
12760
|
-
}.
|
|
13168
|
+
}._pagination_lk556_1 {
|
|
12761
13169
|
display: flex;
|
|
12762
13170
|
align-items: center;
|
|
12763
13171
|
justify-content: center;
|
|
12764
13172
|
}
|
|
12765
13173
|
|
|
12766
|
-
.
|
|
13174
|
+
._list_lk556_7 {
|
|
12767
13175
|
display: flex;
|
|
12768
13176
|
align-items: center;
|
|
12769
13177
|
gap: var(--fui-space-1, 0.5rem);
|
|
@@ -12772,7 +13180,7 @@
|
|
|
12772
13180
|
padding: 0;
|
|
12773
13181
|
}
|
|
12774
13182
|
|
|
12775
|
-
.
|
|
13183
|
+
._item_lk556_16 {
|
|
12776
13184
|
appearance: none;
|
|
12777
13185
|
background: transparent;
|
|
12778
13186
|
border: none;
|
|
@@ -12782,10 +13190,10 @@
|
|
|
12782
13190
|
color: inherit;
|
|
12783
13191
|
cursor: pointer;
|
|
12784
13192
|
}
|
|
12785
|
-
.
|
|
13193
|
+
._item_lk556_16:disabled {
|
|
12786
13194
|
cursor: not-allowed;
|
|
12787
13195
|
}
|
|
12788
|
-
.
|
|
13196
|
+
._item_lk556_16 {
|
|
12789
13197
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12790
13198
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12791
13199
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -12805,34 +13213,35 @@
|
|
|
12805
13213
|
cursor: pointer;
|
|
12806
13214
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12807
13215
|
}
|
|
12808
|
-
.
|
|
13216
|
+
._item_lk556_16:hover:not(:disabled) {
|
|
12809
13217
|
background-color: var(--fui-bg-hover, rgba(0, 0, 0, 0.04));
|
|
12810
13218
|
}
|
|
12811
|
-
.
|
|
13219
|
+
._item_lk556_16:focus-visible {
|
|
12812
13220
|
outline: none;
|
|
12813
13221
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
12814
13222
|
}
|
|
12815
13223
|
|
|
12816
|
-
.
|
|
12817
|
-
background-color: var(--fui-
|
|
12818
|
-
color: var(--fui-
|
|
13224
|
+
._itemActive_lk556_57 {
|
|
13225
|
+
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
13226
|
+
color: var(--fui-text-primary, #212121);
|
|
13227
|
+
font-weight: var(--fui-font-weight-semibold, 600);
|
|
12819
13228
|
}
|
|
12820
|
-
.
|
|
12821
|
-
background-color: var(--fui-
|
|
13229
|
+
._itemActive_lk556_57:hover:not(:disabled) {
|
|
13230
|
+
background-color: var(--fui-bg-active, rgba(0, 0, 0, 0.06));
|
|
12822
13231
|
}
|
|
12823
13232
|
|
|
12824
|
-
.
|
|
13233
|
+
._itemDisabled_lk556_66 {
|
|
12825
13234
|
opacity: 0.5;
|
|
12826
13235
|
cursor: not-allowed;
|
|
12827
13236
|
pointer-events: none;
|
|
12828
13237
|
}
|
|
12829
13238
|
|
|
12830
|
-
.
|
|
13239
|
+
._navButton_lk556_72 svg {
|
|
12831
13240
|
width: var(--fui-icon-sm, 1rem);
|
|
12832
13241
|
height: var(--fui-icon-sm, 1rem);
|
|
12833
13242
|
}
|
|
12834
13243
|
|
|
12835
|
-
.
|
|
13244
|
+
._ellipsis_lk556_77 {
|
|
12836
13245
|
display: inline-flex;
|
|
12837
13246
|
align-items: center;
|
|
12838
13247
|
justify-content: center;
|
|
@@ -12844,11 +13253,11 @@
|
|
|
12844
13253
|
}
|
|
12845
13254
|
|
|
12846
13255
|
@media (prefers-contrast: more) {
|
|
12847
|
-
.
|
|
12848
|
-
outline: 2px solid var(--fui-
|
|
13256
|
+
._itemActive_lk556_57 {
|
|
13257
|
+
outline: 2px solid var(--fui-text-primary, #212121);
|
|
12849
13258
|
outline-offset: -2px;
|
|
12850
13259
|
}
|
|
12851
|
-
}.
|
|
13260
|
+
}._command_18jdg_1 {
|
|
12852
13261
|
background-color: var(--fui-bg-elevated, #ffffff);
|
|
12853
13262
|
border: 1px solid var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
12854
13263
|
border-radius: var(--fui-radius-lg, 0.571rem);
|
|
@@ -12858,23 +13267,23 @@
|
|
|
12858
13267
|
box-shadow: var(--fui-shadow-md, 0 2px 4px -1px rgba(0, 0, 0, 0.04), 0 1px 3px -2px rgba(0, 0, 0, 0.03));
|
|
12859
13268
|
}
|
|
12860
13269
|
|
|
12861
|
-
.
|
|
13270
|
+
._inputWrapper_18jdg_11 {
|
|
12862
13271
|
background-color: var(--fui-field-bg, transparent);
|
|
12863
13272
|
border: 1px solid var(--fui-field-border, var(--fui-border-strong, rgba(0, 0, 0, 0.1)));
|
|
12864
13273
|
border-radius: var(--fui-radius-md, 0.429rem);
|
|
12865
13274
|
transition: background-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), border-color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), box-shadow var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94)), color var(--fui-transition-fast, 160ms cubic-bezier(0.25, 0.46, 0.45, 0.94));
|
|
12866
13275
|
}
|
|
12867
|
-
.
|
|
13276
|
+
._inputWrapper_18jdg_11:hover:not(:disabled):not([data-disabled]):not(:focus-visible) {
|
|
12868
13277
|
border-color: var(--fui-field-border-hover, var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852)));
|
|
12869
13278
|
}
|
|
12870
|
-
.
|
|
13279
|
+
._inputWrapper_18jdg_11:focus:not(:disabled):not([data-disabled]) {
|
|
12871
13280
|
border-color: var(--fui-field-border-focus, var(--fui-color-accent, #006b57));
|
|
12872
13281
|
}
|
|
12873
|
-
.
|
|
13282
|
+
._inputWrapper_18jdg_11:disabled, ._inputWrapper_18jdg_11[data-disabled] {
|
|
12874
13283
|
background-color: var(--fui-field-bg-disabled, var(--fui-bg-tertiary, #f4f4f4));
|
|
12875
13284
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
12876
13285
|
}
|
|
12877
|
-
.
|
|
13286
|
+
._inputWrapper_18jdg_11 {
|
|
12878
13287
|
display: flex;
|
|
12879
13288
|
align-items: center;
|
|
12880
13289
|
gap: var(--fui-space-2, 1rem);
|
|
@@ -12882,19 +13291,19 @@
|
|
|
12882
13291
|
margin: var(--fui-space-2, 1rem);
|
|
12883
13292
|
height: var(--fui-input-height, 2.8571428571rem);
|
|
12884
13293
|
}
|
|
12885
|
-
.
|
|
13294
|
+
._inputWrapper_18jdg_11:focus-within {
|
|
12886
13295
|
outline: none;
|
|
12887
13296
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 28%, transparent), 0 0 0 calc(var(--fui-focus-ring-width, 2px) + 1px) color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 12%, transparent), 0 10px 24px -16px color-mix(in srgb, var(--fui-focus-ring-color, #006b57) 32%, transparent);
|
|
12888
13297
|
border-color: var(--fui-field-border-focus, var(--fui-color-accent, #006b57));
|
|
12889
13298
|
}
|
|
12890
|
-
.
|
|
13299
|
+
._inputWrapper_18jdg_11 svg {
|
|
12891
13300
|
flex-shrink: 0;
|
|
12892
13301
|
width: 1rem;
|
|
12893
13302
|
height: 1rem;
|
|
12894
13303
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
12895
13304
|
}
|
|
12896
13305
|
|
|
12897
|
-
.
|
|
13306
|
+
._input_18jdg_11 {
|
|
12898
13307
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12899
13308
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12900
13309
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
@@ -12909,21 +13318,21 @@
|
|
|
12909
13318
|
color: var(--fui-text-primary, #212121);
|
|
12910
13319
|
padding: 0;
|
|
12911
13320
|
}
|
|
12912
|
-
.
|
|
13321
|
+
._input_18jdg_11::placeholder {
|
|
12913
13322
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
12914
13323
|
}
|
|
12915
|
-
.
|
|
13324
|
+
._input_18jdg_11:focus, ._input_18jdg_11:focus-visible {
|
|
12916
13325
|
outline: none;
|
|
12917
13326
|
box-shadow: none;
|
|
12918
13327
|
}
|
|
12919
13328
|
|
|
12920
|
-
.
|
|
13329
|
+
._list_18jdg_70 {
|
|
12921
13330
|
overflow-y: auto;
|
|
12922
13331
|
max-height: 300px;
|
|
12923
13332
|
padding: var(--fui-space-1, 0.5rem);
|
|
12924
13333
|
}
|
|
12925
13334
|
|
|
12926
|
-
.
|
|
13335
|
+
._item_18jdg_76 {
|
|
12927
13336
|
appearance: none;
|
|
12928
13337
|
background: transparent;
|
|
12929
13338
|
border: none;
|
|
@@ -12933,21 +13342,22 @@
|
|
|
12933
13342
|
color: inherit;
|
|
12934
13343
|
cursor: pointer;
|
|
12935
13344
|
}
|
|
12936
|
-
.
|
|
13345
|
+
._item_18jdg_76:disabled {
|
|
12937
13346
|
cursor: not-allowed;
|
|
12938
13347
|
}
|
|
12939
|
-
.
|
|
13348
|
+
._item_18jdg_76 {
|
|
12940
13349
|
font-family: var(--fui-font-sans, Inter Variable, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif);
|
|
12941
13350
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12942
13351
|
line-height: var(--fui-line-height-normal, 1.5);
|
|
12943
13352
|
color: var(--fui-text-primary, #212121);
|
|
12944
13353
|
-webkit-font-smoothing: antialiased;
|
|
12945
13354
|
-moz-osx-font-smoothing: grayscale;
|
|
13355
|
+
font-size: var(--fui-popup-item-font-size, 0.857rem);
|
|
12946
13356
|
display: flex;
|
|
12947
13357
|
align-items: center;
|
|
12948
13358
|
gap: var(--fui-space-1, 0.5rem);
|
|
12949
13359
|
width: 100%;
|
|
12950
|
-
padding: var(--fui-
|
|
13360
|
+
padding: var(--fui-popup-item-padding-block, 0.5rem) var(--fui-popup-item-padding-inline, 1rem);
|
|
12951
13361
|
border-radius: var(--fui-radius-sm, 0.25rem);
|
|
12952
13362
|
cursor: pointer;
|
|
12953
13363
|
outline: none;
|
|
@@ -12955,51 +13365,51 @@
|
|
|
12955
13365
|
gap: var(--fui-space-2, 1rem);
|
|
12956
13366
|
text-align: left;
|
|
12957
13367
|
}
|
|
12958
|
-
.
|
|
13368
|
+
._item_18jdg_76:hover {
|
|
12959
13369
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
12960
13370
|
color: var(--fui-text-primary, #212121);
|
|
12961
13371
|
}
|
|
12962
13372
|
|
|
12963
|
-
.
|
|
13373
|
+
._itemActive_18jdg_114 {
|
|
12964
13374
|
background-color: var(--fui-bg-highlight, var(--fui-bg-active, rgba(0, 0, 0, 0.06)));
|
|
12965
13375
|
color: var(--fui-text-primary, #212121);
|
|
12966
13376
|
}
|
|
12967
13377
|
|
|
12968
|
-
.
|
|
13378
|
+
._itemDisabled_18jdg_119 {
|
|
12969
13379
|
opacity: 0.5;
|
|
12970
13380
|
pointer-events: none;
|
|
12971
13381
|
cursor: default;
|
|
12972
13382
|
}
|
|
12973
13383
|
|
|
12974
|
-
.
|
|
13384
|
+
._group_18jdg_125:not(:first-child) {
|
|
12975
13385
|
margin-top: var(--fui-space-1, 0.5rem);
|
|
12976
13386
|
}
|
|
12977
13387
|
|
|
12978
|
-
.
|
|
13388
|
+
._groupHeading_18jdg_129 {
|
|
12979
13389
|
padding: var(--fui-space-1, 0.5rem) var(--fui-space-2, 1rem);
|
|
12980
13390
|
font-size: var(--fui-font-size-xs, 0.857rem);
|
|
12981
13391
|
font-weight: var(--fui-font-weight-medium, 500);
|
|
12982
13392
|
color: var(--fui-text-tertiary, rgb(86.4227350852, 86.4227350852, 86.4227350852));
|
|
12983
13393
|
}
|
|
12984
13394
|
|
|
12985
|
-
.
|
|
13395
|
+
._empty_18jdg_136 {
|
|
12986
13396
|
padding: var(--fui-space-3, 1.5rem);
|
|
12987
13397
|
font-size: var(--fui-font-size-sm, 1rem);
|
|
12988
13398
|
color: var(--fui-text-secondary, rgb(84.468434358, 84.468434358, 84.468434358));
|
|
12989
13399
|
text-align: center;
|
|
12990
13400
|
}
|
|
12991
13401
|
|
|
12992
|
-
.
|
|
13402
|
+
._separator_18jdg_143 {
|
|
12993
13403
|
height: 1px;
|
|
12994
13404
|
margin: var(--fui-space-1, 0.5rem) 0;
|
|
12995
13405
|
background-color: var(--fui-border, rgba(0, 0, 0, 0.05));
|
|
12996
13406
|
}
|
|
12997
13407
|
|
|
12998
13408
|
@media (prefers-contrast: more) {
|
|
12999
|
-
.
|
|
13409
|
+
._command_18jdg_1 {
|
|
13000
13410
|
border-width: 2px;
|
|
13001
13411
|
}
|
|
13002
|
-
.
|
|
13412
|
+
._itemActive_18jdg_114 {
|
|
13003
13413
|
outline: 2px solid var(--fui-color-accent, #006b57);
|
|
13004
13414
|
outline-offset: -2px;
|
|
13005
13415
|
}
|