reasonix 0.12.8 → 0.12.13

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/dashboard/app.css CHANGED
@@ -543,6 +543,34 @@ body {
543
543
  background: var(--bg-3);
544
544
  color: var(--fg-2);
545
545
  }
546
+ .pill-active {
547
+ background: rgba(103, 232, 249, 0.22);
548
+ color: var(--primary);
549
+ }
550
+
551
+ /* ---------- Key/value rows (compact metadata layout) ---------- */
552
+ .kv {
553
+ display: flex;
554
+ flex-direction: column;
555
+ gap: 6px;
556
+ font-size: 13px;
557
+ color: var(--fg-1);
558
+ font-family: var(--mono);
559
+ }
560
+ .kv > div {
561
+ display: flex;
562
+ flex-wrap: wrap;
563
+ align-items: baseline;
564
+ gap: 8px;
565
+ }
566
+ .kv-key {
567
+ display: inline-block;
568
+ min-width: 84px;
569
+ font-size: 11px;
570
+ letter-spacing: 0.06em;
571
+ text-transform: uppercase;
572
+ color: var(--fg-3);
573
+ }
546
574
 
547
575
  /* ---------- Tables ---------- */
548
576
 
@@ -1193,6 +1221,101 @@ textarea:focus {
1193
1221
  color: var(--fg-2);
1194
1222
  }
1195
1223
 
1224
+ /* Onboarding banner that nudges new users to the Semantic panel.
1225
+ * Only shown when the project has no built index AND the user hasn't
1226
+ * explicitly dismissed it (state in localStorage). The "Build it →"
1227
+ * action navigates the sidebar via the appBus so the rest of the
1228
+ * panel state isn't disturbed. */
1229
+ .chat-banner {
1230
+ display: flex;
1231
+ align-items: center;
1232
+ gap: 12px;
1233
+ margin-bottom: 14px;
1234
+ padding: 10px 14px;
1235
+ background: var(--bg-1);
1236
+ border: 1px solid var(--border);
1237
+ border-left: 3px solid var(--accent);
1238
+ border-radius: var(--radius-md);
1239
+ font-size: 13px;
1240
+ }
1241
+ .chat-banner-icon {
1242
+ font-family: var(--mono);
1243
+ color: var(--accent);
1244
+ font-size: 18px;
1245
+ }
1246
+ .chat-banner-text {
1247
+ flex: 1;
1248
+ display: flex;
1249
+ flex-direction: column;
1250
+ gap: 2px;
1251
+ font-size: 13px;
1252
+ }
1253
+ .chat-banner-text strong {
1254
+ color: var(--fg-0);
1255
+ font-weight: 600;
1256
+ }
1257
+ .chat-banner-text .muted {
1258
+ font-size: 12px;
1259
+ line-height: 1.45;
1260
+ }
1261
+ .chat-banner-close {
1262
+ background: transparent;
1263
+ border: none;
1264
+ color: var(--fg-3);
1265
+ font-size: 20px;
1266
+ line-height: 1;
1267
+ padding: 0 6px;
1268
+ cursor: pointer;
1269
+ border-radius: var(--radius-sm);
1270
+ }
1271
+ .chat-banner-close:hover {
1272
+ background: var(--bg-3);
1273
+ color: var(--fg-0);
1274
+ }
1275
+
1276
+ /* In-flight row sits just above ChatStatusBar — the user's eyes are
1277
+ * already at the input; this puts the spinner + elapsed + token
1278
+ * stream in the same visual neighborhood instead of pushing them up
1279
+ * to the top of the panel. Border on the bottom only so it shares the
1280
+ * statusbar's top divider. */
1281
+ .chat-inflight {
1282
+ display: flex;
1283
+ flex-wrap: wrap;
1284
+ align-items: center;
1285
+ gap: 8px;
1286
+ padding: 7px 8px;
1287
+ margin-top: 6px;
1288
+ background: var(--bg-1);
1289
+ border: 1px solid var(--border);
1290
+ border-radius: var(--radius-sm);
1291
+ font-family: var(--mono);
1292
+ font-size: 12px;
1293
+ color: var(--fg-1);
1294
+ flex-shrink: 0;
1295
+ }
1296
+ .chat-inflight-phase {
1297
+ color: var(--accent);
1298
+ font-weight: 600;
1299
+ }
1300
+ .chat-inflight-sep {
1301
+ color: var(--fg-3);
1302
+ }
1303
+ .chat-inflight-abort {
1304
+ margin-left: auto;
1305
+ background: transparent;
1306
+ border: 1px solid var(--border);
1307
+ color: var(--fg-2);
1308
+ padding: 3px 10px;
1309
+ border-radius: var(--radius-sm);
1310
+ font-family: inherit;
1311
+ font-size: 11px;
1312
+ cursor: pointer;
1313
+ }
1314
+ .chat-inflight-abort:hover {
1315
+ border-color: var(--err);
1316
+ color: var(--err);
1317
+ }
1318
+
1196
1319
  /* ---------- Chat status bar ----------
1197
1320
  *
1198
1321
  * Compact metric strip below the input area. Mirrors the TUI's