@bridge_gpt/mcp-server 0.2.26 → 0.2.27

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.
Files changed (57) hide show
  1. package/build/commands.generated.js +1 -1
  2. package/build/conductor-bin.js +68 -9267
  3. package/build/conductor-claude-hook-bin.js +2 -172
  4. package/build/decision-page-template.js +2 -31
  5. package/build/index.js +4652 -37042
  6. package/build/init.js +80 -56
  7. package/build/install-bridge.js +36 -20
  8. package/build/version.generated.js +1 -1
  9. package/package.json +1 -3
  10. package/design-assets/favicon/android-chrome-192x192.png +0 -0
  11. package/design-assets/favicon/android-chrome-512x512.png +0 -0
  12. package/design-assets/favicon/apple-touch-icon.png +0 -0
  13. package/design-assets/favicon/favicon-16x16.png +0 -0
  14. package/design-assets/favicon/favicon.ico +0 -0
  15. package/design-assets/favicon/site.webmanifest +0 -1
  16. package/public/css/main.min.css +0 -4971
  17. package/public/css/main.min.css.map +0 -1
  18. package/public/fonts/OFL.txt +0 -93
  19. package/public/fonts/SourceSansPro-Black.ttf +0 -0
  20. package/public/fonts/SourceSansPro-BlackItalic.ttf +0 -0
  21. package/public/fonts/SourceSansPro-Bold.ttf +0 -0
  22. package/public/fonts/SourceSansPro-BoldItalic.ttf +0 -0
  23. package/public/fonts/SourceSansPro-ExtraLight.ttf +0 -0
  24. package/public/fonts/SourceSansPro-ExtraLightItalic.ttf +0 -0
  25. package/public/fonts/SourceSansPro-Italic.ttf +0 -0
  26. package/public/fonts/SourceSansPro-Light.ttf +0 -0
  27. package/public/fonts/SourceSansPro-LightItalic.ttf +0 -0
  28. package/public/fonts/SourceSansPro-Regular.ttf +0 -0
  29. package/public/fonts/SourceSansPro-SemiBold.ttf +0 -0
  30. package/public/fonts/SourceSansPro-SemiBoldItalic.ttf +0 -0
  31. package/public/img/bridge-logo-160x51.webp +0 -0
  32. package/public/img/bridge-logo-300x92.webp +0 -0
  33. package/public/img/favicon/android-chrome-192x192.png +0 -0
  34. package/public/img/favicon/android-chrome-512x512.png +0 -0
  35. package/public/img/favicon/apple-touch-icon.png +0 -0
  36. package/public/img/favicon/favicon-16x16.png +0 -0
  37. package/public/img/favicon/favicon-32x32.png +0 -0
  38. package/public/img/favicon/favicon.ico +0 -0
  39. package/public/img/favicon/site.webmanifest +0 -1
  40. package/public/img/installation/bitbucket/app-password-1.png +0 -0
  41. package/public/img/installation/bitbucket/app-password-2.png +0 -0
  42. package/public/img/installation/bitbucket/create-token-1.png +0 -0
  43. package/public/img/installation/bitbucket/create-token-2.png +0 -0
  44. package/public/img/installation/bitbucket/webhook-1.png +0 -0
  45. package/public/img/installation/github/github-review-webhook.png +0 -0
  46. package/public/img/installation/jira/credentials/api-key.png +0 -0
  47. package/public/img/installation/jira/webhook/create-rule.png +0 -0
  48. package/public/img/installation/jira/webhook/project-settings.png +0 -0
  49. package/public/img/installation/jira/webhook/rule-create-1.png +0 -0
  50. package/public/img/installation/jira/webhook/rule-create-2.png +0 -0
  51. package/public/img/installation/jira/webhook/rule-create-3.png +0 -0
  52. package/public/img/installation/pinecone/pinecone-api-key.png +0 -0
  53. package/public/img/installation/pinecone/pinecone-index.png +0 -0
  54. package/public/js/main.min.js +0 -10409
  55. package/public/js/main.min.js.map +0 -1
  56. package/smoke-test/SMOKE-TEST.md +0 -560
  57. package/smoke-test/smoke-test-mcp.md +0 -23
@@ -1,4971 +0,0 @@
1
- /*!*************************************************************************************************!*\
2
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/setup.css ***!
3
- \*************************************************************************************************/
4
- /* Setup page CSS */
5
-
6
- /* Reset and base styles */
7
- * {
8
- margin: 0;
9
- padding: 0;
10
- box-sizing: border-box;
11
- }
12
-
13
- body {
14
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
15
- background-color: var(--background-color);
16
- color: var(--text-color);
17
- line-height: 1.5;
18
- min-height: 100vh;
19
- padding-top: var(--header-height);
20
- }
21
-
22
- /* Header styles */
23
- .header {
24
- position: fixed;
25
- top: 0;
26
- left: 0;
27
- width: 100%;
28
- height: var(--header-height);
29
- background-color: var(--surface-color);
30
- box-shadow: var(--box-shadow);
31
- z-index: 100;
32
- }
33
-
34
- .header-container {
35
- display: flex;
36
- justify-content: space-between;
37
- align-items: center;
38
- max-width: 1200px;
39
- height: 100%;
40
- margin: 0 auto;
41
- padding: 0 1rem;
42
- }
43
-
44
- .logo-container img {
45
- height: 32px;
46
- width: auto;
47
- }
48
-
49
- .nav-menu ul {
50
- display: flex;
51
- list-style-type: none;
52
- }
53
-
54
- .nav-menu li {
55
- margin-left: 2rem;
56
- }
57
-
58
- .nav-menu a {
59
- color: var(--text-color);
60
- text-decoration: none;
61
- font-weight: 500;
62
- }
63
-
64
- .nav-menu a:hover {
65
- color: var(--primary-color);
66
- }
67
-
68
- /* Main content area */
69
- .main-content {
70
- max-width: 1200px;
71
- margin: 2rem auto;
72
- padding: 0 1rem;
73
- }
74
-
75
- /* Container styles */
76
- .container {
77
- background-color: var(--surface-color);
78
- border-radius: 0.5rem;
79
- padding: 2rem;
80
- box-shadow: var(--box-shadow);
81
- margin-bottom: 2rem;
82
- }
83
-
84
- .hidden {
85
- display: none !important;
86
- }
87
-
88
- /* Section header */
89
- .section-header {
90
- display: flex;
91
- justify-content: space-between;
92
- align-items: center;
93
- margin-bottom: 2rem;
94
- }
95
-
96
- .section-header h1 {
97
- font-size: 1.5rem;
98
- font-weight: 600;
99
- color: var(--text-color);
100
- }
101
-
102
- /* Form styles */
103
- .form-intro {
104
- font-size: 0.875rem;
105
- color: var(--secondary-color);
106
- margin-bottom: 1.5rem;
107
- }
108
-
109
- .form-intro code {
110
- font-size: 0.8125rem;
111
- color: var(--text-color);
112
- }
113
-
114
- .form-group {
115
- margin-bottom: 1.5rem;
116
- }
117
-
118
- .form-group-block {
119
- display: flex;
120
- justify-content: left;
121
- align-items: center;
122
- }
123
-
124
- label {
125
- display: block;
126
- font-size: 0.875rem;
127
- font-weight: 500;
128
- margin-bottom: 0.5rem;
129
- }
130
-
131
- input[type="text"],
132
- input[type="password"],
133
- input[type="email"],
134
- input[type="url"],
135
- input[type="number"],
136
- select,
137
- textarea {
138
- width: 100%;
139
- padding: 0.5rem;
140
- font-size: 1rem;
141
- border: 1px solid var(--border-color);
142
- border-radius: 0.25rem;
143
- background-color: #fff;
144
- }
145
-
146
- input[type="number"] {
147
- width: auto;
148
- }
149
-
150
- textarea {
151
- min-height: 100px;
152
- resize: vertical;
153
- }
154
-
155
- .required {
156
- color: var(--error-color);
157
- }
158
-
159
- /* Checkbox styling */
160
- .form-group.checkbox {
161
- display: flex;
162
- align-items: center;
163
- flex-wrap: wrap;
164
- }
165
-
166
- .form-group.checkbox input {
167
- margin-right: 0.5rem;
168
- }
169
-
170
- .form-group.checkbox label {
171
- margin-bottom: 0;
172
- }
173
-
174
- /* ==========================================================================
175
- BAPI-548: attention-first setup dashboard
176
- Reuses the existing cream/coral globals.css tokens; no new palette fork.
177
- ========================================================================== */
178
-
179
- /* Dashboard header counters */
180
- .setup-dashboard-title-group {
181
- display: flex;
182
- align-items: baseline;
183
- gap: 0.75rem;
184
- flex-wrap: wrap;
185
- }
186
-
187
- .setup-dashboard-counts {
188
- font-size: 0.9rem;
189
- color: var(--secondary-color);
190
- }
191
-
192
- .setup-dashboard-count {
193
- color: var(--secondary-color);
194
- }
195
-
196
- .setup-dashboard-attention-count {
197
- color: var(--primary-color);
198
- font-weight: 700;
199
- }
200
-
201
- /* Projects list — single-column, low-density signpost list */
202
- .projects-grid {
203
- display: grid;
204
- grid-template-columns: 1fr;
205
- gap: 1.25rem;
206
- }
207
-
208
- .project-card {
209
- background-color: var(--surface-color);
210
- border: 1px solid var(--border-color);
211
- border-radius: 0.75rem;
212
- padding: 1.25rem 1.5rem;
213
- display: flex;
214
- flex-direction: column;
215
- gap: 0.6rem;
216
- }
217
-
218
- /* Summary row: state dot + title + repo tag on the left, status pill on the right */
219
- .project-card-summary {
220
- display: flex;
221
- justify-content: space-between;
222
- align-items: center;
223
- gap: 1rem;
224
- flex-wrap: wrap;
225
- }
226
-
227
- .project-identity {
228
- display: flex;
229
- align-items: center;
230
- gap: 0.6rem;
231
- min-width: 0;
232
- }
233
-
234
- .project-state-dot {
235
- width: 0.65rem;
236
- height: 0.65rem;
237
- border-radius: 50%;
238
- flex-shrink: 0;
239
- background-color: var(--secondary-color);
240
- }
241
-
242
- .project-state-dot--ok { background-color: var(--success-color); }
243
- .project-state-dot--warning { background-color: var(--light-orange); }
244
- .project-state-dot--critical { background-color: var(--primary-color); }
245
- .project-state-dot--unknown { background-color: #cfcabc; }
246
-
247
- .project-title {
248
- font-size: 1.05rem;
249
- font-weight: 700;
250
- color: var(--text-color);
251
- overflow: hidden;
252
- text-overflow: ellipsis;
253
- white-space: nowrap;
254
- }
255
-
256
- .project-repo-tag {
257
- font-size: 0.72rem;
258
- color: var(--secondary-color);
259
- background-color: var(--secondary-button-background);
260
- border: 1px solid var(--border-color);
261
- border-radius: 0.35rem;
262
- padding: 0.1rem 0.45rem;
263
- white-space: nowrap;
264
- }
265
-
266
- /* Status pill */
267
- .project-status-pill {
268
- font-size: 0.8rem;
269
- font-weight: 600;
270
- padding: 0.28rem 0.7rem;
271
- border-radius: 999px;
272
- white-space: nowrap;
273
- }
274
-
275
- .project-status-pill--ok {
276
- color: #0f8a5f;
277
- background-color: rgba(16, 185, 129, 0.14);
278
- }
279
-
280
- .project-status-pill--attention {
281
- color: var(--dark-orange);
282
- background-color: rgba(242, 178, 122, 0.28);
283
- }
284
-
285
- /* A card carrying any critical signal uses the coral (error) pill treatment. */
286
- .project-card--critical .project-status-pill--attention {
287
- color: var(--primary-color);
288
- background-color: rgba(226, 98, 75, 0.14);
289
- }
290
-
291
- /* Muted meta line */
292
- .project-meta-line {
293
- font-size: 0.8rem;
294
- color: var(--secondary-color);
295
- }
296
-
297
- /* Description — clamped to two lines */
298
- .project-description {
299
- font-size: 0.875rem;
300
- color: var(--secondary-color);
301
- line-height: 1.45;
302
- overflow: hidden;
303
- display: -webkit-box;
304
- -webkit-line-clamp: 2;
305
- line-clamp: 2;
306
- -webkit-box-orient: vertical;
307
- }
308
-
309
- /* Attention panels (signposts) */
310
- .project-attention-list {
311
- display: flex;
312
- flex-direction: column;
313
- gap: 0.5rem;
314
- }
315
-
316
- .attention-panel {
317
- display: flex;
318
- align-items: center;
319
- gap: 0.7rem;
320
- padding: 0.7rem 0.85rem;
321
- border-radius: 0.55rem;
322
- border: 1px solid transparent;
323
- }
324
-
325
- .attention-panel--warning {
326
- background-color: rgba(242, 178, 122, 0.18);
327
- border-color: rgba(242, 178, 122, 0.5);
328
- }
329
-
330
- .attention-panel--critical {
331
- background-color: rgba(226, 98, 75, 0.1);
332
- border-color: rgba(226, 98, 75, 0.35);
333
- }
334
-
335
- .attention-panel--unknown {
336
- background-color: transparent;
337
- border-style: dashed;
338
- border-color: var(--border-color);
339
- }
340
-
341
- .attention-icon {
342
- flex-shrink: 0;
343
- width: 1.75rem;
344
- height: 1.75rem;
345
- border-radius: 0.4rem;
346
- display: flex;
347
- align-items: center;
348
- justify-content: center;
349
- font-size: 0.9rem;
350
- background-color: var(--surface-color);
351
- border: 1px solid var(--border-color);
352
- }
353
-
354
- .attention-content {
355
- display: flex;
356
- flex-direction: column;
357
- gap: 0.1rem;
358
- flex: 1;
359
- min-width: 0;
360
- }
361
-
362
- .attention-label {
363
- font-weight: 700;
364
- font-size: 0.85rem;
365
- color: var(--text-color);
366
- }
367
-
368
- .attention-message {
369
- font-size: 0.78rem;
370
- color: var(--secondary-color);
371
- }
372
-
373
- .attention-fix-link {
374
- flex-shrink: 0;
375
- font-size: 0.8rem;
376
- font-weight: 600;
377
- color: var(--primary-color);
378
- text-decoration: none;
379
- background-color: var(--surface-color);
380
- border: 1px solid var(--border-color);
381
- border-radius: 0.4rem;
382
- padding: 0.35rem 0.7rem;
383
- white-space: nowrap;
384
- }
385
-
386
- .attention-fix-link:hover {
387
- border-color: var(--primary-color);
388
- }
389
-
390
- .attention-fix-link--inert {
391
- color: var(--secondary-color);
392
- cursor: default;
393
- }
394
-
395
- /* "Show all checks" disclosure */
396
- .project-checks-details {
397
- font-size: 0.82rem;
398
- }
399
-
400
- .project-checks-summary {
401
- cursor: pointer;
402
- color: var(--secondary-color);
403
- font-weight: 600;
404
- padding: 0.2rem 0;
405
- width: fit-content;
406
- list-style: revert;
407
- }
408
-
409
- .project-checks-list {
410
- display: flex;
411
- flex-direction: column;
412
- gap: 0.35rem;
413
- margin-top: 0.5rem;
414
- padding-left: 0.5rem;
415
- }
416
-
417
- .project-check-row {
418
- display: flex;
419
- align-items: center;
420
- gap: 0.5rem;
421
- }
422
-
423
- .project-check-icon {
424
- flex-shrink: 0;
425
- width: 1.2rem;
426
- text-align: center;
427
- color: var(--secondary-color);
428
- }
429
-
430
- .project-check-row--ok .project-check-icon { color: var(--success-color); }
431
- .project-check-row--warning .project-check-icon { color: var(--dark-orange); }
432
- .project-check-row--critical .project-check-icon { color: var(--primary-color); }
433
-
434
- /* Unknown / backend-dependent check rows are visually dashed & neutral. */
435
- .project-check-row--unknown {
436
- color: var(--secondary-color);
437
- border-left: 2px dashed var(--border-color);
438
- padding-left: 0.5rem;
439
- }
440
-
441
- .project-check-label { font-weight: 600; color: var(--text-color); }
442
- .project-check-message { color: var(--secondary-color); }
443
-
444
- /* Bottom launcher row + overflow */
445
- .project-actions-footer {
446
- display: flex;
447
- justify-content: space-between;
448
- align-items: center;
449
- gap: 0.5rem;
450
- margin-top: 0.4rem;
451
- padding-top: 0.9rem;
452
- border-top: 1px solid var(--border-color);
453
- flex-wrap: wrap;
454
- }
455
-
456
- .project-launcher {
457
- display: flex;
458
- gap: 0.4rem;
459
- flex-wrap: wrap;
460
- }
461
-
462
- .project-launcher-link {
463
- font-size: 0.82rem;
464
- font-weight: 600;
465
- color: var(--text-color);
466
- text-decoration: none;
467
- background-color: var(--surface-color);
468
- border: 1px solid var(--border-color);
469
- border-radius: 0.45rem;
470
- padding: 0.4rem 0.8rem;
471
- }
472
-
473
- .project-launcher-link:hover {
474
- border-color: var(--primary-color);
475
- color: var(--primary-color);
476
- }
477
-
478
- .project-overflow {
479
- position: relative;
480
- }
481
-
482
- .project-overflow-summary {
483
- cursor: pointer;
484
- list-style: none;
485
- display: inline-flex;
486
- align-items: center;
487
- justify-content: center;
488
- width: 2.2rem;
489
- height: 2.1rem;
490
- border: 1px solid var(--border-color);
491
- border-radius: 0.45rem;
492
- color: var(--secondary-color);
493
- font-weight: 700;
494
- }
495
-
496
- .project-overflow-summary::-webkit-details-marker { display: none; }
497
-
498
- .project-overflow-menu {
499
- position: absolute;
500
- right: 0;
501
- top: calc(100% + 0.35rem);
502
- z-index: 10;
503
- display: flex;
504
- flex-direction: column;
505
- min-width: 12rem;
506
- background-color: var(--surface-color);
507
- border: 1px solid var(--border-color);
508
- border-radius: 0.5rem;
509
- box-shadow: var(--box-shadow);
510
- padding: 0.35rem;
511
- }
512
-
513
- .project-overflow-action {
514
- font-size: 0.85rem;
515
- text-align: left;
516
- color: var(--text-color);
517
- text-decoration: none;
518
- background: none;
519
- border: none;
520
- border-radius: 0.35rem;
521
- padding: 0.5rem 0.6rem;
522
- cursor: pointer;
523
- font: inherit;
524
- }
525
-
526
- .project-overflow-action:hover {
527
- background-color: var(--secondary-button-background);
528
- }
529
-
530
- .project-overflow-action--delete {
531
- color: var(--error-color);
532
- }
533
-
534
- /* Empty & error states */
535
- .setup-empty-state,
536
- .setup-error-state {
537
- text-align: center;
538
- padding: 2.5rem 1.5rem;
539
- border: 1px dashed var(--border-color);
540
- border-radius: 0.75rem;
541
- background-color: var(--background-color);
542
- }
543
-
544
- .setup-empty-title,
545
- .setup-error-title {
546
- font-weight: 700;
547
- color: var(--text-color);
548
- margin-bottom: 0.4rem;
549
- }
550
-
551
- .setup-empty-message,
552
- .setup-error-message {
553
- font-size: 0.875rem;
554
- color: var(--secondary-color);
555
- }
556
-
557
- .setup-error-state {
558
- border-color: rgba(239, 68, 68, 0.4);
559
- }
560
-
561
- .setup-error-title { color: var(--error-color); }
562
-
563
- /* Keyboard-visible focus styles for interactive dashboard controls */
564
- .project-launcher-link:focus-visible,
565
- .project-overflow-summary:focus-visible,
566
- .project-overflow-action:focus-visible,
567
- .attention-fix-link:focus-visible,
568
- .project-checks-summary:focus-visible {
569
- outline: 2px solid var(--primary-color);
570
- outline-offset: 2px;
571
- }
572
-
573
- /* Modal styles */
574
- .modal {
575
- display: none;
576
- position: fixed;
577
- z-index: 1000;
578
- left: 0;
579
- top: 0;
580
- width: 100%;
581
- height: 100%;
582
- overflow: auto;
583
- background-color: rgba(0, 0, 0, 0.4);
584
- }
585
-
586
- .modal-content {
587
- background-color: var(--surface-color);
588
- margin: 15% auto;
589
- padding: 2rem;
590
- border-radius: 0.5rem;
591
- width: 80%;
592
- max-width: 500px;
593
- box-shadow: var(--box-shadow);
594
- }
595
-
596
- .close-modal {
597
- color: var(--secondary-color);
598
- float: right;
599
- font-size: 1.5rem;
600
- font-weight: bold;
601
- cursor: pointer;
602
- }
603
-
604
- .close-modal:hover {
605
- color: var(--text-color);
606
- }
607
-
608
- #modal-title {
609
- margin-bottom: 1rem;
610
- }
611
-
612
- #modal-body {
613
- margin-bottom: 1rem;
614
- line-height: 1.5;
615
- }
616
-
617
- #modal-body ul {
618
- margin: 0.5rem 0;
619
- padding-left: 1.5rem;
620
- }
621
-
622
- #modal-body li {
623
- margin: 0.25rem 0;
624
- }
625
-
626
- #modal-body p {
627
- margin: 0.5rem 0;
628
- }
629
-
630
- .modal-actions {
631
- display: flex;
632
- justify-content: flex-end;
633
- gap: 0.75rem;
634
- margin-top: 1.5rem;
635
- padding-top: 1rem;
636
- border-top: 1px solid var(--border-color);
637
- }
638
-
639
- .modal-actions.hidden {
640
- display: none;
641
- }
642
-
643
- /* Loading overlay */
644
- .loading-overlay {
645
- position: fixed;
646
- top: 0;
647
- left: 0;
648
- width: 100%;
649
- height: 100%;
650
- background-color: rgba(255, 255, 255, 0.8);
651
- z-index: 2000;
652
- display: flex;
653
- flex-direction: column;
654
- justify-content: center;
655
- align-items: center;
656
- }
657
-
658
- .spinner {
659
- border: 4px solid rgba(0, 0, 0, 0.1);
660
- width: 40px;
661
- height: 40px;
662
- border-radius: 50%;
663
- border-top-color: var(--primary-color);
664
- animation: spin 1s linear infinite;
665
- margin-bottom: 1rem;
666
- }
667
-
668
- @keyframes spin {
669
- 0% { transform: rotate(0deg); }
670
- 100% { transform: rotate(360deg); }
671
- }
672
-
673
- /* Responsive adjustments */
674
- @media (max-width: 768px) {
675
- .projects-grid {
676
- grid-template-columns: 1fr;
677
- }
678
-
679
- .header-container {
680
- padding: 0 1rem;
681
- }
682
-
683
- .nav-menu li {
684
- margin-left: 1rem;
685
- }
686
-
687
- .container {
688
- padding: 1.5rem;
689
- }
690
-
691
- .modal-content {
692
- width: 90%;
693
- margin: 10% auto;
694
- }
695
-
696
- /* BAPI-548: let the dashboard wrap instead of overflowing horizontally. */
697
- .project-card-summary {
698
- flex-direction: column;
699
- align-items: flex-start;
700
- gap: 0.5rem;
701
- }
702
-
703
- .project-status-pill {
704
- align-self: flex-start;
705
- }
706
-
707
- .attention-panel {
708
- flex-wrap: wrap;
709
- }
710
-
711
- .attention-fix-link {
712
- margin-left: 2.45rem;
713
- }
714
-
715
- .project-actions-footer {
716
- flex-direction: column;
717
- align-items: stretch;
718
- }
719
-
720
- .project-launcher {
721
- justify-content: flex-start;
722
- }
723
-
724
- .project-overflow-menu {
725
- right: auto;
726
- left: 0;
727
- }
728
- }
729
- /*!********************************************************************************************************!*\
730
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/setup-detail.css ***!
731
- \********************************************************************************************************/
732
- /* src/css/setup-detail.css */
733
-
734
- /* Collapsible drawers specific to Setup Detail View */
735
- .collapsible-drawers {
736
- margin-bottom: 2rem;
737
- }
738
-
739
- .drawer {
740
- border: 1px solid var(--border-color);
741
- border-radius: 0.25rem;
742
- margin-bottom: 1rem;
743
- overflow: hidden;
744
- }
745
-
746
- .drawer-header {
747
- display: flex;
748
- justify-content: space-between;
749
- align-items: center;
750
- padding: 1rem;
751
- background-color: #f9fafb;
752
- cursor: pointer;
753
- }
754
-
755
- .drawer-header h2 {
756
- font-size: 1rem;
757
- font-weight: 500;
758
- }
759
-
760
- .toggle-drawer {
761
- background: none;
762
- border: none;
763
- font-size: 1rem;
764
- cursor: pointer;
765
- transition: transform var(--drawer-transition);
766
- }
767
-
768
- .drawer-content {
769
- padding: 1rem;
770
- border-top: 1px solid var(--border-color);
771
- /* Visibility is controlled solely by the global `.hidden` class (BAPI-301);
772
- `.expanded` is reserved for header/glyph styling. The shared drawer helper
773
- sets the ▲/▼ glyph text directly, so no CSS rotation is applied. */
774
- }
775
-
776
- /* Save button container specific to Setup Detail View */
777
- .save-container {
778
- display: flex;
779
- justify-content: center;
780
- margin-top: 2rem;
781
- }
782
-
783
- .save-container .btn {
784
- padding: 0.75rem 1.5rem;
785
- font-size: 1rem;
786
- }
787
-
788
- /* Static text display (like repo name) */
789
- .form-static-text {
790
- background-color: var(--background-color);
791
- padding: 0.5rem;
792
- border: 1px solid var(--border-color);
793
- border-radius: 0.25rem;
794
- font-family: monospace;
795
- color: var(--secondary-color);
796
- margin-top: 0.5rem;
797
- word-break: break-all;
798
- }
799
-
800
- /* Header title specific to this page */
801
- .header-title {
802
- font-size: 1.2rem;
803
- font-weight: 600;
804
- color: var(--text-color);
805
- }
806
-
807
- /* Explain Link Styling */
808
- .explain-link {
809
- display: inline-block;
810
- margin-left: 6px;
811
- padding: 1px 6px;
812
- font-size: 0.8em;
813
- font-weight: bold;
814
- color: #fff;
815
- background-color: #6c757d;
816
- border-radius: 50%;
817
- text-decoration: none;
818
- cursor: pointer;
819
- vertical-align: middle;
820
- line-height: 1.2;
821
- }
822
-
823
- .explain-link:hover {
824
- background-color: #444;
825
- text-decoration: none;
826
- }
827
-
828
- .explanation-content {
829
- /* Hidden by default via the global `.hidden` class in the markup; the JS
830
- toggles only `.hidden` (BAPI-301), so no base `display: none` here. */
831
- margin-top: 8px;
832
- padding: 10px;
833
- border: 1px solid #ced4da;
834
- border-radius: 4px;
835
- background-color: #f8f9fa;
836
- font-size: 0.9em;
837
- color: #495057;
838
- line-height: 1.4;
839
- }
840
-
841
- /* Structured server-sourced setup instructions (BAPI-515), rendered inside
842
- .explanation-content by renderExplanationContent(). Scoped to this wrapper
843
- only — the container above is left untouched. */
844
- .explanation-content .setup-instructions {
845
- display: flex;
846
- flex-direction: column;
847
- gap: 8px;
848
- }
849
-
850
- .explanation-content .setup-instructions-link {
851
- color: var(--primary-color);
852
- font-weight: 500;
853
- text-decoration: underline;
854
- overflow-wrap: anywhere;
855
- }
856
-
857
- .explanation-content .setup-instructions-link:hover {
858
- color: var(--primary-dark);
859
- }
860
-
861
- .explanation-content .setup-instructions-link:focus-visible {
862
- outline: 2px solid var(--primary-color);
863
- outline-offset: 2px;
864
- }
865
-
866
- .explanation-content .setup-instructions-steps {
867
- margin: 0;
868
- padding-left: 20px;
869
- }
870
-
871
- .explanation-content .setup-instructions-steps li + li {
872
- margin-top: 4px;
873
- }
874
-
875
- .explanation-content .setup-instructions-note {
876
- margin: 0;
877
- color: var(--secondary-color);
878
- }
879
-
880
- /* Form error styling */
881
- .form-error {
882
- color: var(--error-color);
883
- font-size: 0.875rem;
884
- margin-top: 0.5rem;
885
- display: none;
886
- }
887
-
888
- .form-error.visible {
889
- display: block;
890
- }
891
-
892
- input.input-error,
893
- textarea.input-error,
894
- select.input-error {
895
- border-color: var(--error-color);
896
- box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.25);
897
- }
898
-
899
- /* Required field indicator */
900
- .required {
901
- color: var(--error-color);
902
- }
903
-
904
- /* ========================================
905
- Data Integrity Section Styles
906
- ======================================== */
907
-
908
- /* Loading and error states */
909
- .integrity-loading,
910
- .integrity-error {
911
- padding: 1rem;
912
- text-align: center;
913
- color: var(--secondary-color);
914
- }
915
-
916
- .integrity-error {
917
- color: var(--error-color);
918
- background-color: #fef2f2;
919
- border: 1px solid #fecaca;
920
- border-radius: 0.25rem;
921
- }
922
-
923
- /* Summary statistics */
924
- .integrity-summary {
925
- display: flex;
926
- gap: 2rem;
927
- margin-bottom: 1.5rem;
928
- padding: 1rem;
929
- background-color: #f9fafb;
930
- border-radius: 0.25rem;
931
- }
932
-
933
- .integrity-stat {
934
- display: flex;
935
- flex-direction: column;
936
- align-items: center;
937
- }
938
-
939
- .integrity-stat-label {
940
- font-size: 0.875rem;
941
- color: var(--secondary-color);
942
- margin-bottom: 0.25rem;
943
- }
944
-
945
- .integrity-stat-value {
946
- font-size: 1.5rem;
947
- font-weight: 600;
948
- color: var(--text-color);
949
- }
950
-
951
- .integrity-stat-value.integrity-healthy {
952
- color: #16a34a;
953
- }
954
-
955
- /* Empty state */
956
- .integrity-empty-state {
957
- padding: 1.5rem;
958
- text-align: center;
959
- background-color: #f0fdf4;
960
- border: 1px solid #bbf7d0;
961
- border-radius: 0.25rem;
962
- color: #166534;
963
- }
964
-
965
- .integrity-empty-state p {
966
- margin: 0;
967
- font-weight: 500;
968
- }
969
-
970
- /* Issues table */
971
- .integrity-table {
972
- width: 100%;
973
- border-collapse: collapse;
974
- margin-top: 1rem;
975
- }
976
-
977
- .integrity-table th,
978
- .integrity-table td {
979
- padding: 0.75rem;
980
- text-align: left;
981
- border-bottom: 1px solid var(--border-color);
982
- }
983
-
984
- .integrity-table th {
985
- background-color: #f9fafb;
986
- font-weight: 500;
987
- font-size: 0.875rem;
988
- color: var(--secondary-color);
989
- }
990
-
991
- .integrity-table td {
992
- font-size: 0.875rem;
993
- vertical-align: top;
994
- }
995
-
996
- .integrity-table tbody tr:hover {
997
- background-color: #f9fafb;
998
- }
999
-
1000
- /* File list styling */
1001
- .integrity-file-list {
1002
- font-family: monospace;
1003
- font-size: 0.8rem;
1004
- background-color: #f1f5f9;
1005
- padding: 0.5rem;
1006
- border-radius: 4px;
1007
- max-height: 150px;
1008
- overflow-y: auto;
1009
- margin: 0;
1010
- list-style: none;
1011
- }
1012
-
1013
- .integrity-file-list li {
1014
- padding: 0.125rem 0;
1015
- word-break: break-all;
1016
- }
1017
-
1018
- .integrity-file-list li:not(:last-child) {
1019
- border-bottom: 1px solid #e2e8f0;
1020
- }
1021
-
1022
- .integrity-more-files {
1023
- font-style: italic;
1024
- color: var(--secondary-color);
1025
- font-size: 0.8rem;
1026
- margin-top: 0.25rem;
1027
- }
1028
-
1029
- /* Issues container header */
1030
- #integrity-issues-container h3 {
1031
- font-size: 1rem;
1032
- font-weight: 500;
1033
- color: var(--text-color);
1034
- margin-bottom: 0.5rem;
1035
- }
1036
-
1037
- /* ========================================
1038
- Configuration Health Section Styles
1039
- ======================================== */
1040
-
1041
- /* Loading and error states */
1042
- .config-health-loading,
1043
- .config-health-error {
1044
- padding: 1rem;
1045
- text-align: center;
1046
- color: var(--secondary-color);
1047
- }
1048
-
1049
- .config-health-error {
1050
- color: var(--error-color);
1051
- background-color: #fef2f2;
1052
- border: 1px solid #fecaca;
1053
- border-radius: 0.25rem;
1054
- }
1055
-
1056
- /* Summary statistics */
1057
- .health-stats {
1058
- display: flex;
1059
- gap: 2rem;
1060
- margin-bottom: 1.5rem;
1061
- padding: 1rem;
1062
- background-color: #f9fafb;
1063
- border-radius: 0.25rem;
1064
- }
1065
-
1066
- .health-stat {
1067
- display: flex;
1068
- flex-direction: column;
1069
- align-items: center;
1070
- }
1071
-
1072
- .health-stat-label {
1073
- font-size: 0.875rem;
1074
- color: var(--secondary-color);
1075
- margin-bottom: 0.25rem;
1076
- }
1077
-
1078
- .health-stat-value {
1079
- font-size: 1.5rem;
1080
- font-weight: 600;
1081
- color: var(--text-color);
1082
- }
1083
-
1084
- .health-stat-value.config-healthy {
1085
- color: #16a34a;
1086
- }
1087
-
1088
- .health-stat-value.config-errors {
1089
- color: var(--error-color);
1090
- }
1091
-
1092
- .health-stat-value.config-warnings {
1093
- color: #f59e0b;
1094
- }
1095
-
1096
- /* All good state */
1097
- .config-health-all-good {
1098
- padding: 1.5rem;
1099
- text-align: center;
1100
- background-color: #f0fdf4;
1101
- border: 1px solid #bbf7d0;
1102
- border-radius: 0.25rem;
1103
- color: #166534;
1104
- }
1105
-
1106
- .config-health-all-good p {
1107
- margin: 0;
1108
- font-weight: 500;
1109
- }
1110
-
1111
- /* Config health table */
1112
- .config-health-table {
1113
- width: 100%;
1114
- border-collapse: collapse;
1115
- margin-top: 1rem;
1116
- }
1117
-
1118
- .config-health-table th,
1119
- .config-health-table td {
1120
- padding: 0.75rem;
1121
- text-align: left;
1122
- border-bottom: 1px solid var(--border-color);
1123
- }
1124
-
1125
- .config-health-table th {
1126
- background-color: #f9fafb;
1127
- font-weight: 500;
1128
- font-size: 0.875rem;
1129
- color: var(--secondary-color);
1130
- }
1131
-
1132
- .config-health-table td {
1133
- font-size: 0.875rem;
1134
- vertical-align: top;
1135
- }
1136
-
1137
- .config-health-table tbody tr:hover {
1138
- background-color: #f9fafb;
1139
- }
1140
-
1141
- /* Status badge styling */
1142
- .config-status-badge {
1143
- display: inline-block;
1144
- padding: 0.25rem 0.5rem;
1145
- border-radius: 0.25rem;
1146
- font-size: 0.75rem;
1147
- font-weight: 500;
1148
- text-transform: uppercase;
1149
- }
1150
-
1151
- .config-status-badge.status-missing {
1152
- background-color: #fef2f2;
1153
- color: #991b1b;
1154
- }
1155
-
1156
- .config-status-badge.status-invalid {
1157
- background-color: #fef2f2;
1158
- color: #991b1b;
1159
- }
1160
-
1161
- /* Dismiss button styling */
1162
- .dismiss-warning-btn {
1163
- background-color: transparent;
1164
- border: 1px solid var(--border-color);
1165
- border-radius: 0.25rem;
1166
- padding: 0.375rem 0.75rem;
1167
- font-size: 0.875rem;
1168
- color: var(--secondary-color);
1169
- cursor: pointer;
1170
- transition: all 0.2s ease;
1171
- }
1172
-
1173
- .dismiss-warning-btn:hover {
1174
- background-color: #f9fafb;
1175
- border-color: var(--secondary-color);
1176
- color: var(--text-color);
1177
- }
1178
-
1179
- .dismiss-warning-btn:active {
1180
- background-color: #f3f4f6;
1181
- }
1182
-
1183
- .dismiss-warning-btn:disabled {
1184
- opacity: 0.5;
1185
- cursor: not-allowed;
1186
- }
1187
-
1188
- /* Config errors/warnings container headers */
1189
- #config-errors-container h3,
1190
- #config-warnings-container h3 {
1191
- font-size: 1rem;
1192
- font-weight: 500;
1193
- color: var(--text-color);
1194
- margin-bottom: 0.5rem;
1195
- margin-top: 1.5rem;
1196
- }
1197
-
1198
- #config-errors-container h3 {
1199
- color: var(--error-color);
1200
- }
1201
-
1202
- #config-warnings-container h3 {
1203
- color: #f59e0b;
1204
- }
1205
-
1206
- /* ========================================
1207
- Pinecone Data Integrity Section Styles
1208
- ======================================== */
1209
-
1210
- /* Actions container with button and last run text */
1211
- .pinecone-health-actions {
1212
- display: flex;
1213
- align-items: center;
1214
- gap: 1rem;
1215
- margin-bottom: 1rem;
1216
- }
1217
-
1218
- .last-run-text {
1219
- font-size: 0.875rem;
1220
- color: var(--secondary-color);
1221
- }
1222
-
1223
- /* Loading and error states */
1224
- .pinecone-health-loading,
1225
- .pinecone-health-error {
1226
- padding: 1rem;
1227
- text-align: center;
1228
- color: var(--secondary-color);
1229
- }
1230
-
1231
- .pinecone-health-error {
1232
- color: var(--error-color);
1233
- background-color: #fef2f2;
1234
- border: 1px solid #fecaca;
1235
- border-radius: 0.25rem;
1236
- }
1237
-
1238
- /* No results state */
1239
- .pinecone-health-no-results {
1240
- padding: 1rem;
1241
- text-align: center;
1242
- color: var(--secondary-color);
1243
- background-color: #f9fafb;
1244
- border: 1px solid var(--border-color);
1245
- border-radius: 0.25rem;
1246
- }
1247
-
1248
- .pinecone-health-no-results p {
1249
- margin: 0;
1250
- }
1251
-
1252
- /* Status container and badge */
1253
- .pinecone-health-status-container {
1254
- display: flex;
1255
- align-items: center;
1256
- gap: 0.5rem;
1257
- margin-bottom: 1rem;
1258
- }
1259
-
1260
- .pinecone-health-status {
1261
- display: inline-block;
1262
- padding: 0.25rem 0.75rem;
1263
- border-radius: 0.25rem;
1264
- font-size: 0.75rem;
1265
- font-weight: 600;
1266
- text-transform: uppercase;
1267
- }
1268
-
1269
- .pinecone-health-status.status-healthy {
1270
- background-color: #dcfce7;
1271
- color: #166534;
1272
- }
1273
-
1274
- .pinecone-health-status.status-error {
1275
- background-color: #fef2f2;
1276
- color: #991b1b;
1277
- }
1278
-
1279
- .pinecone-health-status.status-warning {
1280
- background-color: #fef3c7;
1281
- color: #92400e;
1282
- }
1283
-
1284
- .pinecone-health-status.status-running {
1285
- background-color: #dbeafe;
1286
- color: #1e40af;
1287
- }
1288
-
1289
- /* Summary statistics */
1290
- .pinecone-health-summary {
1291
- display: flex;
1292
- gap: 2rem;
1293
- margin-bottom: 1.5rem;
1294
- padding: 1rem;
1295
- background-color: #f9fafb;
1296
- border-radius: 0.25rem;
1297
- flex-wrap: wrap;
1298
- }
1299
-
1300
- .pinecone-health-stat {
1301
- display: flex;
1302
- flex-direction: column;
1303
- align-items: center;
1304
- min-width: 80px;
1305
- }
1306
-
1307
- .pinecone-stat-label {
1308
- font-size: 0.875rem;
1309
- color: var(--secondary-color);
1310
- margin-bottom: 0.25rem;
1311
- }
1312
-
1313
- .pinecone-stat-value {
1314
- font-size: 1.5rem;
1315
- font-weight: 600;
1316
- color: var(--text-color);
1317
- }
1318
-
1319
- .pinecone-stat-value.stat-healthy {
1320
- color: #16a34a;
1321
- }
1322
-
1323
- .pinecone-stat-value.stat-error {
1324
- color: var(--error-color);
1325
- }
1326
-
1327
- /* All good state */
1328
- .pinecone-health-all-good {
1329
- padding: 1.5rem;
1330
- text-align: center;
1331
- background-color: #f0fdf4;
1332
- border: 1px solid #bbf7d0;
1333
- border-radius: 0.25rem;
1334
- color: #166534;
1335
- }
1336
-
1337
- .pinecone-health-all-good p {
1338
- margin: 0;
1339
- font-weight: 500;
1340
- }
1341
-
1342
- /* Pinecone health table (shared styles for namespace and failures tables) */
1343
- .pinecone-health-table {
1344
- width: 100%;
1345
- border-collapse: collapse;
1346
- margin-top: 1rem;
1347
- table-layout: fixed;
1348
- }
1349
-
1350
- .pinecone-health-table th,
1351
- .pinecone-health-table td {
1352
- padding: 0.75rem;
1353
- text-align: left;
1354
- border-bottom: 1px solid var(--border-color);
1355
- }
1356
-
1357
- .pinecone-health-table th {
1358
- background-color: #f9fafb;
1359
- font-weight: 500;
1360
- font-size: 0.875rem;
1361
- color: var(--secondary-color);
1362
- }
1363
-
1364
- .pinecone-health-table td {
1365
- font-size: 0.875rem;
1366
- vertical-align: middle;
1367
- word-wrap: break-word;
1368
- }
1369
-
1370
- .pinecone-health-table tbody tr:hover {
1371
- background-color: #f9fafb;
1372
- }
1373
-
1374
- /* Namespace results table column widths */
1375
- #pinecone-namespace-container .pinecone-health-table th:nth-child(1),
1376
- #pinecone-namespace-container .pinecone-health-table td:nth-child(1) {
1377
- width: 25%;
1378
- }
1379
-
1380
- #pinecone-namespace-container .pinecone-health-table th:nth-child(2),
1381
- #pinecone-namespace-container .pinecone-health-table td:nth-child(2) {
1382
- width: 15%;
1383
- }
1384
-
1385
- #pinecone-namespace-container .pinecone-health-table th:nth-child(3),
1386
- #pinecone-namespace-container .pinecone-health-table td:nth-child(3),
1387
- #pinecone-namespace-container .pinecone-health-table th:nth-child(4),
1388
- #pinecone-namespace-container .pinecone-health-table td:nth-child(4),
1389
- #pinecone-namespace-container .pinecone-health-table th:nth-child(5),
1390
- #pinecone-namespace-container .pinecone-health-table td:nth-child(5) {
1391
- width: 12%;
1392
- text-align: right;
1393
- }
1394
-
1395
- #pinecone-namespace-container .pinecone-health-table th:nth-child(6),
1396
- #pinecone-namespace-container .pinecone-health-table td:nth-child(6) {
1397
- width: 12%;
1398
- text-align: center;
1399
- }
1400
-
1401
- /* Sample failures table column widths */
1402
- #pinecone-failures-container .pinecone-health-table th:nth-child(1),
1403
- #pinecone-failures-container .pinecone-health-table td:nth-child(1) {
1404
- width: 20%;
1405
- }
1406
-
1407
- #pinecone-failures-container .pinecone-health-table th:nth-child(2),
1408
- #pinecone-failures-container .pinecone-health-table td:nth-child(2) {
1409
- width: 15%;
1410
- }
1411
-
1412
- #pinecone-failures-container .pinecone-health-table th:nth-child(3),
1413
- #pinecone-failures-container .pinecone-health-table td:nth-child(3) {
1414
- width: 30%;
1415
- font-family: monospace;
1416
- font-size: 0.8rem;
1417
- }
1418
-
1419
- #pinecone-failures-container .pinecone-health-table th:nth-child(4),
1420
- #pinecone-failures-container .pinecone-health-table td:nth-child(4) {
1421
- width: 35%;
1422
- }
1423
-
1424
- /* Match indicator */
1425
- .pinecone-match-badge {
1426
- display: inline-block;
1427
- padding: 0.125rem 0.5rem;
1428
- border-radius: 0.25rem;
1429
- font-size: 0.75rem;
1430
- font-weight: 500;
1431
- }
1432
-
1433
- .pinecone-match-badge.match-yes {
1434
- background-color: #dcfce7;
1435
- color: #166534;
1436
- }
1437
-
1438
- .pinecone-match-badge.match-no {
1439
- background-color: #fef2f2;
1440
- color: #991b1b;
1441
- }
1442
-
1443
- /* Container headers */
1444
- #pinecone-namespace-container h3,
1445
- #pinecone-failures-container h3 {
1446
- font-size: 1rem;
1447
- font-weight: 500;
1448
- color: var(--text-color);
1449
- margin-bottom: 0.5rem;
1450
- margin-top: 1.5rem;
1451
- }
1452
-
1453
- #pinecone-failures-container h3 {
1454
- color: var(--error-color);
1455
- }
1456
-
1457
- /* ========================================
1458
- Install Status Review Panel (BAPI-384)
1459
- ======================================== */
1460
-
1461
- /* Intro paragraph below the page title */
1462
- .setup-detail-intro {
1463
- margin: 0.5rem 0 1.5rem;
1464
- font-size: 0.9rem;
1465
- color: var(--secondary-color);
1466
- line-height: 1.5;
1467
- }
1468
-
1469
- /* Top-level review panel; matches the drawer/panel border + radius + spacing */
1470
- .install-status-panel {
1471
- border: 1px solid var(--border-color);
1472
- border-radius: 0.25rem;
1473
- padding: 1rem;
1474
- margin-bottom: 2rem;
1475
- background-color: #f9fafb;
1476
- }
1477
-
1478
- .install-status-panel-title {
1479
- font-size: 1rem;
1480
- font-weight: 500;
1481
- color: var(--text-color);
1482
- margin-bottom: 0.75rem;
1483
- }
1484
-
1485
- /* Compact set/unset counts */
1486
- .install-status-summary {
1487
- display: flex;
1488
- flex-wrap: wrap;
1489
- align-items: center;
1490
- gap: 1rem;
1491
- font-size: 0.875rem;
1492
- color: var(--secondary-color);
1493
- margin-bottom: 1rem;
1494
- }
1495
-
1496
- .install-status-summary-count {
1497
- font-weight: 600;
1498
- color: var(--text-color);
1499
- }
1500
-
1501
- /* Manifest-driven group list */
1502
- .install-status-groups {
1503
- display: flex;
1504
- flex-direction: column;
1505
- gap: 1rem;
1506
- }
1507
-
1508
- .install-status-group {
1509
- border-top: 1px solid var(--border-color);
1510
- padding-top: 0.75rem;
1511
- }
1512
-
1513
- .install-status-group-title {
1514
- font-size: 0.875rem;
1515
- font-weight: 500;
1516
- color: var(--text-color);
1517
- margin-bottom: 0.5rem;
1518
- }
1519
-
1520
- .install-status-field-row {
1521
- display: flex;
1522
- flex-wrap: wrap;
1523
- align-items: center;
1524
- gap: 0.5rem;
1525
- padding: 0.375rem 0;
1526
- font-size: 0.875rem;
1527
- }
1528
-
1529
- .install-status-field-name {
1530
- font-weight: 500;
1531
- color: var(--text-color);
1532
- }
1533
-
1534
- .install-status-field-value {
1535
- color: var(--secondary-color);
1536
- word-break: break-word;
1537
- }
1538
-
1539
- .install-status-field-confirm {
1540
- font-size: 0.75rem;
1541
- font-style: italic;
1542
- color: #92400e;
1543
- }
1544
-
1545
- /* Unavailable / error area */
1546
- .install-status-error {
1547
- padding: 0.75rem 1rem;
1548
- font-size: 0.875rem;
1549
- color: var(--secondary-color);
1550
- background-color: #f9fafb;
1551
- border: 1px solid var(--border-color);
1552
- border-radius: 0.25rem;
1553
- }
1554
-
1555
- /* Base status badge — always pairs color with text, never color alone */
1556
- .install-status-badge {
1557
- display: inline-block;
1558
- padding: 0.125rem 0.5rem;
1559
- border-radius: 0.25rem;
1560
- font-size: 0.75rem;
1561
- font-weight: 500;
1562
- line-height: 1.4;
1563
- white-space: nowrap;
1564
- }
1565
-
1566
- .install-status-badge.status-set {
1567
- background-color: #dcfce7;
1568
- color: #166534;
1569
- }
1570
-
1571
- .install-status-badge.status-unset {
1572
- background-color: #fef3c7;
1573
- color: #92400e;
1574
- }
1575
-
1576
- .install-status-badge.status-loading {
1577
- background-color: #f1f5f9;
1578
- color: var(--secondary-color);
1579
- }
1580
-
1581
- .install-status-badge.status-unavailable {
1582
- background-color: #f1f5f9;
1583
- color: var(--secondary-color);
1584
- }
1585
-
1586
- /* Inline badge slot next to a field label */
1587
- .install-status-badge-slot {
1588
- display: inline-flex;
1589
- align-items: center;
1590
- margin-left: 6px;
1591
- vertical-align: middle;
1592
- }
1593
-
1594
- /* Keyboard-focusable edit affordance — matches existing link/button affordances */
1595
- .install-status-edit {
1596
- background: none;
1597
- border: none;
1598
- padding: 0;
1599
- font-size: 0.8rem;
1600
- font-weight: 500;
1601
- color: var(--primary-color, #2563eb);
1602
- text-decoration: underline;
1603
- cursor: pointer;
1604
- }
1605
-
1606
- .install-status-edit:hover {
1607
- text-decoration: none;
1608
- }
1609
-
1610
- .install-status-edit:focus-visible {
1611
- outline: 2px solid var(--primary-color, #2563eb);
1612
- outline-offset: 2px;
1613
- border-radius: 0.25rem;
1614
- }
1615
-
1616
- /* Mobile: keep labels/badges/edit controls from crowding the controls */
1617
- @media (max-width: 600px) {
1618
- .install-status-summary {
1619
- gap: 0.5rem;
1620
- }
1621
-
1622
- .install-status-field-row {
1623
- flex-direction: column;
1624
- align-items: flex-start;
1625
- }
1626
-
1627
- .install-status-badge-slot {
1628
- margin-left: 0;
1629
- margin-top: 0.25rem;
1630
- }
1631
- }
1632
-
1633
-
1634
- /*!*********************************************************************************************************!*\
1635
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/run-dashboard.css ***!
1636
- \*********************************************************************************************************/
1637
- /* src/css/run-dashboard.css */
1638
- /* Epic Conductor v2 run dashboard (BAPI-539, T8) — a dense, calm operations
1639
- surface. Reuses the Warm Coral + Cream tokens from globals.css instead of
1640
- hardcoding matching colors. Selectors are scoped under
1641
- .run-dashboard-container so nothing here leaks onto other pages. */
1642
-
1643
- .run-dashboard-container .section-header {
1644
- display: flex;
1645
- align-items: center;
1646
- justify-content: space-between;
1647
- gap: 1rem;
1648
- margin-bottom: 1rem;
1649
- }
1650
-
1651
- .run-dashboard-container .run-dashboard-error,
1652
- .run-dashboard-container .gate-matrix-error,
1653
- .run-dashboard-container .active-jobs-error,
1654
- .run-dashboard-container .needs-human-error {
1655
- background-color: #fef2f2;
1656
- border: 1px solid var(--error-color);
1657
- /* var(--error-color) text on this pale background is only 3.44:1 —
1658
- below the 4.5:1 normal-text floor. var(--primary-dark) on the same
1659
- background is 5.48:1. */
1660
- color: var(--primary-dark);
1661
- border-radius: 0.25rem;
1662
- padding: 0.5rem 0.75rem;
1663
- margin-bottom: 0.5rem;
1664
- font-size: 14px;
1665
- }
1666
-
1667
- /* -------------------------------------------------------------------- *
1668
- * Run health summary
1669
- * -------------------------------------------------------------------- */
1670
-
1671
- .run-dashboard-summary {
1672
- display: grid;
1673
- grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
1674
- gap: 1rem;
1675
- margin-bottom: 1.5rem;
1676
- }
1677
-
1678
- .run-health-card {
1679
- background: var(--surface-color);
1680
- border: 1px solid var(--border-color);
1681
- border-radius: 0.25rem;
1682
- padding: 0.75rem 1rem;
1683
- box-shadow: var(--box-shadow);
1684
- }
1685
-
1686
- .run-health-card--warning {
1687
- border-color: var(--dark-orange);
1688
- background: var(--secondary-button-background);
1689
- }
1690
-
1691
- .run-health-card--error {
1692
- border-color: var(--error-color);
1693
- background: #fef2f2;
1694
- }
1695
-
1696
- .run-health-card .card-label {
1697
- font-size: 14px;
1698
- color: var(--secondary-color);
1699
- text-transform: uppercase;
1700
- letter-spacing: 0.5px;
1701
- margin-bottom: 4px;
1702
- }
1703
-
1704
- .run-health-card .card-value {
1705
- font-size: 20px;
1706
- font-weight: 600;
1707
- color: var(--text-color);
1708
- }
1709
-
1710
- /* -------------------------------------------------------------------- *
1711
- * Ticket x Gate matrix
1712
- * -------------------------------------------------------------------- */
1713
-
1714
- .gate-matrix-wrapper {
1715
- overflow-x: auto;
1716
- }
1717
-
1718
- .gate-matrix-table {
1719
- width: 100%;
1720
- border-collapse: collapse;
1721
- font-size: 14px;
1722
- }
1723
-
1724
- .gate-matrix-table th,
1725
- .gate-matrix-table td {
1726
- padding: 8px 12px;
1727
- text-align: left;
1728
- border-bottom: 1px solid var(--border-color);
1729
- vertical-align: top;
1730
- }
1731
-
1732
- .gate-matrix-table th {
1733
- font-weight: 600;
1734
- color: var(--secondary-color);
1735
- white-space: nowrap;
1736
- }
1737
-
1738
- .gate-cell {
1739
- min-width: 96px;
1740
- }
1741
-
1742
- .gate-status-badge {
1743
- display: inline-block;
1744
- padding: 4px 8px;
1745
- border-radius: 999px;
1746
- font-size: 14px;
1747
- font-weight: 600;
1748
- text-transform: capitalize;
1749
- color: var(--text-color);
1750
- background: var(--light-grey);
1751
- }
1752
-
1753
- .gate-status-badge--passed {
1754
- /* white on var(--success-color) is only 2.54:1. This darker shade of the
1755
- same green is 5.34:1 against white. */
1756
- background: #0f7a53;
1757
- color: #ffffff;
1758
- }
1759
-
1760
- .gate-status-badge--in_progress,
1761
- .gate-status-badge--running {
1762
- background: var(--light-orange);
1763
- color: var(--text-color);
1764
- }
1765
-
1766
- .gate-status-badge--needs_human {
1767
- /* white on var(--error-color) is only 3.76:1. var(--primary-dark) is
1768
- 6.00:1 against white and reuses an existing token. */
1769
- background: var(--primary-dark);
1770
- color: #ffffff;
1771
- }
1772
-
1773
- .gate-status-badge--failed {
1774
- background: var(--primary-dark);
1775
- color: #ffffff;
1776
- }
1777
-
1778
- .gate-status-badge--pending,
1779
- .gate-status-badge--queued,
1780
- .gate-status-badge--skipped {
1781
- background: var(--light-grey);
1782
- color: var(--secondary-color);
1783
- }
1784
-
1785
- .gate-observation-detail {
1786
- margin-top: 4px;
1787
- }
1788
-
1789
- .gate-observation-detail summary {
1790
- cursor: pointer;
1791
- font-size: 14px;
1792
- color: var(--secondary-color);
1793
- }
1794
-
1795
- .observation-detail-body {
1796
- margin-top: 4px;
1797
- padding: 8px;
1798
- background: var(--background-color);
1799
- border: 1px solid var(--border-color);
1800
- border-radius: 0.25rem;
1801
- font-size: 14px;
1802
- white-space: pre-wrap;
1803
- word-break: break-word;
1804
- }
1805
-
1806
- /* -------------------------------------------------------------------- *
1807
- * Active jobs
1808
- * -------------------------------------------------------------------- */
1809
-
1810
- .active-job-row {
1811
- display: flex;
1812
- flex-wrap: wrap;
1813
- align-items: center;
1814
- gap: 12px;
1815
- padding: 8px 12px;
1816
- border-bottom: 1px solid var(--border-color);
1817
- font-size: 14px;
1818
- }
1819
-
1820
- .active-job-row .phase-hint {
1821
- color: var(--secondary-color);
1822
- font-style: italic;
1823
- }
1824
-
1825
- .active-job-row .job-commit-count,
1826
- .active-job-row .job-activity {
1827
- color: var(--secondary-color);
1828
- }
1829
-
1830
- /* -------------------------------------------------------------------- *
1831
- * Needs-human incident cards
1832
- * -------------------------------------------------------------------- */
1833
-
1834
- .needs-human-card {
1835
- background: var(--surface-color);
1836
- border: 1px solid var(--dark-orange);
1837
- border-radius: 0.25rem;
1838
- padding: 1rem;
1839
- margin-bottom: 1rem;
1840
- }
1841
-
1842
- .needs-human-card h3 {
1843
- margin-bottom: 8px;
1844
- }
1845
-
1846
- .needs-human-field {
1847
- margin-bottom: 4px;
1848
- font-size: 14px;
1849
- }
1850
-
1851
- .needs-human-actions {
1852
- display: flex;
1853
- align-items: center;
1854
- gap: 12px;
1855
- margin-top: 8px;
1856
- }
1857
-
1858
- .needs-human-secondary-action {
1859
- color: var(--secondary-color);
1860
- font-size: 14px;
1861
- font-style: italic;
1862
- }
1863
-
1864
- /* -------------------------------------------------------------------- *
1865
- * Monospace + empty state
1866
- * -------------------------------------------------------------------- */
1867
-
1868
- .run-dashboard-container .monospace {
1869
- font-family: 'Courier New', Courier, monospace;
1870
- word-break: break-all;
1871
- }
1872
-
1873
- .run-dashboard-container .empty-state {
1874
- padding: 1.5rem;
1875
- text-align: center;
1876
- color: var(--secondary-color);
1877
- font-size: 16px;
1878
- }
1879
-
1880
- /* -------------------------------------------------------------------- *
1881
- * Responsive
1882
- * -------------------------------------------------------------------- */
1883
-
1884
- @media (max-width: 768px) {
1885
- .run-dashboard-container .section-header {
1886
- flex-direction: column;
1887
- align-items: flex-start;
1888
- gap: 0.75rem;
1889
- }
1890
-
1891
- .run-dashboard-summary {
1892
- grid-template-columns: 1fr;
1893
- }
1894
-
1895
- .gate-matrix-table {
1896
- font-size: 14px;
1897
- }
1898
-
1899
- .active-job-row {
1900
- flex-direction: column;
1901
- align-items: flex-start;
1902
- gap: 4px;
1903
- }
1904
- }
1905
-
1906
- /*!********************************************************************************************************!*\
1907
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/public-pages.css ***!
1908
- \********************************************************************************************************/
1909
- /* Public-page styling for the homepage and the legal placeholder pages.
1910
- Class-scoped only — no overrides of body, :root, .hidden, or form elements. */
1911
-
1912
- .public-page-header {
1913
- display: flex;
1914
- align-items: center;
1915
- justify-content: flex-start;
1916
- padding: 1rem 0;
1917
- margin-bottom: 1.5rem;
1918
- border-bottom: 1px solid var(--border-color);
1919
- }
1920
-
1921
- .public-page-header a {
1922
- display: inline-flex;
1923
- align-items: center;
1924
- text-decoration: none;
1925
- color: inherit;
1926
- }
1927
-
1928
- .public-page-logo {
1929
- height: auto;
1930
- max-width: 240px;
1931
- width: 100%;
1932
- display: block;
1933
- }
1934
-
1935
- @media (max-width: 480px) {
1936
- .public-page-logo {
1937
- max-width: 180px;
1938
- }
1939
- }
1940
-
1941
- .public-page-hero {
1942
- padding: 2rem 0 1.5rem;
1943
- }
1944
-
1945
- .public-page-hero h1 {
1946
- font-size: 1.75rem;
1947
- font-weight: 600;
1948
- color: var(--text-color);
1949
- margin-bottom: 1rem;
1950
- }
1951
-
1952
- .public-page-copy {
1953
- font-size: 1rem;
1954
- color: var(--text-color);
1955
- line-height: 1.6;
1956
- }
1957
-
1958
- .public-page-copy p {
1959
- margin-bottom: 0.75rem;
1960
- }
1961
-
1962
- .public-page-actions {
1963
- margin-top: 1.5rem;
1964
- display: flex;
1965
- gap: 0.75rem;
1966
- flex-wrap: wrap;
1967
- }
1968
-
1969
- .public-page-actions a {
1970
- text-decoration: none;
1971
- display: inline-block;
1972
- }
1973
-
1974
- .public-page-footer {
1975
- margin-top: 3rem;
1976
- padding-top: 1.5rem;
1977
- border-top: 1px solid var(--border-color);
1978
- color: var(--secondary-color);
1979
- font-size: 0.875rem;
1980
- }
1981
-
1982
- .public-page-footer-nav {
1983
- display: flex;
1984
- gap: 1.5rem;
1985
- flex-wrap: wrap;
1986
- }
1987
-
1988
- .public-page-footer-nav a {
1989
- color: var(--secondary-color);
1990
- text-decoration: none;
1991
- }
1992
-
1993
- .public-page-footer-nav a:hover {
1994
- color: var(--primary-color);
1995
- text-decoration: underline;
1996
- }
1997
-
1998
- .legal-page-content {
1999
- max-width: 800px;
2000
- background-color: var(--surface-color);
2001
- border-radius: 0.5rem;
2002
- padding: 2rem;
2003
- box-shadow: var(--box-shadow);
2004
- }
2005
-
2006
- .legal-page-content h1 {
2007
- font-size: 1.75rem;
2008
- font-weight: 600;
2009
- color: var(--text-color);
2010
- margin-bottom: 0.5rem;
2011
- }
2012
-
2013
- .legal-page-content .last-updated {
2014
- color: var(--secondary-color);
2015
- font-size: 0.875rem;
2016
- margin-bottom: 1.5rem;
2017
- }
2018
-
2019
- .legal-section {
2020
- margin-bottom: 1.5rem;
2021
- }
2022
-
2023
- .legal-section h2 {
2024
- font-size: 1.25rem;
2025
- font-weight: 600;
2026
- color: var(--text-color);
2027
- margin-bottom: 0.5rem;
2028
- }
2029
-
2030
- .legal-section p {
2031
- color: var(--text-color);
2032
- line-height: 1.6;
2033
- margin-bottom: 0.75rem;
2034
- }
2035
-
2036
- /*!**********************************************************************************************************!*\
2037
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/project-detail.css ***!
2038
- \**********************************************************************************************************/
2039
- /* src/css/project-detail.css */
2040
-
2041
- /* Collapsible drawers specific to Project Detail View */
2042
- .collapsible-drawers {
2043
- margin-bottom: 2rem;
2044
- }
2045
-
2046
- .drawer {
2047
- border: 1px solid var(--border-color);
2048
- border-radius: 0.25rem;
2049
- margin-bottom: 1rem;
2050
- overflow: hidden;
2051
- }
2052
-
2053
- .drawer-header {
2054
- display: flex;
2055
- justify-content: space-between;
2056
- align-items: center;
2057
- padding: 1rem;
2058
- background-color: #f9fafb;
2059
- cursor: pointer;
2060
- }
2061
-
2062
- .drawer-header h2 {
2063
- font-size: 1rem;
2064
- font-weight: 500;
2065
- }
2066
-
2067
- .toggle-drawer {
2068
- background: none;
2069
- border: none;
2070
- font-size: 1rem;
2071
- cursor: pointer;
2072
- transition: transform var(--drawer-transition);
2073
- }
2074
-
2075
- .drawer-content {
2076
- padding: 1rem;
2077
- border-top: 1px solid var(--border-color);
2078
- /* Visibility is controlled solely by the global `.hidden` class (BAPI-301);
2079
- `.expanded` is reserved for header/glyph styling. The shared drawer helper
2080
- sets the ▲/▼ glyph text directly, so no CSS rotation is applied. */
2081
- }
2082
-
2083
- /* Save button container specific to Project Detail View */
2084
- .save-container {
2085
- display: flex;
2086
- justify-content: center;
2087
- margin-top: 2rem;
2088
- }
2089
-
2090
- .save-container .btn {
2091
- padding: 0.75rem 1.5rem;
2092
- font-size: 1rem;
2093
- }
2094
-
2095
- /* Static text display (like project path) */
2096
- .form-static-text {
2097
- background-color: var(--background-color);
2098
- padding: 0.5rem;
2099
- border: 1px solid var(--border-color);
2100
- border-radius: 0.25rem;
2101
- font-family: monospace; /* Or choose appropriate font */
2102
- color: var(--secondary-color);
2103
- margin-top: 0.5rem; /* Align with inputs */
2104
- word-break: break-all; /* Prevent long paths from breaking layout */
2105
- }
2106
-
2107
- /* Header title specific to this page */
2108
- .header-title {
2109
- font-size: 1.2rem;
2110
- font-weight: 600;
2111
- color: var(--text-color);
2112
- }
2113
-
2114
- /* Explain Link Styling */
2115
- .explain-link {
2116
- margin-left: 0.5rem;
2117
- color: var(--primary-color);
2118
- text-decoration: none;
2119
- font-weight: bold;
2120
- }
2121
-
2122
- .explain-link:hover {
2123
- text-decoration: underline;
2124
- }
2125
-
2126
- .explanation-content {
2127
- margin-top: 0.5rem;
2128
- padding: 0.75rem;
2129
- background-color: #eef2ff; /* Light indigo background */
2130
- border-left: 4px solid var(--primary-color);
2131
- font-size: 0.875rem;
2132
- color: #374151; /* Gray-700 */
2133
- border-radius: 0 0.25rem 0.25rem 0; /* Slight rounding */
2134
- flex-basis: 100%;
2135
- width: 100%;
2136
- }
2137
-
2138
- .project-card-actions {
2139
- display: flex;
2140
- justify-content: space-between;
2141
- align-items: center;
2142
- }
2143
-
2144
- /* Explanation link and content styles */
2145
- .explain-link {
2146
- display: inline-block;
2147
- margin-left: 6px;
2148
- padding: 1px 6px;
2149
- font-size: 0.8em;
2150
- font-weight: bold;
2151
- color: #fff;
2152
- background-color: #6c757d; /* Bootstrap secondary color */
2153
- border-radius: 50%;
2154
- text-decoration: none;
2155
- cursor: pointer;
2156
- vertical-align: middle; /* Align with the label text */
2157
- line-height: 1.2;
2158
- }
2159
-
2160
- .explain-link:hover {
2161
- background-color: #444;
2162
- text-decoration: none;
2163
- }
2164
-
2165
- .explanation-content {
2166
- /* Base styling only; visibility is toggled via the .hidden class so the JS
2167
- can show/hide help without inline display mutations. */
2168
- margin-top: 8px;
2169
- padding: 10px;
2170
- border: 1px solid #ced4da; /* Light grey border */
2171
- border-radius: 4px;
2172
- background-color: #f8f9fa; /* Light background */
2173
- font-size: 0.9em;
2174
- color: #495057;
2175
- line-height: 1.4;
2176
- }
2177
-
2178
- /* The shared setup-detail.css defines a global `.explanation-content { display:
2179
- none }` that also lands in the bundled stylesheet. Scope the visible/hidden
2180
- states to this page's container so they win deterministically regardless of
2181
- bundle order, while leaving the setup-detail page's own behavior untouched.
2182
- The .hidden variant has higher specificity so it always hides when present. */
2183
- #project-detail-container .explanation-content {
2184
- display: block;
2185
- }
2186
-
2187
- #project-detail-container .explanation-content.hidden {
2188
- display: none;
2189
- }
2190
-
2191
- /* Added styles for JSON input textarea */
2192
- .code-input {
2193
- font-family: 'Courier New', Courier, monospace;
2194
- border: 1px solid var(--border-color);
2195
- border-radius: 0.25rem;
2196
- padding: 0.75rem;
2197
- font-size: 0.9rem;
2198
- line-height: 1.4;
2199
- width: 100%; /* Ensure it takes full width */
2200
- }
2201
-
2202
- /* Add styles for input validation feedback */
2203
- .form-error {
2204
- color: #dc3545; /* Bootstrap danger color */
2205
- font-size: 0.875em;
2206
- margin-top: 0.25rem;
2207
- display: none; /* Hide by default */
2208
- }
2209
-
2210
- input.input-error,
2211
- textarea.input-error,
2212
- select.input-error {
2213
- border-color: #dc3545;
2214
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); /* Optional: Add a glow */
2215
- }
2216
-
2217
- /* Ensure error messages are shown when they have content */
2218
- .form-error:not(:empty) {
2219
- display: block;
2220
- }
2221
-
2222
- /* Added styles for validation error messages */
2223
- .form-error {
2224
- color: var(--error-color);
2225
- font-size: 0.875rem;
2226
- margin-top: 0.5rem;
2227
- display: none; /* Hidden by default */
2228
- }
2229
-
2230
- .form-error.visible {
2231
- display: block; /* Visible when needed */
2232
- }
2233
-
2234
- /* MCP Validation Manuals selector
2235
- Lay each manual out on its own row with clear spacing between the checkbox and
2236
- its label. JS-emitted classes (.mcp-doc-option/.mcp-doc-checkbox/.mcp-doc-label)
2237
- are only styled here — never renamed. */
2238
- .mcp-docs-checkbox-list {
2239
- display: flex;
2240
- flex-direction: column;
2241
- gap: 0.5rem;
2242
- margin-top: 0.5rem;
2243
- }
2244
-
2245
- .mcp-doc-option {
2246
- display: flex;
2247
- align-items: center;
2248
- gap: 0.5rem;
2249
- line-height: 1.4;
2250
- cursor: pointer;
2251
- }
2252
-
2253
- .mcp-doc-checkbox {
2254
- margin: 0; /* drop inconsistent default checkbox margins */
2255
- flex-shrink: 0; /* keep the checkbox from shrinking next to long labels */
2256
- }
2257
-
2258
- .mcp-doc-label {
2259
- /* Spacing comes from the parent's gap; keep the label inline and readable. */
2260
- display: inline;
2261
- }
2262
-
2263
- .mcp-docs-empty-state {
2264
- margin-top: 0.5rem;
2265
- padding: 0.5rem 0.75rem;
2266
- border: 1px solid var(--border-color);
2267
- border-radius: 0.25rem;
2268
- color: var(--secondary-color);
2269
- font-size: 0.875rem;
2270
- }
2271
-
2272
- /* --- CI Follow-up sub-section (BAPI-308) --- */
2273
- /* Page-scoped under #project-detail-container so these styles never leak to other
2274
- Configure-page-like layouts. Uses existing semantic CSS variables. */
2275
- #project-detail-container .ci-followup-section {
2276
- border: 1px solid var(--border-color);
2277
- border-radius: 0.25rem;
2278
- padding: 0.75rem;
2279
- margin-top: 0.5rem;
2280
- }
2281
-
2282
- #project-detail-container .ci-followup-controls {
2283
- display: flex;
2284
- flex-direction: column;
2285
- gap: 0.75rem;
2286
- margin-top: 0.75rem;
2287
- }
2288
-
2289
- #project-detail-container .ci-followup-strategy-option {
2290
- display: block;
2291
- margin-bottom: 0.5rem;
2292
- }
2293
-
2294
- /* .form-help styles all page-scoped help paragraphs (the deep-research stall
2295
- timeout helper and the CI Follow-up strategy descriptions), not only the CI
2296
- Follow-up sub-section. */
2297
- #project-detail-container .form-help {
2298
- margin: 0.25rem 0 0;
2299
- color: var(--secondary-color);
2300
- font-size: 0.875rem;
2301
- }
2302
-
2303
- #project-detail-container .ci-followup-byte-counter {
2304
- margin-top: 0.25rem;
2305
- color: var(--secondary-color);
2306
- font-size: 0.8125rem;
2307
- }
2308
-
2309
- #project-detail-container .ci-followup-byte-counter.over-limit {
2310
- color: var(--error-color);
2311
- }
2312
-
2313
- /* BAPI-355: low-emphasis grouping for the TDD/FSD document-format controls.
2314
- Keeps the existing drawer rhythm (form-group spacing, textarea readability,
2315
- focus states inherited from the base textarea rules) while visually grouping
2316
- the two document-format textareas under a shared intro paragraph. */
2317
- #project-detail-container .form-group-document-format {
2318
- border-left: 3px solid var(--border-color);
2319
- padding-left: 0.75rem;
2320
- }
2321
-
2322
- #project-detail-container .document-format-help {
2323
- margin: 0 0 0.5rem;
2324
- color: var(--secondary-color);
2325
- font-size: 0.875rem;
2326
- line-height: 1.4;
2327
- }
2328
-
2329
- /* --- Difficulty-adaptive review policy overrides (BAPI-579) --- */
2330
- /* Page-scoped, low-specificity kebab-case classes that reuse the cream/coral
2331
- globals.css tokens (no new palette). State differences (default / override /
2332
- invalid) are always carried by a text label, never color alone. */
2333
- #project-detail-container .review-policy-section {
2334
- border: 1px solid var(--border-color);
2335
- border-radius: 0.25rem;
2336
- padding: 0.75rem;
2337
- margin-top: 0.5rem;
2338
- }
2339
-
2340
- #project-detail-container .review-policy-intro {
2341
- margin: 0.25rem 0 0.75rem;
2342
- }
2343
-
2344
- /* Compact 1-10 boundary reference strip (display-only). */
2345
- #project-detail-container .review-policy-boundary-strip {
2346
- display: flex;
2347
- flex-wrap: wrap;
2348
- gap: 0.5rem;
2349
- margin-bottom: 0.75rem;
2350
- }
2351
-
2352
- #project-detail-container .review-policy-boundary-item {
2353
- display: inline-flex;
2354
- align-items: baseline;
2355
- gap: 0.375rem;
2356
- padding: 0.25rem 0.5rem;
2357
- border: 1px solid var(--border-color);
2358
- border-radius: 999px;
2359
- background-color: var(--secondary-button-background);
2360
- font-size: 0.8125rem;
2361
- }
2362
-
2363
- #project-detail-container .review-policy-boundary-label {
2364
- color: var(--text-color);
2365
- font-weight: 600;
2366
- }
2367
-
2368
- #project-detail-container .review-policy-boundary-range {
2369
- color: var(--secondary-color);
2370
- }
2371
-
2372
- #project-detail-container .review-policy-toolbar {
2373
- display: flex;
2374
- justify-content: flex-end;
2375
- margin-bottom: 0.75rem;
2376
- }
2377
-
2378
- #project-detail-container .review-policy-buckets {
2379
- display: flex;
2380
- flex-direction: column;
2381
- gap: 0.75rem;
2382
- }
2383
-
2384
- #project-detail-container .review-policy-bucket-card {
2385
- border: 1px solid var(--border-color);
2386
- border-radius: 0.25rem;
2387
- padding: 0.75rem;
2388
- background-color: var(--surface-color);
2389
- }
2390
-
2391
- /* Invalid buckets get a coral edge AND a visible error message below the header. */
2392
- #project-detail-container .review-policy-bucket-card--invalid {
2393
- border-color: var(--error-color);
2394
- box-shadow: 0 0 0 0.15rem rgba(239, 68, 68, 0.2);
2395
- }
2396
-
2397
- #project-detail-container .review-policy-bucket-header {
2398
- display: flex;
2399
- flex-wrap: wrap;
2400
- align-items: center;
2401
- gap: 0.5rem;
2402
- margin-bottom: 0.5rem;
2403
- }
2404
-
2405
- #project-detail-container .review-policy-bucket-heading {
2406
- display: flex;
2407
- flex-direction: column;
2408
- margin-right: auto;
2409
- }
2410
-
2411
- #project-detail-container .review-policy-bucket-name {
2412
- font-weight: 600;
2413
- color: var(--text-color);
2414
- }
2415
-
2416
- #project-detail-container .review-policy-bucket-range {
2417
- font-size: 0.8125rem;
2418
- color: var(--secondary-color);
2419
- }
2420
-
2421
- /* State chip: text label always present ("Using built-in defaults" /
2422
- "Override active"); the color is a redundant, secondary cue. */
2423
- #project-detail-container .review-policy-state {
2424
- padding: 0.125rem 0.5rem;
2425
- border-radius: 999px;
2426
- font-size: 0.75rem;
2427
- font-weight: 600;
2428
- border: 1px solid var(--border-color);
2429
- }
2430
-
2431
- #project-detail-container .review-policy-state--default {
2432
- color: var(--secondary-color);
2433
- background-color: var(--secondary-button-background);
2434
- }
2435
-
2436
- #project-detail-container .review-policy-state--override {
2437
- color: var(--primary-dark);
2438
- border-color: var(--primary-color);
2439
- background-color: var(--secondary-button-background);
2440
- }
2441
-
2442
- #project-detail-container .review-policy-bucket-error {
2443
- margin-top: 0;
2444
- margin-bottom: 0.5rem;
2445
- }
2446
-
2447
- /* Two automation columns side-by-side; stacks on narrow viewports (see media). */
2448
- #project-detail-container .review-policy-groups {
2449
- display: flex;
2450
- flex-wrap: wrap;
2451
- gap: 0.75rem;
2452
- }
2453
-
2454
- #project-detail-container .review-policy-group {
2455
- flex: 1 1 220px;
2456
- min-width: 0;
2457
- border: 1px solid var(--border-color);
2458
- border-radius: 0.25rem;
2459
- padding: 0.5rem;
2460
- background-color: var(--background-color);
2461
- }
2462
-
2463
- #project-detail-container .review-policy-group-title {
2464
- font-weight: 600;
2465
- font-size: 0.875rem;
2466
- margin-bottom: 0.5rem;
2467
- color: var(--text-color);
2468
- }
2469
-
2470
- #project-detail-container .review-policy-rounds {
2471
- display: flex;
2472
- flex-direction: column;
2473
- gap: 0.5rem;
2474
- margin-bottom: 0.5rem;
2475
- }
2476
-
2477
- #project-detail-container .review-policy-round {
2478
- display: flex;
2479
- align-items: center;
2480
- gap: 0.5rem;
2481
- }
2482
-
2483
- #project-detail-container .review-policy-round-label {
2484
- display: flex;
2485
- align-items: center;
2486
- gap: 0.375rem;
2487
- flex: 1 1 auto;
2488
- min-width: 0;
2489
- }
2490
-
2491
- #project-detail-container .review-policy-round-label-text {
2492
- font-size: 0.8125rem;
2493
- color: var(--secondary-color);
2494
- white-space: nowrap;
2495
- }
2496
-
2497
- #project-detail-container .review-policy-tier-select {
2498
- flex: 1 1 auto;
2499
- min-width: 0;
2500
- padding: 0.25rem 0.375rem;
2501
- border: 1px solid var(--border-color);
2502
- border-radius: 0.25rem;
2503
- background-color: var(--surface-color);
2504
- color: var(--text-color);
2505
- font-size: 0.875rem;
2506
- }
2507
-
2508
- #project-detail-container .review-policy-empty {
2509
- margin: 0 0 0.5rem;
2510
- font-size: 0.8125rem;
2511
- font-style: italic;
2512
- color: var(--secondary-color);
2513
- }
2514
-
2515
- /* Buttons: neutral by default; the two reset actions read as low-emphasis. */
2516
- #project-detail-container .review-policy-add-round,
2517
- #project-detail-container .review-policy-remove-round,
2518
- #project-detail-container .review-policy-reset-bucket,
2519
- #project-detail-container .review-policy-reset-all {
2520
- padding: 0.25rem 0.625rem;
2521
- border: 1px solid var(--border-color);
2522
- border-radius: 0.25rem;
2523
- background-color: var(--secondary-button-background);
2524
- color: var(--text-color);
2525
- font-size: 0.8125rem;
2526
- cursor: pointer;
2527
- }
2528
-
2529
- #project-detail-container .review-policy-add-round:hover:not(:disabled),
2530
- #project-detail-container .review-policy-remove-round:hover:not(:disabled),
2531
- #project-detail-container .review-policy-reset-bucket:hover,
2532
- #project-detail-container .review-policy-reset-all:hover {
2533
- border-color: var(--primary-color);
2534
- color: var(--primary-dark);
2535
- }
2536
-
2537
- #project-detail-container .review-policy-add-round:disabled,
2538
- #project-detail-container .review-policy-remove-round:disabled {
2539
- opacity: 0.5;
2540
- cursor: not-allowed;
2541
- }
2542
-
2543
- /* Keep a clearly-visible keyboard focus ring on every interactive control. */
2544
- #project-detail-container .review-policy-tier-select:focus-visible,
2545
- #project-detail-container .review-policy-add-round:focus-visible,
2546
- #project-detail-container .review-policy-remove-round:focus-visible,
2547
- #project-detail-container .review-policy-reset-bucket:focus-visible,
2548
- #project-detail-container .review-policy-reset-all:focus-visible {
2549
- outline: 2px solid var(--primary-color);
2550
- outline-offset: 1px;
2551
- }
2552
-
2553
- /* Stack the clarify/critique groups on narrow viewports. */
2554
- @media (max-width: 768px) {
2555
- #project-detail-container .review-policy-groups {
2556
- flex-direction: column;
2557
- }
2558
-
2559
- #project-detail-container .review-policy-group {
2560
- flex-basis: auto;
2561
- }
2562
- }
2563
- /* ---- BAPI-590: simplified Code Reviewer drawer (two-check surface) ---- */
2564
- /* Page-scoped hierarchy, spacing rhythm (8/12/16/24px), and warning semantics
2565
- for the reviewer drawer. Reuses existing surface/border/radius/color tokens
2566
- rather than introducing a new visual system. */
2567
- #project-detail-container .drawer-code-review .drawer-header h2 {
2568
- font-size: 1.25rem;
2569
- font-weight: 600;
2570
- color: var(--text-color);
2571
- }
2572
-
2573
- #project-detail-container .code-review-supporting-text {
2574
- margin: 8px 0 24px;
2575
- font-size: 0.9rem;
2576
- line-height: 1.5;
2577
- color: var(--secondary-color, #555);
2578
- }
2579
-
2580
- /* The Critical Priorities subsection reads as a related group, not a new card. */
2581
- #project-detail-container .code-review-subsection {
2582
- margin-top: 24px;
2583
- padding: 16px;
2584
- border: 1px solid var(--border-color, #e0e0e0);
2585
- border-radius: 6px;
2586
- background: var(--surface-color, #fafafa);
2587
- }
2588
-
2589
- #project-detail-container .code-review-subsection-heading {
2590
- margin: 0 0 12px;
2591
- font-size: 1rem;
2592
- font-weight: 600;
2593
- color: var(--text-color);
2594
- }
2595
-
2596
- #project-detail-container .drawer-code-review .form-group label {
2597
- font-weight: 600;
2598
- }
2599
-
2600
- #project-detail-container #critical_priorities {
2601
- min-height: 140px;
2602
- width: 100%;
2603
- resize: vertical;
2604
- font: inherit;
2605
- }
2606
-
2607
- /* Priorities warning: shared warning semantics with visible copy so severity is
2608
- never conveyed by color alone. Distinct from `.input-error`/`--error-color`. */
2609
- #project-detail-container .drawer-code-review .warning {
2610
- margin-top: 8px;
2611
- padding: 8px 12px;
2612
- border: 1px solid var(--warning-color, #b26a00);
2613
- border-radius: 4px;
2614
- background: var(--warning-bg, #fff6e5);
2615
- color: var(--warning-text, #7a4a00);
2616
- font-size: 0.85rem;
2617
- line-height: 1.4;
2618
- }
2619
-
2620
- /* Keep a clearly-visible coral keyboard focus ring and touch-friendly targets. */
2621
- #project-detail-container .drawer-code-review .toggle-drawer:focus-visible,
2622
- #project-detail-container .drawer-code-review input[type="checkbox"]:focus-visible,
2623
- #project-detail-container #critical_priorities:focus-visible {
2624
- outline: 2px solid var(--primary-color);
2625
- outline-offset: 1px;
2626
- }
2627
-
2628
- /* Narrow viewports: reduce padding and let content wrap without horizontal scroll. */
2629
- @media (max-width: 768px) {
2630
- #project-detail-container .code-review-subsection {
2631
- padding: 12px;
2632
- }
2633
-
2634
- #project-detail-container .code-review-supporting-text,
2635
- #project-detail-container .drawer-code-review .warning,
2636
- #project-detail-container .drawer-code-review label {
2637
- overflow-wrap: anywhere;
2638
- }
2639
- }
2640
-
2641
- /*!*************************************************************************************************************!*\
2642
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/optimize_analysis.css ***!
2643
- \*************************************************************************************************************/
2644
- /* Code Analysis Styling */
2645
-
2646
- .hidden {
2647
- display: none !important;
2648
- }
2649
-
2650
- .analysis-section {
2651
- margin-bottom: 2rem;
2652
- padding-bottom: 1.5rem;
2653
- border-bottom: 1px solid var(--border-color);
2654
- }
2655
-
2656
- #build-section {
2657
- padding-top: 2rem;
2658
- }
2659
-
2660
- .analysis-section:last-child {
2661
- border-bottom: none;
2662
- }
2663
-
2664
- .analysis-section h4 {
2665
- margin-bottom: 1rem;
2666
- font-size: 1.1rem;
2667
- font-weight: 600;
2668
- }
2669
-
2670
- .analysis-info-label {
2671
- margin-bottom: 10px;
2672
- font-style: italic;
2673
- color: #555;
2674
- line-height: 1.5;
2675
- }
2676
-
2677
- .reanalyze-container {
2678
- margin-top: 10px;
2679
- font-size: 0.9em;
2680
- }
2681
-
2682
- .reanalyze-container p {
2683
- margin: 0;
2684
- }
2685
-
2686
- .reanalyze-container a {
2687
- color: var(--primary-color);
2688
- text-decoration: none;
2689
- font-weight: 500;
2690
- }
2691
-
2692
- .reanalyze-container a:hover {
2693
- text-decoration: underline;
2694
- }
2695
-
2696
- .code-analysis {
2697
- margin-top: 2rem;
2698
- padding: 1rem 0;
2699
- border-top: 1px solid var(--border-color);
2700
- }
2701
-
2702
- .code-analysis h3 {
2703
- margin-bottom: 1rem;
2704
- font-size: 1.1rem;
2705
- font-weight: 600;
2706
- }
2707
-
2708
- .code-analysis form {
2709
- display: flex;
2710
- flex-direction: column;
2711
- gap: 1rem;
2712
- margin-bottom: 1rem;
2713
- }
2714
-
2715
- .code-analysis form > div {
2716
- display: flex;
2717
- flex-direction: column;
2718
- gap: 0.25rem;
2719
- }
2720
-
2721
- .code-analysis label {
2722
- font-weight: 500;
2723
- color: var(--text-color);
2724
- }
2725
-
2726
- .code-analysis select,
2727
- .code-analysis textarea {
2728
- padding: 0.5rem;
2729
- border: 1px solid var(--border-color);
2730
- border-radius: 0.25rem;
2731
- font-family: inherit;
2732
- }
2733
-
2734
- .code-analysis select:focus,
2735
- .code-analysis textarea:focus {
2736
- outline: none;
2737
- border-color: var(--primary-color);
2738
- box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
2739
- }
2740
-
2741
- .status-message {
2742
- margin-top: 0.5rem;
2743
- font-size: 0.875rem;
2744
- padding: 0.5rem;
2745
- border-radius: 0.25rem;
2746
- }
2747
-
2748
- .status-message.processing {
2749
- background-color: #e0f2fe;
2750
- color: #0277bd;
2751
- border: 1px solid #81d4fa;
2752
- }
2753
-
2754
- .status-message.success {
2755
- background-color: #e8f5e8;
2756
- color: #2e7d32;
2757
- border: 1px solid #a5d6a7;
2758
- }
2759
-
2760
- .status-message.error {
2761
- background-color: #ffebee;
2762
- color: #c62828;
2763
- border: 1px solid #ef9a9a;
2764
- }
2765
-
2766
- .textarea-wide {
2767
- width: 100%;
2768
- font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
2769
- font-size: 0.875rem;
2770
- line-height: 1.4;
2771
- resize: vertical;
2772
- }
2773
-
2774
- .code-analysis button {
2775
- align-self: flex-start;
2776
- margin-top: 0.5rem;
2777
- }
2778
-
2779
- /*!****************************************************************************************************!*\
2780
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/optimize.css ***!
2781
- \****************************************************************************************************/
2782
- /* src/css/optimize.css */
2783
-
2784
- /* Collapsible drawers specific to Optimize View */
2785
- .collapsible-drawers {
2786
- margin-bottom: 2rem;
2787
- }
2788
-
2789
- .drawer {
2790
- border: 1px solid var(--border-color);
2791
- border-radius: 0.25rem;
2792
- margin-bottom: 1rem;
2793
- overflow: hidden;
2794
- }
2795
-
2796
- .drawer-header {
2797
- display: flex;
2798
- justify-content: space-between;
2799
- align-items: center;
2800
- padding: 1rem;
2801
- background-color: #f9fafb;
2802
- cursor: pointer;
2803
- }
2804
-
2805
- .drawer-header h2 {
2806
- font-size: 1rem;
2807
- font-weight: 500;
2808
- }
2809
-
2810
- .toggle-drawer {
2811
- background: none;
2812
- border: none;
2813
- font-size: 1rem;
2814
- cursor: pointer;
2815
- transition: transform var(--drawer-transition);
2816
- }
2817
-
2818
- .drawer-content {
2819
- padding: 1rem;
2820
- border-top: 1px solid var(--border-color);
2821
- /* Visibility is controlled solely by the global `.hidden` class (BAPI-301);
2822
- `.expanded` is reserved for header/glyph styling. The shared drawer helper
2823
- sets the ▲/▼ glyph text directly, so no CSS rotation is applied. */
2824
- }
2825
-
2826
- /* Planner sub-section */
2827
- .planner-section {
2828
- display: flex;
2829
- flex-direction: column;
2830
- gap: 1rem;
2831
- margin-top: 1rem;
2832
- }
2833
-
2834
- select[multiple] {
2835
- min-height: 180px;
2836
- border: 1px solid var(--border-color);
2837
- border-radius: 0.25rem;
2838
- }
2839
-
2840
- /* Label styling */
2841
- label {
2842
- font-weight: 500;
2843
- color: var(--text-color);
2844
- margin-bottom: 0.5rem;
2845
- display: block;
2846
- }
2847
-
2848
- /* ====================================================================
2849
- * LEARN REPOSITORY STYLES
2850
- * ==================================================================== */
2851
- #learn-repository-section {
2852
- * {
2853
- margin-top: 1rem;
2854
- }
2855
-
2856
- padding-bottom: 2rem;
2857
- border-bottom: 1px solid var(--border-color);
2858
- }
2859
-
2860
- .learn-section {
2861
- padding-bottom: 1.5rem;
2862
- margin-bottom: 1.5rem;
2863
- border-bottom: 1px solid #e5e7eb;
2864
- }
2865
-
2866
- .learn-section:last-of-type {
2867
- border-bottom: none;
2868
- margin-bottom: 0;
2869
- }
2870
-
2871
- /* ====================================================================
2872
- * LEARN REPOSITORY PER-SECTION STATE CLASSES (BAPI-307)
2873
- *
2874
- * Declarative per-section state cues. Visibility is driven ONLY by the global
2875
- * `.hidden` class (toggled in JS by the renderer); these classes add a small
2876
- * left-border status accent and never set display/visibility. `data-state` is
2877
- * intentionally NOT used as a visibility mechanism, and `.hidden` is never
2878
- * redefined here.
2879
- * ==================================================================== */
2880
- .learn-section.lr-state-idle {
2881
- border-left: 3px solid var(--border-color);
2882
- padding-left: 1rem;
2883
- }
2884
-
2885
- .learn-section.lr-state-running {
2886
- border-left: 3px solid var(--primary-color);
2887
- padding-left: 1rem;
2888
- }
2889
-
2890
- .learn-section.lr-state-review {
2891
- border-left: 3px solid var(--primary-color);
2892
- padding-left: 1rem;
2893
- }
2894
-
2895
- .learn-section.lr-state-draft {
2896
- border-left: 3px solid var(--primary-color);
2897
- padding-left: 1rem;
2898
- }
2899
-
2900
- .learn-section.lr-state-complete {
2901
- border-left: 3px solid var(--text-color);
2902
- padding-left: 1rem;
2903
- }
2904
-
2905
- /* The Reanalyze control is now a <button> (BAPI-307) rather than an inline
2906
- * link; keep it left-aligned as a block action within the section actions. */
2907
- .lr-reanalyze-link {
2908
- display: inline-block;
2909
- }
2910
-
2911
- .lr-initial-mode-options {
2912
- display: flex;
2913
- flex-direction: row;
2914
- gap: 1.25rem;
2915
- align-items: center;
2916
- }
2917
-
2918
- .lr-initial-mode-options label {
2919
- display: inline;
2920
- font-weight: normal;
2921
- }
2922
-
2923
- .lr-in-progress-container {
2924
- margin: 0.5rem 0 1rem;
2925
- padding: 0.75rem 1rem;
2926
- border: 1px solid var(--border-color);
2927
- border-radius: 0.375rem;
2928
- }
2929
-
2930
- /* Horizontal separation between the reanalyze Confirm and Cancel buttons.
2931
- * Adjacent-sibling margin keeps the existing block-level radio labels from
2932
- * being reflowed, which a flex/gap container would do. */
2933
- .lr-reanalyze-confirm-btn + .lr-reanalyze-cancel-btn {
2934
- margin-left: 0.5rem;
2935
- }
2936
-
2937
- /* ====================================================================
2938
- * ESTIMATOR SECTION STYLES
2939
- * ==================================================================== */
2940
-
2941
- #estimator-section {
2942
- display: flex;
2943
- flex-direction: column;
2944
- gap: 1rem;
2945
- }
2946
-
2947
- #estimator-section > div {
2948
- padding: 1rem;
2949
- border-radius: 0.375rem;
2950
- border: 1px solid var(--border-color);
2951
- }
2952
-
2953
- #estimator-optimize {
2954
- background-color: #f0f9ff;
2955
- border-color: #0ea5e9;
2956
- }
2957
-
2958
- #estimator-running {
2959
- background-color: #fef3c7;
2960
- border-color: #f59e0b;
2961
- }
2962
-
2963
- #estimator-review {
2964
- background-color: #f0fdf4;
2965
- border-color: #22c55e;
2966
- }
2967
-
2968
- #estimator-loading {
2969
- background-color: #f3f4f6;
2970
- border-color: var(--border-color);
2971
- text-align: center;
2972
- }
2973
-
2974
- #range-editor {
2975
- margin: 1rem 0;
2976
- }
2977
-
2978
- #range-json {
2979
- width: 100%;
2980
- min-height: 300px;
2981
- padding: 0.75rem;
2982
- border: 1px solid var(--border-color);
2983
- border-radius: 0.375rem;
2984
- font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
2985
- font-size: 0.875rem;
2986
- line-height: 1.5;
2987
- background-color: #f8fafc;
2988
- resize: vertical;
2989
- }
2990
-
2991
- #range-json:focus {
2992
- outline: none;
2993
- border-color: var(--primary-color);
2994
- box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
2995
- }
2996
-
2997
- .estimator-actions {
2998
- display: flex;
2999
- gap: 0.5rem;
3000
- margin-top: 1rem;
3001
- }
3002
-
3003
- .estimator-actions .btn {
3004
- flex: 0 0 auto;
3005
- }
3006
-
3007
- /* Responsive design for estimator */
3008
- @media (max-width: 768px) {
3009
- #range-json {
3010
- min-height: 200px;
3011
- font-size: 0.75rem;
3012
- }
3013
-
3014
- .estimator-actions {
3015
- flex-direction: column;
3016
- }
3017
-
3018
- .estimator-actions .btn {
3019
- width: 100%;
3020
- }
3021
- }
3022
-
3023
- /* Success/Error states for estimator messages */
3024
- .estimator-message {
3025
- padding: 0.75rem;
3026
- border-radius: 0.375rem;
3027
- margin-bottom: 1rem;
3028
- }
3029
-
3030
- .estimator-message.success {
3031
- background-color: #dcfce7;
3032
- color: #166534;
3033
- border: 1px solid #22c55e;
3034
- }
3035
-
3036
- .estimator-message.error {
3037
- background-color: #fef2f2;
3038
- color: #991b1b;
3039
- border: 1px solid #ef4444;
3040
- }
3041
-
3042
- .estimator-message.info {
3043
- background-color: #eff6ff;
3044
- color: #1e40af;
3045
- border: 1px solid #3b82f6;
3046
- }
3047
-
3048
- .draft-review-container .btn + .btn {
3049
- margin-left: 1.5rem;
3050
- }
3051
-
3052
- /*!***************************************************************************************************!*\
3053
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/globals.css ***!
3054
- \***************************************************************************************************/
3055
- /* Font faces */
3056
- @font-face {
3057
- font-family: 'Source Sans Pro';
3058
- src: url('/public/fonts/SourceSansPro-Regular.ttf') format('truetype');
3059
- font-weight: 400;
3060
- font-style: normal;
3061
- }
3062
-
3063
- @font-face {
3064
- font-family: 'Source Sans Pro';
3065
- src: url('/public/fonts/SourceSansPro-Italic.ttf') format('truetype');
3066
- font-weight: 400;
3067
- font-style: italic;
3068
- }
3069
-
3070
- @font-face {
3071
- font-family: 'Source Sans Pro';
3072
- src: url('/public/fonts/SourceSansPro-ExtraLight.ttf') format('truetype');
3073
- font-weight: 200;
3074
- font-style: normal;
3075
- }
3076
-
3077
- @font-face {
3078
- font-family: 'Source Sans Pro';
3079
- src: url('/public/fonts/SourceSansPro-ExtraLightItalic.ttf') format('truetype');
3080
- font-weight: 200;
3081
- font-style: italic;
3082
- }
3083
-
3084
- @font-face {
3085
- font-family: 'Source Sans Pro';
3086
- src: url('/public/fonts/SourceSansPro-Light.ttf') format('truetype');
3087
- font-weight: 300;
3088
- font-style: normal;
3089
- }
3090
-
3091
- @font-face {
3092
- font-family: 'Source Sans Pro';
3093
- src: url('/public/fonts/SourceSansPro-LightItalic.ttf') format('truetype');
3094
- font-weight: 300;
3095
- font-style: italic;
3096
- }
3097
-
3098
- @font-face {
3099
- font-family: 'Source Sans Pro';
3100
- src: url('/public/fonts/SourceSansPro-SemiBold.ttf') format('truetype');
3101
- font-weight: 600;
3102
- font-style: normal;
3103
- }
3104
-
3105
- @font-face {
3106
- font-family: 'Source Sans Pro';
3107
- src: url('/public/fonts/SourceSansPro-SemiBoldItalic.ttf') format('truetype');
3108
- font-weight: 600;
3109
- font-style: italic;
3110
- }
3111
-
3112
- @font-face {
3113
- font-family: 'Source Sans Pro';
3114
- src: url('/public/fonts/SourceSansPro-Bold.ttf') format('truetype');
3115
- font-weight: 700;
3116
- font-style: normal;
3117
- }
3118
-
3119
- @font-face {
3120
- font-family: 'Source Sans Pro';
3121
- src: url('/public/fonts/SourceSansPro-BoldItalic.ttf') format('truetype');
3122
- font-weight: 700;
3123
- font-style: italic;
3124
- }
3125
-
3126
- @font-face {
3127
- font-family: 'Source Sans Pro';
3128
- src: url('/public/fonts/SourceSansPro-Black.ttf') format('truetype');
3129
- font-weight: 900;
3130
- font-style: normal;
3131
- }
3132
-
3133
- @font-face {
3134
- font-family: 'Source Sans Pro';
3135
- src: url('/public/fonts/SourceSansPro-BlackItalic.ttf') format('truetype');
3136
- font-weight: 900;
3137
- font-style: italic;
3138
- }
3139
-
3140
- /* Global variables */
3141
- :root {
3142
- --primary-color: #E2624B;
3143
- --primary-dark: #C51616;
3144
- --secondary-color: #6b7280;
3145
- --light-grey: #eee;
3146
- --secondary-button-background: #fdf4ec;
3147
- --light-orange: #F2B27A;
3148
- --dark-orange: #e17055;
3149
- --background-color: #fffdf0;
3150
- --surface-color: #ffffff;
3151
- --text-color: #393D4E;
3152
- --border-color: #e6e4d5;
3153
- --error-color: #ef4444;
3154
- --success-color: #10b981;
3155
- --header-height: 60px;
3156
- --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
3157
- }
3158
-
3159
- /* Reset and base styles */
3160
- * {
3161
- margin: 0;
3162
- padding: 0;
3163
- box-sizing: border-box;
3164
- }
3165
-
3166
- body {
3167
- font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
3168
- background-color: var(--background-color);
3169
- color: var(--text-color);
3170
- line-height: 1.5;
3171
- min-height: 100vh;
3172
- padding-top: var(--header-height);
3173
- }
3174
-
3175
- .hidden {
3176
- display: none !important;
3177
- }
3178
-
3179
- /* Button styles */
3180
- .btn {
3181
- cursor: pointer;
3182
- padding: 0.75rem 2rem;
3183
- border-radius: 4px;
3184
- border: 1px solid transparent;
3185
- font-size: 1rem;
3186
- line-height: 1.25rem;
3187
- transition: background-color 0.3s ease;
3188
- }
3189
-
3190
- .btn-primary {
3191
- background-color: var(--primary-color);
3192
- color: white;
3193
- }
3194
-
3195
- .btn-primary:hover {
3196
- background-color: var(--primary-dark);
3197
- }
3198
-
3199
- .btn-secondary {
3200
- background-color: var(--secondary-button-background);
3201
- border: 1px solid var(--light-orange);
3202
- color: #333;
3203
- }
3204
-
3205
- .btn-secondary:hover {
3206
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
3207
- background-color: var(--dark-orange);
3208
- color: white;
3209
- }
3210
-
3211
- .btn-sm {
3212
- padding: 0.2rem 0.5rem;
3213
- font-size: 0.75rem;
3214
- }
3215
-
3216
- .btn-danger {
3217
- background-color: var(--error-color);
3218
- color: white;
3219
- }
3220
-
3221
- .btn-danger:hover {
3222
- background-color: #b91c1c; /* darker red for hover */
3223
- }
3224
-
3225
- .btn:disabled {
3226
- background-color: #d1d5db;
3227
- cursor: not-allowed;
3228
- opacity: 0.6;
3229
- }
3230
-
3231
- /* Form element base styles */
3232
- label {
3233
- display: block;
3234
- font-size: 0.875rem;
3235
- font-weight: 500;
3236
- margin-bottom: 0.5rem;
3237
- }
3238
-
3239
- input[type="text"],
3240
- input[type="password"],
3241
- input[type="email"],
3242
- input[type="url"],
3243
- input[type="number"],
3244
- textarea {
3245
- width: 100%;
3246
- padding: 0.5rem;
3247
- font-size: 1rem;
3248
- border: 1px solid var(--border-color);
3249
- border-radius: 0.25rem;
3250
- background-color: #fff;
3251
- }
3252
-
3253
- input[type="number"] {
3254
- width: auto;
3255
- }
3256
-
3257
- textarea {
3258
- min-height: 100px;
3259
- resize: vertical;
3260
- }
3261
-
3262
- .required {
3263
- color: var(--error-color);
3264
- }
3265
-
3266
- /* Checkbox styling */
3267
- .form-group.checkbox {
3268
- display: flex;
3269
- align-items: center;
3270
- flex-wrap: wrap;
3271
- }
3272
-
3273
- .form-group.checkbox input {
3274
- margin-right: 0.5rem;
3275
- }
3276
-
3277
- .form-group.checkbox label {
3278
- margin-bottom: 0;
3279
- }
3280
-
3281
- /* Modal base styles (if used globally) */
3282
- .modal {
3283
- display: none;
3284
- position: fixed;
3285
- z-index: 1000;
3286
- left: 0;
3287
- top: 0;
3288
- width: 100vw;
3289
- height: 100vh;
3290
- background: rgba(0,0,0,0.4);
3291
- align-items: center;
3292
- justify-content: center;
3293
- }
3294
-
3295
- /*!*******************************************************************************************************!*\
3296
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/get-started.css ***!
3297
- \*******************************************************************************************************/
3298
- /* ============================================================
3299
- Get-Started onboarding page styles
3300
- All rules scoped under #get-started-container
3301
- ============================================================ */
3302
-
3303
- /* ---- Hero: the page's job is connecting GitHub (BAPI-630) ---- */
3304
-
3305
- /* The shared .section-header is a `space-between` row built for title+button.
3306
- This hero is a title plus a paragraph, so it stacks instead — otherwise the
3307
- intro is pushed alongside the h1 and both columns crowd at narrow widths. */
3308
- #get-started-container .get-started-hero {
3309
- display: flex;
3310
- flex-direction: column;
3311
- align-items: flex-start;
3312
- margin-bottom: 2rem;
3313
- }
3314
-
3315
- #get-started-container .get-started-hero h1 {
3316
- font-size: 2rem;
3317
- font-weight: 700;
3318
- line-height: 1.2;
3319
- margin-bottom: 0.5rem;
3320
- }
3321
-
3322
- #get-started-container .get-started-intro {
3323
- color: var(--text-muted, #666);
3324
- max-width: 720px;
3325
- margin-bottom: 1.5rem;
3326
- line-height: 1.5;
3327
- }
3328
-
3329
- /* ---- Section cards ---- */
3330
- #get-started-container .get-started-section {
3331
- background: var(--card-bg, #fff);
3332
- border: 1px solid var(--border-color, #e0e0e0);
3333
- border-radius: 8px;
3334
- padding: 1.5rem;
3335
- margin-bottom: 1.5rem;
3336
- }
3337
-
3338
- /* Subsection headings inside the optional MCP drawer. These are descriptive,
3339
- not steps in a mandatory flow, so they sit below the two numbered tasks. */
3340
- #get-started-container .get-started-section h3 {
3341
- margin-top: 0;
3342
- font-size: 1.15rem;
3343
- margin-bottom: 0.75rem;
3344
- }
3345
-
3346
- /* ---- Install-key generation panel ---- */
3347
- .install-key-panel {
3348
- border: 1px solid var(--border-color, #e0e0e0);
3349
- background: var(--code-bg, #f8f9fa);
3350
- border-radius: 8px;
3351
- padding: 1rem 1.25rem;
3352
- margin: 0.75rem 0 1.25rem;
3353
- }
3354
-
3355
- .install-key-header {
3356
- display: flex;
3357
- align-items: flex-start;
3358
- justify-content: space-between;
3359
- gap: 1rem;
3360
- flex-wrap: wrap;
3361
- }
3362
-
3363
- .install-key-header h4 {
3364
- margin: 0 0 0.25rem;
3365
- font-size: 1rem;
3366
- }
3367
-
3368
- .install-key-header p {
3369
- margin: 0;
3370
- font-size: 0.88rem;
3371
- color: var(--text-muted, #666);
3372
- max-width: 48ch;
3373
- }
3374
-
3375
- .install-key-actions {
3376
- display: flex;
3377
- align-items: center;
3378
- gap: 0.6rem;
3379
- flex-shrink: 0;
3380
- }
3381
-
3382
- /* Base state is NEUTRAL. The outcome modifiers below are applied by JS from the
3383
- real inserted-slot count, so a generated-but-not-inserted key is never
3384
- presented in success green (BAPI-630 / CI-2). */
3385
- .install-key-status {
3386
- font-size: 0.82rem;
3387
- color: var(--text-muted, #666);
3388
- }
3389
-
3390
- .install-key-status--success {
3391
- color: var(--success-color, #10b981);
3392
- }
3393
-
3394
- .install-key-status--warning {
3395
- color: var(--dark-orange, #e17055);
3396
- }
3397
-
3398
- .install-key-error {
3399
- margin: 0.75rem 0 0;
3400
- font-size: 0.85rem;
3401
- color: var(--danger-color, #dc3545);
3402
- }
3403
-
3404
- .install-key-error.hidden {
3405
- display: none;
3406
- }
3407
-
3408
- .install-key-result {
3409
- margin-top: 1rem;
3410
- }
3411
-
3412
- .install-key-result.hidden {
3413
- display: none;
3414
- }
3415
-
3416
- /* Mirror the Security page warning treatment */
3417
- .install-key-panel .key-warning {
3418
- color: #856404;
3419
- background: #fff3cd;
3420
- border: 1px solid #ffc107;
3421
- border-radius: 4px;
3422
- padding: 0.75rem;
3423
- margin-bottom: 0.75rem;
3424
- font-weight: 600;
3425
- font-size: 0.88rem;
3426
- }
3427
-
3428
- .install-key-panel .key-display {
3429
- display: flex;
3430
- align-items: center;
3431
- gap: 0.5rem;
3432
- flex-wrap: wrap;
3433
- }
3434
-
3435
- .install-key-panel .key-display input {
3436
- flex: 1;
3437
- min-width: 200px;
3438
- padding: 0.5rem 0.75rem;
3439
- border: 1px solid var(--border-color, #dee2e6);
3440
- border-radius: 4px;
3441
- font-family: monospace;
3442
- font-size: 0.85rem;
3443
- background: #fff;
3444
- }
3445
-
3446
- /* Snippet placeholder once the minted key has been injected */
3447
- .bapi-api-key-slot-filled {
3448
- background: #d4edda;
3449
- color: #155724;
3450
- font-style: normal;
3451
- }
3452
-
3453
- /* ---- Snippet tabs ---- */
3454
- #editor-tabs {
3455
- display: flex;
3456
- flex-wrap: wrap;
3457
- gap: 0.5rem;
3458
- margin-bottom: 1rem;
3459
- border-bottom: 2px solid var(--border-color, #e0e0e0);
3460
- padding-bottom: 0.25rem;
3461
- }
3462
-
3463
- .snippet-tab-btn {
3464
- background: none;
3465
- border: none;
3466
- padding: 0.4rem 0.8rem;
3467
- cursor: pointer;
3468
- font-size: 0.9rem;
3469
- color: var(--text-muted, #666);
3470
- border-radius: 4px 4px 0 0;
3471
- border-bottom: 3px solid transparent;
3472
- transition: color 0.15s, border-color 0.15s;
3473
- }
3474
-
3475
- .snippet-tab-btn:hover {
3476
- color: var(--primary-color, #007bff);
3477
- }
3478
-
3479
- .snippet-tab-btn.active,
3480
- .snippet-tab-btn[aria-selected="true"] {
3481
- color: var(--primary-color, #007bff);
3482
- border-bottom-color: var(--primary-color, #007bff);
3483
- font-weight: 600;
3484
- }
3485
-
3486
- .snippet-tab-btn:focus-visible {
3487
- outline: 2px solid var(--primary-color, #007bff);
3488
- outline-offset: 2px;
3489
- }
3490
-
3491
- /* ---- Code panels ---- */
3492
- .snippet-panel {
3493
- margin-bottom: 0.5rem;
3494
- }
3495
-
3496
- .snippet-panel.hidden {
3497
- display: none;
3498
- }
3499
-
3500
- .snippet-meta {
3501
- font-size: 0.78rem;
3502
- color: var(--text-muted, #888);
3503
- margin-bottom: 0.4rem;
3504
- font-family: monospace;
3505
- }
3506
-
3507
- .snippet-notes {
3508
- font-size: 0.85rem;
3509
- color: var(--text-muted, #666);
3510
- margin-bottom: 0.5rem;
3511
- font-style: italic;
3512
- }
3513
-
3514
- .snippet-panel pre {
3515
- background: var(--code-bg, #f5f5f5);
3516
- border: 1px solid var(--border-color, #ddd);
3517
- border-radius: 6px;
3518
- padding: 1rem;
3519
- overflow-x: auto;
3520
- margin-bottom: 0.5rem;
3521
- max-width: 100%;
3522
- }
3523
-
3524
- .snippet-panel code {
3525
- font-family: 'Courier New', Courier, monospace;
3526
- font-size: 0.82rem;
3527
- line-height: 1.5;
3528
- white-space: pre;
3529
- word-break: normal;
3530
- overflow-wrap: normal;
3531
- }
3532
-
3533
- /* API-key placeholder slot */
3534
- .bapi-api-key-slot {
3535
- background: #fff3cd;
3536
- color: #856404;
3537
- border-radius: 3px;
3538
- padding: 0 2px;
3539
- font-style: italic;
3540
- font-weight: 600;
3541
- }
3542
-
3543
- /* ---- Copy row ---- */
3544
- .snippet-copy-row {
3545
- display: flex;
3546
- align-items: center;
3547
- gap: 0.5rem;
3548
- margin-top: 0.25rem;
3549
- }
3550
-
3551
- .copy-status {
3552
- font-size: 0.82rem;
3553
- color: var(--success-color, #28a745);
3554
- min-width: 60px;
3555
- }
3556
-
3557
- /* ---- /install-bridge hand-off ---- */
3558
- .install-bridge-notice {
3559
- background: #fff8e1;
3560
- border-left: 4px solid #f59e0b;
3561
- padding: 0.75rem 1rem;
3562
- border-radius: 4px;
3563
- margin-bottom: 1rem;
3564
- font-size: 0.9rem;
3565
- line-height: 1.5;
3566
- }
3567
-
3568
- .handoff-copy-row {
3569
- display: flex;
3570
- align-items: center;
3571
- gap: 0.75rem;
3572
- flex-wrap: wrap;
3573
- }
3574
-
3575
- .handoff-command {
3576
- background: var(--code-bg, #f5f5f5);
3577
- border: 1px solid var(--border-color, #ddd);
3578
- border-radius: 4px;
3579
- padding: 0.3rem 0.6rem;
3580
- font-size: 0.95rem;
3581
- font-family: monospace;
3582
- }
3583
-
3584
- /* ---- Config-status readout ---- */
3585
- .status-summary {
3586
- display: flex;
3587
- align-items: center;
3588
- gap: 0.5rem;
3589
- margin-bottom: 1rem;
3590
- flex-wrap: wrap;
3591
- }
3592
-
3593
- .status-total {
3594
- font-size: 0.85rem;
3595
- color: var(--text-muted, #666);
3596
- }
3597
-
3598
- .status-chip {
3599
- display: inline-block;
3600
- padding: 0.2rem 0.6rem;
3601
- border-radius: 12px;
3602
- font-size: 0.8rem;
3603
- font-weight: 600;
3604
- letter-spacing: 0.02em;
3605
- }
3606
-
3607
- .status-set {
3608
- background: #d4edda;
3609
- color: #155724;
3610
- }
3611
-
3612
- .status-unset {
3613
- background: #f8d7da;
3614
- color: #721c24;
3615
- }
3616
-
3617
- .status-group {
3618
- margin-bottom: 1rem;
3619
- }
3620
-
3621
- .status-group-title {
3622
- font-size: 0.9rem;
3623
- font-weight: 600;
3624
- color: var(--text-muted, #555);
3625
- margin: 0 0 0.4rem;
3626
- text-transform: uppercase;
3627
- letter-spacing: 0.05em;
3628
- }
3629
-
3630
- .status-field-row {
3631
- display: flex;
3632
- align-items: baseline;
3633
- gap: 0.6rem;
3634
- padding: 0.25rem 0;
3635
- border-bottom: 1px solid var(--border-color, #eee);
3636
- flex-wrap: wrap;
3637
- }
3638
-
3639
- .status-field-row:last-child {
3640
- border-bottom: none;
3641
- }
3642
-
3643
- .status-field-name {
3644
- font-size: 0.88rem;
3645
- font-family: monospace;
3646
- }
3647
-
3648
- .status-field-value {
3649
- font-size: 0.8rem;
3650
- color: var(--text-muted, #888);
3651
- font-family: monospace;
3652
- word-break: break-all;
3653
- }
3654
-
3655
- .status-empty {
3656
- color: var(--text-muted, #888);
3657
- font-style: italic;
3658
- font-size: 0.9rem;
3659
- }
3660
-
3661
- /* ---- Integrations checklist (BAPI-516) ---- */
3662
- /* Collapse the container entirely when the checklist renders nothing so the
3663
- absent-safe / fail-open cases leave no visual gap. */
3664
- #get-started-container .install-integrations:empty {
3665
- display: none;
3666
- }
3667
-
3668
- .install-integrations:not(:empty) {
3669
- margin: 0.75rem 0 1rem;
3670
- padding-top: 0.75rem;
3671
- border-top: 1px solid var(--border-color, #eee);
3672
- }
3673
-
3674
- .install-integrations-title {
3675
- font-size: 1rem;
3676
- font-weight: 600;
3677
- margin: 0 0 0.35rem;
3678
- }
3679
-
3680
- .install-integrations-note {
3681
- color: var(--text-muted, #666);
3682
- font-size: 0.8rem;
3683
- line-height: 1.5;
3684
- margin: 0 0 0.6rem;
3685
- }
3686
-
3687
- .install-integrations-list {
3688
- display: flex;
3689
- flex-direction: column;
3690
- gap: 0.35rem;
3691
- }
3692
-
3693
- .install-integration-row {
3694
- flex-wrap: wrap;
3695
- }
3696
-
3697
- /* Integration labels are human-readable names, not field keys — override the
3698
- monospace treatment inherited from .status-field-name. */
3699
- .install-integration-label {
3700
- font-family: inherit;
3701
- font-size: 1rem;
3702
- font-weight: 600;
3703
- }
3704
-
3705
- .install-integration-required {
3706
- font-size: 0.875rem;
3707
- line-height: 1.5;
3708
- overflow-wrap: anywhere;
3709
- }
3710
-
3711
- .install-integration-link {
3712
- color: var(--primary-color, #0066cc);
3713
- font-size: 0.875rem;
3714
- text-decoration: underline;
3715
- }
3716
-
3717
- .install-integration-link:focus-visible {
3718
- outline: 2px solid var(--primary-color, #0066cc);
3719
- outline-offset: 2px;
3720
- }
3721
-
3722
- /* ---- Skeleton loading ---- */
3723
- .get-started-state {
3724
- padding: 1rem 0;
3725
- }
3726
-
3727
- .get-started-state.hidden {
3728
- display: none;
3729
- }
3730
-
3731
- .skeleton {
3732
- background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
3733
- background-size: 200% 100%;
3734
- animation: skeleton-shimmer 1.4s infinite;
3735
- border-radius: 6px;
3736
- margin-bottom: 0.75rem;
3737
- }
3738
-
3739
- @keyframes skeleton-shimmer {
3740
- 0% { background-position: 200% 0; }
3741
- 100% { background-position: -200% 0; }
3742
- }
3743
-
3744
- .skeleton-tabs {
3745
- height: 36px;
3746
- width: 70%;
3747
- }
3748
-
3749
- .skeleton-code {
3750
- height: 160px;
3751
- width: 100%;
3752
- }
3753
-
3754
- .skeleton-status {
3755
- height: 80px;
3756
- width: 100%;
3757
- }
3758
-
3759
- /* ---- Inline error ---- */
3760
- .get-started-error-msg {
3761
- color: var(--danger-color, #dc3545);
3762
- margin-bottom: 0.75rem;
3763
- }
3764
-
3765
- /* ---- Footer link ---- */
3766
- .get-started-footer {
3767
- margin-top: 1rem;
3768
- text-align: center;
3769
- }
3770
-
3771
- /* ============================================================
3772
- GitHub App connect flow (BAPI-506)
3773
- ============================================================ */
3774
-
3775
- /* The page's primary task: a dominant white surface directly under the hero,
3776
- separated from the optional MCP drawer by a full section gap (BAPI-630). */
3777
- #get-started-container .github-connect-section {
3778
- padding: 2rem;
3779
- margin-bottom: 2rem;
3780
- box-shadow: var(--box-shadow);
3781
- }
3782
-
3783
- #get-started-container .github-connect-section h2 {
3784
- margin-top: 0;
3785
- font-size: 1.5rem;
3786
- font-weight: 700;
3787
- line-height: 1.25;
3788
- margin-bottom: 0.75rem;
3789
- }
3790
-
3791
- .github-connect-card {
3792
- border: 1px solid var(--border-color, #e0e0e0);
3793
- background: var(--card-bg, #fff);
3794
- border-radius: 8px;
3795
- padding: 1rem 1.25rem;
3796
- margin-top: 0.75rem;
3797
- }
3798
-
3799
- .github-connect-card > p {
3800
- color: var(--text-muted, #666);
3801
- font-size: 1rem;
3802
- line-height: 1.5;
3803
- margin-top: 0;
3804
- }
3805
-
3806
- .github-connect-actions {
3807
- display: flex;
3808
- align-items: center;
3809
- flex-wrap: wrap;
3810
- gap: 0.5rem 0.75rem;
3811
- margin: 0.75rem 0;
3812
- }
3813
-
3814
- #github-connect-status {
3815
- color: var(--text-muted, #666);
3816
- font-size: 0.9rem;
3817
- }
3818
-
3819
- .github-connect-result {
3820
- border: 1px solid var(--border-color, #e0e0e0);
3821
- border-radius: 6px;
3822
- padding: 0.75rem 1rem;
3823
- margin: 0.75rem 0;
3824
- }
3825
-
3826
- .github-connect-result-title {
3827
- font-weight: 600;
3828
- margin: 0 0 0.25rem;
3829
- }
3830
-
3831
- .github-connect-result--success {
3832
- border-color: var(--success-color, #2e7d32);
3833
- background: var(--success-bg, #edf7ee);
3834
- }
3835
-
3836
- .github-connect-result--warning {
3837
- border-color: var(--warning-color, #b26a00);
3838
- background: var(--warning-bg, #fff6e5);
3839
- }
3840
-
3841
- .github-connect-result--error {
3842
- border-color: var(--error-color, #c62828);
3843
- background: var(--error-bg, #fdecea);
3844
- }
3845
-
3846
- /* ---- Ambiguous-install repository picker ---- */
3847
- .github-repo-picker-panel {
3848
- border: 1px solid var(--border-color, #e0e0e0);
3849
- background: var(--code-bg, #f8f9fa);
3850
- border-radius: 6px;
3851
- padding: 0.75rem 1rem;
3852
- margin: 0.75rem 0;
3853
- }
3854
-
3855
- .github-repo-picker-list {
3856
- display: flex;
3857
- flex-direction: column;
3858
- gap: 0.4rem;
3859
- margin-top: 0.5rem;
3860
- }
3861
-
3862
- .github-repo-picker-option {
3863
- display: flex;
3864
- flex-direction: column;
3865
- align-items: flex-start;
3866
- gap: 0.15rem;
3867
- text-align: left;
3868
- width: 100%;
3869
- overflow-wrap: anywhere;
3870
- word-break: break-word;
3871
- }
3872
-
3873
- .github-repo-picker-option:focus-visible {
3874
- outline: 2px solid var(--focus-ring, #1a73e8);
3875
- outline-offset: 2px;
3876
- }
3877
-
3878
- .github-repo-picker-option-name {
3879
- font-weight: 600;
3880
- overflow-wrap: anywhere;
3881
- }
3882
-
3883
- .github-repo-picker-option-owner {
3884
- color: var(--text-muted, #666);
3885
- font-size: 0.85rem;
3886
- }
3887
-
3888
- /* ---- Manual fallback helper text ---- */
3889
- .github-manual-fallback {
3890
- color: var(--text-muted, #666);
3891
- font-size: 0.9rem;
3892
- margin-top: 0.75rem;
3893
- margin-bottom: 0;
3894
- }
3895
-
3896
- /* ============================================================
3897
- Optional editor/MCP disclosure (BAPI-630)
3898
-
3899
- Spacing and typography ONLY. Open/closed behavior, `.hidden`, `.expanded`,
3900
- and the toggle glyph all belong to the shared drawer utility (utils.js
3901
- initDrawers/setDrawerExpanded) — this page must not reimplement them.
3902
- ============================================================ */
3903
-
3904
- #get-started-container .get-started-mcp-drawers {
3905
- margin-bottom: 1.5rem;
3906
- }
3907
-
3908
- #get-started-container .get-started-mcp-drawer .drawer-header {
3909
- padding: 1rem 1.25rem;
3910
- gap: 1rem;
3911
- }
3912
-
3913
- /* Secondary to the GitHub h2: same element level, deliberately quieter. */
3914
- #get-started-container .get-started-mcp-drawer-title {
3915
- margin: 0;
3916
- font-size: 1.05rem;
3917
- font-weight: 600;
3918
- line-height: 1.35;
3919
- overflow-wrap: anywhere;
3920
- }
3921
-
3922
- #get-started-container .get-started-mcp-drawer .drawer-content {
3923
- padding: 0 1.25rem 1rem;
3924
- }
3925
-
3926
- /* Breathing room between the drawer's own subsections once expanded. The
3927
- nested section cards already carry their own margin-bottom. */
3928
- #get-started-container .get-started-mcp-drawer .drawer-content > .get-started-state {
3929
- margin: 1rem 0;
3930
- }
3931
-
3932
- /* ---- Responsive (consolidated; established 768px breakpoint) ---- */
3933
- @media (max-width: 768px) {
3934
- #get-started-container .get-started-hero h1 {
3935
- font-size: 1.6rem;
3936
- }
3937
-
3938
- #get-started-container .github-connect-section {
3939
- padding: 1.25rem;
3940
- }
3941
-
3942
- #get-started-container .github-connect-section h2 {
3943
- font-size: 1.3rem;
3944
- }
3945
-
3946
- .github-connect-card {
3947
- padding: 1rem;
3948
- }
3949
-
3950
- /* The primary action goes full-width so it stays the obvious, easily
3951
- tapped next step at phone widths. */
3952
- .github-connect-actions {
3953
- flex-direction: column;
3954
- align-items: stretch;
3955
- }
3956
-
3957
- .github-connect-actions .btn {
3958
- width: 100%;
3959
- }
3960
-
3961
- #get-started-container .get-started-mcp-drawer .drawer-header {
3962
- padding: 0.75rem 1rem;
3963
- }
3964
-
3965
- #get-started-container .get-started-mcp-drawer .drawer-content {
3966
- padding: 0 1rem 0.75rem;
3967
- }
3968
-
3969
- #get-started-container .get-started-section {
3970
- padding: 1rem;
3971
- }
3972
-
3973
- .snippet-tab-btn {
3974
- padding: 0.35rem 0.55rem;
3975
- font-size: 0.82rem;
3976
- }
3977
-
3978
- .handoff-copy-row {
3979
- flex-direction: column;
3980
- align-items: flex-start;
3981
- }
3982
-
3983
- .install-key-header {
3984
- flex-direction: column;
3985
- }
3986
-
3987
- .install-key-actions {
3988
- width: 100%;
3989
- }
3990
-
3991
- .install-key-actions .btn {
3992
- flex: 1;
3993
- }
3994
-
3995
- .install-key-panel .key-display {
3996
- flex-direction: column;
3997
- align-items: stretch;
3998
- }
3999
-
4000
- .install-key-panel .key-display input,
4001
- .install-key-panel .key-display .btn {
4002
- width: 100%;
4003
- }
4004
-
4005
- .install-key-status {
4006
- overflow-wrap: anywhere;
4007
- }
4008
-
4009
- .status-field-row {
4010
- flex-direction: column;
4011
- gap: 0.2rem;
4012
- }
4013
-
4014
- /* Collapse checklist rows into a readable single-column stack at narrow
4015
- widths so long required-for text never forces horizontal overflow. */
4016
- .install-integration-row {
4017
- align-items: flex-start;
4018
- }
4019
-
4020
- .install-integration-required {
4021
- overflow-wrap: anywhere;
4022
- }
4023
- }
4024
-
4025
- /*!*******************************************************************************************************!*\
4026
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/data_health.css ***!
4027
- \*******************************************************************************************************/
4028
- /* src/css/data_health.css */
4029
-
4030
- /* Collapsible drawers for Data Health View */
4031
- .collapsible-drawers {
4032
- margin-bottom: 2rem;
4033
- }
4034
-
4035
- .drawer {
4036
- border: 1px solid var(--border-color);
4037
- border-radius: 0.25rem;
4038
- margin-bottom: 1rem;
4039
- overflow: hidden;
4040
- }
4041
-
4042
- .drawer-header {
4043
- display: flex;
4044
- justify-content: space-between;
4045
- align-items: center;
4046
- padding: 1rem;
4047
- background-color: #f9fafb;
4048
- cursor: pointer;
4049
- }
4050
-
4051
- .drawer-header h2 {
4052
- font-size: 1rem;
4053
- font-weight: 500;
4054
- }
4055
-
4056
- .toggle-drawer {
4057
- background: none;
4058
- border: none;
4059
- font-size: 1rem;
4060
- cursor: pointer;
4061
- transition: transform var(--drawer-transition);
4062
- }
4063
-
4064
- .drawer-content {
4065
- padding: 1rem;
4066
- border-top: 1px solid var(--border-color);
4067
- /* Visibility is controlled solely by the global `.hidden` class (BAPI-301);
4068
- `.expanded` is reserved for header/glyph styling. The shared drawer helper
4069
- sets the ▲/▼ glyph text directly, so no CSS rotation is applied. */
4070
- }
4071
-
4072
- /* ========================================
4073
- Parse / Learn Repository Jobs Section Styles
4074
- ======================================== */
4075
-
4076
- .parse-repository-jobs-section,
4077
- .learn-repository-jobs-section {
4078
- display: flex;
4079
- flex-direction: column;
4080
- gap: 1.5rem;
4081
- }
4082
-
4083
- /* Last-ran timestamp shown under the Update Repository action.
4084
- Replaces a former inline style on the template. */
4085
- .operation-last-ran {
4086
- margin-top: 0.5rem;
4087
- font-size: 0.875rem;
4088
- }
4089
-
4090
- /* Parse schedule status panel. Replaces the former inline-styled status
4091
- blocks; state colors come from global design tokens (no hardcoded colors). */
4092
- .parse-schedule-status {
4093
- margin-top: 0.75rem;
4094
- padding: 0.75rem;
4095
- border: 1px solid var(--border-color);
4096
- border-radius: 4px;
4097
- font-size: 0.875rem;
4098
- }
4099
-
4100
- .parse-schedule-status--active {
4101
- color: var(--success-color);
4102
- border-color: var(--success-color);
4103
- }
4104
-
4105
- .parse-schedule-status--paused,
4106
- .parse-schedule-status--empty {
4107
- color: var(--dark-orange);
4108
- border-color: var(--dark-orange);
4109
- }
4110
-
4111
- .parse-schedule-next-run {
4112
- display: block;
4113
- margin-top: 0.25rem;
4114
- color: var(--text-color);
4115
- }
4116
-
4117
- .parse-schedule-actions {
4118
- margin-top: 0.5rem;
4119
- display: flex;
4120
- gap: 0.5rem;
4121
- }
4122
-
4123
- .operation-row {
4124
- display: flex;
4125
- flex-direction: column;
4126
- padding-bottom: 1rem;
4127
- border-bottom: 1px solid var(--border-color);
4128
- }
4129
-
4130
- .operation-row:last-child {
4131
- border-bottom: none;
4132
- padding-bottom: 0;
4133
- }
4134
-
4135
- .operation-item {
4136
- display: flex;
4137
- flex-direction: column;
4138
- gap: 0.5rem;
4139
- }
4140
-
4141
- .operation-item .btn {
4142
- align-self: flex-start;
4143
- }
4144
-
4145
- .operation-label {
4146
- font-size: 0.875rem;
4147
- color: var(--secondary-color);
4148
- line-height: 1.4;
4149
- }
4150
-
4151
- .schedule-controls {
4152
- display: flex;
4153
- gap: 1rem;
4154
- margin-top: 0.5rem;
4155
- align-items: flex-end;
4156
- }
4157
-
4158
- .schedule-controls .form-group {
4159
- margin-bottom: 0;
4160
- }
4161
-
4162
- .schedule-controls .form-group.inline {
4163
- display: flex;
4164
- flex-direction: column;
4165
- gap: 0.25rem;
4166
- }
4167
-
4168
- .schedule-controls .form-group.inline label {
4169
- font-size: 0.75rem;
4170
- color: var(--secondary-color);
4171
- }
4172
-
4173
- .schedule-controls .form-group.inline input,
4174
- .schedule-controls .form-group.inline select {
4175
- width: auto;
4176
- min-width: 120px;
4177
- padding: 0.375rem 0.5rem;
4178
- font-size: 0.875rem;
4179
- }
4180
-
4181
- /* ========================================
4182
- Data Integrity Section Styles
4183
- ======================================== */
4184
-
4185
- /* Loading and error states */
4186
- .integrity-loading,
4187
- .integrity-error {
4188
- padding: 1rem;
4189
- text-align: center;
4190
- color: var(--secondary-color);
4191
- }
4192
-
4193
- .integrity-error {
4194
- color: var(--error-color);
4195
- background-color: #fef2f2;
4196
- border: 1px solid #fecaca;
4197
- border-radius: 0.25rem;
4198
- }
4199
-
4200
- /* Summary statistics */
4201
- .integrity-summary {
4202
- display: flex;
4203
- gap: 2rem;
4204
- margin-bottom: 1.5rem;
4205
- padding: 1rem;
4206
- background-color: #f9fafb;
4207
- border-radius: 0.25rem;
4208
- }
4209
-
4210
- .integrity-stat {
4211
- display: flex;
4212
- flex-direction: column;
4213
- align-items: center;
4214
- }
4215
-
4216
- .integrity-stat-label {
4217
- font-size: 0.875rem;
4218
- color: var(--secondary-color);
4219
- margin-bottom: 0.25rem;
4220
- }
4221
-
4222
- .integrity-stat-value {
4223
- font-size: 1.5rem;
4224
- font-weight: 600;
4225
- color: var(--text-color);
4226
- }
4227
-
4228
- .integrity-stat-value.integrity-healthy {
4229
- color: #16a34a;
4230
- }
4231
-
4232
- /* Empty state */
4233
- .integrity-empty-state {
4234
- padding: 1.5rem;
4235
- text-align: center;
4236
- background-color: #f0fdf4;
4237
- border: 1px solid #bbf7d0;
4238
- border-radius: 0.25rem;
4239
- color: #166534;
4240
- }
4241
-
4242
- .integrity-empty-state p {
4243
- margin: 0;
4244
- font-weight: 500;
4245
- }
4246
-
4247
- /* Issues table */
4248
- .integrity-table {
4249
- width: 100%;
4250
- border-collapse: collapse;
4251
- margin-top: 1rem;
4252
- }
4253
-
4254
- .integrity-table th,
4255
- .integrity-table td {
4256
- padding: 0.75rem;
4257
- text-align: left;
4258
- border-bottom: 1px solid var(--border-color);
4259
- }
4260
-
4261
- .integrity-table th {
4262
- background-color: #f9fafb;
4263
- font-weight: 500;
4264
- font-size: 0.875rem;
4265
- color: var(--secondary-color);
4266
- }
4267
-
4268
- .integrity-table td {
4269
- font-size: 0.875rem;
4270
- vertical-align: top;
4271
- }
4272
-
4273
- .integrity-table tbody tr:hover {
4274
- background-color: #f9fafb;
4275
- }
4276
-
4277
- /* File list styling */
4278
- .integrity-file-list {
4279
- font-family: monospace;
4280
- font-size: 0.8rem;
4281
- background-color: #f1f5f9;
4282
- padding: 0.5rem;
4283
- border-radius: 4px;
4284
- max-height: 150px;
4285
- overflow-y: auto;
4286
- margin: 0;
4287
- list-style: none;
4288
- }
4289
-
4290
- .integrity-file-list li {
4291
- padding: 0.125rem 0;
4292
- word-break: break-all;
4293
- }
4294
-
4295
- .integrity-file-list li:not(:last-child) {
4296
- border-bottom: 1px solid #e2e8f0;
4297
- }
4298
-
4299
- .integrity-more-files {
4300
- font-style: italic;
4301
- color: var(--secondary-color);
4302
- font-size: 0.8rem;
4303
- margin-top: 0.25rem;
4304
- }
4305
-
4306
- /* Issues container header */
4307
- #integrity-issues-container h3 {
4308
- font-size: 1rem;
4309
- font-weight: 500;
4310
- color: var(--text-color);
4311
- margin-bottom: 0.5rem;
4312
- }
4313
-
4314
- /* ========================================
4315
- Configuration Health Section Styles
4316
- ======================================== */
4317
-
4318
- /* Loading and error states */
4319
- .config-health-loading,
4320
- .config-health-error {
4321
- padding: 1rem;
4322
- text-align: center;
4323
- color: var(--secondary-color);
4324
- }
4325
-
4326
- .config-health-error {
4327
- color: var(--error-color);
4328
- background-color: #fef2f2;
4329
- border: 1px solid #fecaca;
4330
- border-radius: 0.25rem;
4331
- }
4332
-
4333
- /* Summary statistics */
4334
- .health-stats {
4335
- display: flex;
4336
- gap: 2rem;
4337
- margin-bottom: 1.5rem;
4338
- padding: 1rem;
4339
- background-color: #f9fafb;
4340
- border-radius: 0.25rem;
4341
- }
4342
-
4343
- .health-stat {
4344
- display: flex;
4345
- flex-direction: column;
4346
- align-items: center;
4347
- }
4348
-
4349
- .health-stat-label {
4350
- font-size: 0.875rem;
4351
- color: var(--secondary-color);
4352
- margin-bottom: 0.25rem;
4353
- }
4354
-
4355
- .health-stat-value {
4356
- font-size: 1.5rem;
4357
- font-weight: 600;
4358
- color: var(--text-color);
4359
- }
4360
-
4361
- .health-stat-value.health-configured {
4362
- color: #16a34a;
4363
- }
4364
-
4365
- .health-stat-value.health-errors {
4366
- color: var(--error-color);
4367
- }
4368
-
4369
- .health-stat-value.health-warnings {
4370
- color: #f59e0b;
4371
- }
4372
-
4373
- /* All good state */
4374
- .config-health-all-good {
4375
- padding: 1.5rem;
4376
- text-align: center;
4377
- background-color: #f0fdf4;
4378
- border: 1px solid #bbf7d0;
4379
- border-radius: 0.25rem;
4380
- color: #166534;
4381
- }
4382
-
4383
- .config-health-all-good p {
4384
- margin: 0;
4385
- font-weight: 500;
4386
- }
4387
-
4388
- /* Config health table */
4389
- .config-health-table {
4390
- width: 100%;
4391
- border-collapse: collapse;
4392
- margin-top: 1rem;
4393
- }
4394
-
4395
- .config-health-table th,
4396
- .config-health-table td {
4397
- padding: 0.75rem;
4398
- text-align: left;
4399
- border-bottom: 1px solid var(--border-color);
4400
- }
4401
-
4402
- .config-health-table th {
4403
- background-color: #f9fafb;
4404
- font-weight: 500;
4405
- font-size: 0.875rem;
4406
- color: var(--secondary-color);
4407
- }
4408
-
4409
- .config-health-table td {
4410
- font-size: 0.875rem;
4411
- vertical-align: top;
4412
- }
4413
-
4414
- .config-health-table tbody tr:hover {
4415
- background-color: #f9fafb;
4416
- }
4417
-
4418
- /* Status badge styling */
4419
- .config-status-badge {
4420
- display: inline-block;
4421
- padding: 0.25rem 0.5rem;
4422
- border-radius: 0.25rem;
4423
- font-size: 0.75rem;
4424
- font-weight: 500;
4425
- text-transform: uppercase;
4426
- }
4427
-
4428
- .config-status-badge.status-missing {
4429
- background-color: #fef2f2;
4430
- color: #991b1b;
4431
- }
4432
-
4433
- .config-status-badge.status-invalid {
4434
- background-color: #fef2f2;
4435
- color: #991b1b;
4436
- }
4437
-
4438
- /* Dismiss button / text button styling */
4439
- .btn-text {
4440
- background-color: transparent;
4441
- border: 1px solid var(--border-color);
4442
- border-radius: 0.25rem;
4443
- padding: 0.375rem 0.75rem;
4444
- font-size: 0.875rem;
4445
- color: var(--secondary-color);
4446
- cursor: pointer;
4447
- transition: all 0.2s ease;
4448
- }
4449
-
4450
- .btn-text:hover {
4451
- background-color: #f9fafb;
4452
- border-color: var(--secondary-color);
4453
- color: var(--text-color);
4454
- }
4455
-
4456
- .btn-text:active {
4457
- background-color: #f3f4f6;
4458
- }
4459
-
4460
- .btn-text:disabled {
4461
- opacity: 0.5;
4462
- cursor: not-allowed;
4463
- }
4464
-
4465
- /* Config errors/warnings container headers */
4466
- #config-errors-container h3,
4467
- #config-warnings-container h3 {
4468
- font-size: 1rem;
4469
- font-weight: 500;
4470
- color: var(--text-color);
4471
- margin-bottom: 0.5rem;
4472
- margin-top: 1.5rem;
4473
- }
4474
-
4475
- #config-errors-container h3 {
4476
- color: var(--error-color);
4477
- }
4478
-
4479
- #config-warnings-container h3 {
4480
- color: #f59e0b;
4481
- }
4482
-
4483
- /* ========================================
4484
- Pinecone Data Integrity Section Styles
4485
- ======================================== */
4486
-
4487
- /* Actions container with button and last run text */
4488
- .pinecone-health-actions {
4489
- display: flex;
4490
- align-items: center;
4491
- gap: 1rem;
4492
- margin-bottom: 1rem;
4493
- }
4494
-
4495
- .last-run-text {
4496
- font-size: 0.875rem;
4497
- color: var(--secondary-color);
4498
- }
4499
-
4500
- /* Loading and error states */
4501
- .pinecone-health-loading,
4502
- .pinecone-health-error {
4503
- padding: 1rem;
4504
- text-align: center;
4505
- color: var(--secondary-color);
4506
- }
4507
-
4508
- .pinecone-health-error {
4509
- color: var(--error-color);
4510
- background-color: #fef2f2;
4511
- border: 1px solid #fecaca;
4512
- border-radius: 0.25rem;
4513
- }
4514
-
4515
- /* No results state */
4516
- .pinecone-health-no-results {
4517
- padding: 1rem;
4518
- text-align: center;
4519
- color: var(--secondary-color);
4520
- background-color: #f9fafb;
4521
- border: 1px solid var(--border-color);
4522
- border-radius: 0.25rem;
4523
- }
4524
-
4525
- .pinecone-health-no-results p {
4526
- margin: 0;
4527
- }
4528
-
4529
- /* Status container and badge */
4530
- .pinecone-health-status-container {
4531
- display: flex;
4532
- align-items: center;
4533
- gap: 0.5rem;
4534
- margin-bottom: 1rem;
4535
- }
4536
-
4537
- .pinecone-health-status {
4538
- display: inline-block;
4539
- padding: 0.25rem 0.75rem;
4540
- border-radius: 0.25rem;
4541
- font-size: 0.75rem;
4542
- font-weight: 600;
4543
- text-transform: uppercase;
4544
- }
4545
-
4546
- .pinecone-health-status.status-healthy {
4547
- background-color: #dcfce7;
4548
- color: #166534;
4549
- }
4550
-
4551
- .pinecone-health-status.status-error {
4552
- background-color: #fef2f2;
4553
- color: #991b1b;
4554
- }
4555
-
4556
- .pinecone-health-status.status-warning {
4557
- background-color: #fef3c7;
4558
- color: #92400e;
4559
- }
4560
-
4561
- .pinecone-health-status.status-running {
4562
- background-color: #dbeafe;
4563
- color: #1e40af;
4564
- }
4565
-
4566
- /* Summary statistics */
4567
- .pinecone-health-summary {
4568
- display: flex;
4569
- gap: 2rem;
4570
- margin-bottom: 1.5rem;
4571
- padding: 1rem;
4572
- background-color: #f9fafb;
4573
- border-radius: 0.25rem;
4574
- flex-wrap: wrap;
4575
- }
4576
-
4577
- .pinecone-health-stat {
4578
- display: flex;
4579
- flex-direction: column;
4580
- align-items: center;
4581
- min-width: 80px;
4582
- }
4583
-
4584
- .pinecone-health-stat-label {
4585
- font-size: 0.875rem;
4586
- color: var(--secondary-color);
4587
- margin-bottom: 0.25rem;
4588
- }
4589
-
4590
- .pinecone-health-stat-value {
4591
- font-size: 1.5rem;
4592
- font-weight: 600;
4593
- color: var(--text-color);
4594
- }
4595
-
4596
- /* All good state */
4597
- .pinecone-health-all-good {
4598
- padding: 1.5rem;
4599
- text-align: center;
4600
- background-color: #f0fdf4;
4601
- border: 1px solid #bbf7d0;
4602
- border-radius: 0.25rem;
4603
- color: #166534;
4604
- }
4605
-
4606
- .pinecone-health-all-good p {
4607
- margin: 0;
4608
- font-weight: 500;
4609
- }
4610
-
4611
- /* Pinecone health table (shared styles for namespace and failures tables) */
4612
- .pinecone-health-table {
4613
- width: 100%;
4614
- border-collapse: collapse;
4615
- margin-top: 1rem;
4616
- table-layout: fixed;
4617
- }
4618
-
4619
- .pinecone-health-table th,
4620
- .pinecone-health-table td {
4621
- padding: 0.75rem;
4622
- text-align: left;
4623
- border-bottom: 1px solid var(--border-color);
4624
- }
4625
-
4626
- .pinecone-health-table th {
4627
- background-color: #f9fafb;
4628
- font-weight: 500;
4629
- font-size: 0.875rem;
4630
- color: var(--secondary-color);
4631
- }
4632
-
4633
- .pinecone-health-table td {
4634
- font-size: 0.875rem;
4635
- vertical-align: middle;
4636
- word-wrap: break-word;
4637
- }
4638
-
4639
- .pinecone-health-table tbody tr:hover {
4640
- background-color: #f9fafb;
4641
- }
4642
-
4643
- /* Namespace results table column widths */
4644
- #pinecone-namespace-container .pinecone-health-table th:nth-child(1),
4645
- #pinecone-namespace-container .pinecone-health-table td:nth-child(1) {
4646
- width: 25%;
4647
- }
4648
-
4649
- #pinecone-namespace-container .pinecone-health-table th:nth-child(2),
4650
- #pinecone-namespace-container .pinecone-health-table td:nth-child(2) {
4651
- width: 15%;
4652
- }
4653
-
4654
- #pinecone-namespace-container .pinecone-health-table th:nth-child(3),
4655
- #pinecone-namespace-container .pinecone-health-table td:nth-child(3),
4656
- #pinecone-namespace-container .pinecone-health-table th:nth-child(4),
4657
- #pinecone-namespace-container .pinecone-health-table td:nth-child(4),
4658
- #pinecone-namespace-container .pinecone-health-table th:nth-child(5),
4659
- #pinecone-namespace-container .pinecone-health-table td:nth-child(5) {
4660
- width: 12%;
4661
- text-align: right;
4662
- }
4663
-
4664
- #pinecone-namespace-container .pinecone-health-table th:nth-child(6),
4665
- #pinecone-namespace-container .pinecone-health-table td:nth-child(6) {
4666
- width: 12%;
4667
- text-align: center;
4668
- }
4669
-
4670
- /* Sample failures table column widths */
4671
- #pinecone-failures-container .pinecone-health-table th:nth-child(1),
4672
- #pinecone-failures-container .pinecone-health-table td:nth-child(1) {
4673
- width: 20%;
4674
- }
4675
-
4676
- #pinecone-failures-container .pinecone-health-table th:nth-child(2),
4677
- #pinecone-failures-container .pinecone-health-table td:nth-child(2) {
4678
- width: 15%;
4679
- }
4680
-
4681
- #pinecone-failures-container .pinecone-health-table th:nth-child(3),
4682
- #pinecone-failures-container .pinecone-health-table td:nth-child(3) {
4683
- width: 30%;
4684
- font-family: monospace;
4685
- font-size: 0.8rem;
4686
- }
4687
-
4688
- #pinecone-failures-container .pinecone-health-table th:nth-child(4),
4689
- #pinecone-failures-container .pinecone-health-table td:nth-child(4) {
4690
- width: 35%;
4691
- }
4692
-
4693
- /* Container headers */
4694
- #pinecone-namespace-container h3,
4695
- #pinecone-failures-container h3 {
4696
- font-size: 1rem;
4697
- font-weight: 500;
4698
- color: var(--text-color);
4699
- margin-bottom: 0.5rem;
4700
- margin-top: 1.5rem;
4701
- }
4702
-
4703
- #pinecone-failures-container h3 {
4704
- color: var(--error-color);
4705
- }
4706
-
4707
- /* ========================================
4708
- Pinecone Regenerate Section Styles
4709
- ======================================== */
4710
-
4711
- .pinecone-regenerate-section {
4712
- margin-top: 1.5rem;
4713
- padding-top: 1.5rem;
4714
- border-top: 1px solid var(--border-color);
4715
- }
4716
-
4717
- .pinecone-regenerate-section h4 {
4718
- font-size: 0.95rem;
4719
- font-weight: 600;
4720
- color: var(--text-color);
4721
- margin: 0 0 0.5rem 0;
4722
- }
4723
-
4724
- .regenerate-instructions {
4725
- font-size: 0.875rem;
4726
- color: var(--secondary-color);
4727
- margin: 0 0 0.75rem 0;
4728
- }
4729
-
4730
- .regenerate-checkboxes {
4731
- display: flex;
4732
- flex-direction: column;
4733
- gap: 0.5rem;
4734
- margin-bottom: 1rem;
4735
- }
4736
-
4737
- .regenerate-checkboxes .checkbox-label {
4738
- display: flex;
4739
- align-items: center;
4740
- gap: 0.5rem;
4741
- font-size: 0.875rem;
4742
- cursor: pointer;
4743
- }
4744
-
4745
- .regenerate-checkboxes .checkbox-label input[type="checkbox"] {
4746
- width: 16px;
4747
- height: 16px;
4748
- cursor: pointer;
4749
- accent-color: var(--primary-color);
4750
- }
4751
-
4752
- .regenerate-checkboxes .checkbox-label span {
4753
- color: var(--text-color);
4754
- }
4755
-
4756
- .regenerate-checkboxes .namespace-name {
4757
- font-family: monospace;
4758
- font-size: 0.8rem;
4759
- background-color: #f1f5f9;
4760
- padding: 0.125rem 0.375rem;
4761
- border-radius: 0.25rem;
4762
- color: var(--secondary-color);
4763
- }
4764
-
4765
- .regenerate-checkboxes .metadata-warning {
4766
- font-size: 0.75rem;
4767
- color: #f59e0b;
4768
- margin-left: 0.25rem;
4769
- }
4770
-
4771
- /* Info tooltip button */
4772
- .info-tooltip-btn {
4773
- display: inline-flex;
4774
- align-items: center;
4775
- justify-content: center;
4776
- width: 18px;
4777
- height: 18px;
4778
- margin-left: 0.375rem;
4779
- padding: 0;
4780
- font-size: 0.75rem;
4781
- color: #6b7280;
4782
- background: none;
4783
- border: none;
4784
- cursor: pointer;
4785
- vertical-align: middle;
4786
- transition: color 0.15s ease;
4787
- }
4788
-
4789
- .info-tooltip-btn:hover {
4790
- color: var(--primary-color);
4791
- }
4792
-
4793
- /* Namespace info panel */
4794
- .namespace-info {
4795
- margin: 0.375rem 0 0.75rem 1.5rem;
4796
- padding: 0.625rem 0.75rem;
4797
- font-size: 0.8rem;
4798
- color: #4b5563;
4799
- background-color: #f3f4f6;
4800
- border-left: 3px solid var(--primary-color);
4801
- border-radius: 0 0.25rem 0.25rem 0;
4802
- line-height: 1.4;
4803
- }
4804
-
4805
- .namespace-info.hidden {
4806
- display: none;
4807
- }
4808
-
4809
- .namespace-info strong {
4810
- color: var(--text-color);
4811
- }
4812
-
4813
- /* Note styling (softer than warning) */
4814
- .regenerate-note {
4815
- display: flex;
4816
- align-items: flex-start;
4817
- gap: 0.5rem;
4818
- padding: 0.625rem 0.75rem;
4819
- background-color: #eff6ff;
4820
- border: 1px solid #bfdbfe;
4821
- border-radius: 0.25rem;
4822
- margin-bottom: 1rem;
4823
- }
4824
-
4825
- .regenerate-note .note-label {
4826
- font-size: 0.8rem;
4827
- font-weight: 600;
4828
- color: #1e40af;
4829
- }
4830
-
4831
- .regenerate-note .note-text {
4832
- font-size: 0.8rem;
4833
- color: #1e40af;
4834
- line-height: 1.4;
4835
- }
4836
-
4837
- .regenerate-warning {
4838
- display: flex;
4839
- align-items: flex-start;
4840
- gap: 0.5rem;
4841
- padding: 0.75rem;
4842
- background-color: #fef3c7;
4843
- border: 1px solid #fcd34d;
4844
- border-radius: 0.25rem;
4845
- margin-bottom: 1rem;
4846
- }
4847
-
4848
- .regenerate-warning .warning-icon {
4849
- font-size: 1rem;
4850
- line-height: 1;
4851
- }
4852
-
4853
- .regenerate-warning .warning-text {
4854
- font-size: 0.8rem;
4855
- color: #92400e;
4856
- line-height: 1.4;
4857
- }
4858
-
4859
- /* Warning button style */
4860
- .btn-warning {
4861
- background-color: #f59e0b;
4862
- color: #fff;
4863
- border: 1px solid #d97706;
4864
- }
4865
-
4866
- .btn-warning:hover {
4867
- background-color: #d97706;
4868
- border-color: #b45309;
4869
- }
4870
-
4871
- .btn-warning:active {
4872
- background-color: #b45309;
4873
- }
4874
-
4875
- .btn-warning:disabled {
4876
- background-color: #fcd34d;
4877
- border-color: #fcd34d;
4878
- cursor: not-allowed;
4879
- }
4880
-
4881
- /* `.hidden` is provided by the global utility in src/css/globals.css; do not
4882
- redefine it here (BAPI-301). */
4883
-
4884
- /* Phase 1b: Learn-repository auto-update schedule */
4885
- .learn-repo-schedule-section {
4886
- border-radius: 6px;
4887
- padding: 1rem;
4888
- margin-top: 0.75rem;
4889
- }
4890
- .learn-repo-schedule-section h4 {
4891
- margin: 0 0 0.25rem 0;
4892
- }
4893
- .learn-repo-instructions {
4894
- font-size: 0.85rem;
4895
- color: #6b7280;
4896
- margin-bottom: 0.75rem;
4897
- }
4898
- .learn-repo-analysis-types {
4899
- border: none;
4900
- padding: 0;
4901
- margin: 0 0 0.75rem 0;
4902
- display: grid;
4903
- grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
4904
- gap: 0.25rem 1rem;
4905
- }
4906
- .learn-repo-analysis-types legend {
4907
- font-weight: 600;
4908
- margin-bottom: 0.25rem;
4909
- }
4910
- .learn-repo-actions {
4911
- margin-top: 0.5rem;
4912
- }
4913
- .learn-repo-message {
4914
- margin-top: 0.5rem;
4915
- font-size: 0.875rem;
4916
- color: #1f2937;
4917
- }
4918
- .learn-repo-schedule-status {
4919
- margin-top: 0.75rem;
4920
- display: flex;
4921
- flex-direction: column;
4922
- gap: 0.5rem;
4923
- }
4924
- .learn-repo-schedule-row {
4925
- border: 1px solid #e5e7eb;
4926
- border-radius: 4px;
4927
- padding: 0.75rem;
4928
- background-color: #f9fafb;
4929
- }
4930
- .learn-repo-schedule-meta {
4931
- font-size: 0.85rem;
4932
- color: #4b5563;
4933
- margin: 0.25rem 0;
4934
- }
4935
- .learn-repo-row-actions {
4936
- margin-top: 0.5rem;
4937
- display: flex;
4938
- gap: 0.5rem;
4939
- }
4940
- .learn-repo-status-running {
4941
- color: #2563eb;
4942
- }
4943
- .learn-repo-status-success {
4944
- color: #15803d;
4945
- }
4946
- .learn-repo-status-failure {
4947
- color: #b91c1c;
4948
- }
4949
- .learn-repo-status-idle {
4950
- color: #6b7280;
4951
- }
4952
- .learn-repo-schedule-row details {
4953
- margin-top: 0.5rem;
4954
- font-size: 0.85rem;
4955
- }
4956
- .learn-repo-schedule-row details pre {
4957
- white-space: pre-wrap;
4958
- background-color: #ffffff;
4959
- border: 1px solid #e5e7eb;
4960
- border-radius: 3px;
4961
- padding: 0.5rem;
4962
- margin: 0.25rem 0 0 0;
4963
- }
4964
- .form-error {
4965
- color: #b91c1c;
4966
- font-size: 0.85rem;
4967
- margin-top: 0.25rem;
4968
- }
4969
-
4970
-
4971
- /*# sourceMappingURL=main.min.css.map*/