@openeryc/pi-coding-agent 0.75.41 → 0.75.43

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 (34) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/cli.js +0 -0
  3. package/dist/core/agent-session.d.ts.map +1 -1
  4. package/dist/core/agent-session.js +3 -1
  5. package/dist/core/agent-session.js.map +1 -1
  6. package/dist/core/settings-manager.d.ts +3 -0
  7. package/dist/core/settings-manager.d.ts.map +1 -1
  8. package/dist/core/settings-manager.js +16 -0
  9. package/dist/core/settings-manager.js.map +1 -1
  10. package/dist/modes/interactive/components/mcp-selector.d.ts +8 -5
  11. package/dist/modes/interactive/components/mcp-selector.d.ts.map +1 -1
  12. package/dist/modes/interactive/components/mcp-selector.js +22 -13
  13. package/dist/modes/interactive/components/mcp-selector.js.map +1 -1
  14. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  15. package/dist/modes/interactive/interactive-mode.js +45 -30
  16. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  17. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  18. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  19. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  20. package/examples/extensions/sandbox/package-lock.json +2 -2
  21. package/examples/extensions/sandbox/package.json +1 -1
  22. package/examples/extensions/with-deps/package-lock.json +2 -2
  23. package/examples/extensions/with-deps/package.json +1 -1
  24. package/npm-shrinkwrap.json +12 -12
  25. package/package.json +4 -4
  26. package/dist/core/export-html/template.css +0 -1066
  27. package/dist/core/export-html/template.html +0 -55
  28. package/dist/core/export-html/template.js +0 -1848
  29. package/dist/core/export-html/vendor/highlight.min.js +0 -1213
  30. package/dist/core/export-html/vendor/marked.min.js +0 -6
  31. package/dist/modes/interactive/assets/clankolas.png +0 -0
  32. package/dist/modes/interactive/theme/dark.json +0 -86
  33. package/dist/modes/interactive/theme/light.json +0 -85
  34. package/dist/modes/interactive/theme/theme-schema.json +0 -335
@@ -1,1066 +0,0 @@
1
- :root {
2
- {{THEME_VARS}}
3
- --body-bg: {{BODY_BG}};
4
- --container-bg: {{CONTAINER_BG}};
5
- --info-bg: {{INFO_BG}};
6
- }
7
-
8
- * { margin: 0; padding: 0; box-sizing: border-box; }
9
-
10
- :root {
11
- --line-height: 18px; /* 12px font * 1.5 */
12
- --sidebar-width: 400px;
13
- --sidebar-min-width: 240px;
14
- --sidebar-max-width: 840px;
15
- --sidebar-resizer-width: 6px;
16
- }
17
-
18
- body {
19
- font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
20
- font-size: 12px;
21
- line-height: var(--line-height);
22
- color: var(--text);
23
- background: var(--body-bg);
24
- }
25
-
26
- body.sidebar-resizing {
27
- cursor: col-resize;
28
- user-select: none;
29
- }
30
-
31
- #app {
32
- display: flex;
33
- min-height: 100vh;
34
- }
35
-
36
- /* Sidebar */
37
- #sidebar {
38
- width: var(--sidebar-width);
39
- min-width: var(--sidebar-width);
40
- max-width: var(--sidebar-width);
41
- background: var(--container-bg);
42
- flex-shrink: 0;
43
- display: flex;
44
- flex-direction: column;
45
- position: sticky;
46
- top: 0;
47
- height: 100vh;
48
- border-right: 1px solid var(--dim);
49
- }
50
-
51
- #sidebar-resizer {
52
- width: var(--sidebar-resizer-width);
53
- flex-shrink: 0;
54
- position: sticky;
55
- top: 0;
56
- height: 100vh;
57
- cursor: col-resize;
58
- touch-action: none;
59
- background: transparent;
60
- border-right: 1px solid transparent;
61
- }
62
-
63
- #sidebar-resizer:hover,
64
- body.sidebar-resizing #sidebar-resizer {
65
- background: var(--selectedBg);
66
- border-right-color: var(--dim);
67
- }
68
-
69
- .sidebar-header {
70
- padding: 8px 12px;
71
- flex-shrink: 0;
72
- }
73
-
74
- .sidebar-controls {
75
- padding: 8px 8px 4px 8px;
76
- }
77
-
78
- .sidebar-search {
79
- width: 100%;
80
- box-sizing: border-box;
81
- padding: 4px 8px;
82
- font-size: 11px;
83
- font-family: inherit;
84
- background: var(--body-bg);
85
- color: var(--text);
86
- border: 1px solid var(--dim);
87
- border-radius: 3px;
88
- }
89
-
90
- .sidebar-filters {
91
- display: flex;
92
- padding: 4px 8px 8px 8px;
93
- gap: 4px;
94
- align-items: center;
95
- flex-wrap: wrap;
96
- }
97
-
98
- .sidebar-search:focus {
99
- outline: none;
100
- border-color: var(--accent);
101
- }
102
-
103
- .sidebar-search::placeholder {
104
- color: var(--muted);
105
- }
106
-
107
- .filter-btn {
108
- padding: 3px 8px;
109
- font-size: 10px;
110
- font-family: inherit;
111
- background: transparent;
112
- color: var(--muted);
113
- border: 1px solid var(--dim);
114
- border-radius: 3px;
115
- cursor: pointer;
116
- }
117
-
118
- .filter-btn:hover {
119
- color: var(--text);
120
- border-color: var(--text);
121
- }
122
-
123
- .filter-btn.active {
124
- background: var(--accent);
125
- color: var(--body-bg);
126
- border-color: var(--accent);
127
- }
128
-
129
- .sidebar-close {
130
- display: none;
131
- padding: 3px 8px;
132
- font-size: 12px;
133
- font-family: inherit;
134
- background: transparent;
135
- color: var(--muted);
136
- border: 1px solid var(--dim);
137
- border-radius: 3px;
138
- cursor: pointer;
139
- margin-left: auto;
140
- }
141
-
142
- .sidebar-close:hover {
143
- color: var(--text);
144
- border-color: var(--text);
145
- }
146
-
147
- .tree-container {
148
- flex: 1;
149
- overflow: auto;
150
- padding: 4px 0;
151
- }
152
-
153
- .tree-node {
154
- padding: 0 8px;
155
- cursor: pointer;
156
- display: flex;
157
- align-items: baseline;
158
- font-size: 11px;
159
- line-height: 13px;
160
- white-space: nowrap;
161
- }
162
-
163
- .tree-node:hover {
164
- background: var(--selectedBg);
165
- }
166
-
167
- .tree-node.active {
168
- background: var(--selectedBg);
169
- }
170
-
171
- .tree-node.active .tree-content {
172
- font-weight: bold;
173
- }
174
-
175
- .tree-node.in-path {
176
- background: color-mix(in srgb, var(--accent) 10%, transparent);
177
- }
178
-
179
- .tree-node:not(.in-path) {
180
- opacity: 0.5;
181
- }
182
-
183
- .tree-node:not(.in-path):hover {
184
- opacity: 1;
185
- }
186
-
187
- .tree-prefix {
188
- color: var(--muted);
189
- flex-shrink: 0;
190
- font-family: monospace;
191
- white-space: pre;
192
- }
193
-
194
- .tree-marker {
195
- color: var(--accent);
196
- flex-shrink: 0;
197
- }
198
-
199
- .tree-content {
200
- color: var(--text);
201
- }
202
-
203
- .tree-role-user {
204
- color: var(--accent);
205
- }
206
-
207
- .tree-role-skill {
208
- color: var(--customMessageLabel);
209
- }
210
-
211
- .tree-role-assistant {
212
- color: var(--success);
213
- }
214
-
215
- .tree-role-tool {
216
- color: var(--muted);
217
- }
218
-
219
- .tree-muted {
220
- color: var(--muted);
221
- }
222
-
223
- .tree-error {
224
- color: var(--error);
225
- }
226
-
227
- .tree-compaction {
228
- color: var(--borderAccent);
229
- }
230
-
231
- .tree-branch-summary {
232
- color: var(--warning);
233
- }
234
-
235
- .tree-custom-message {
236
- color: var(--customMessageLabel);
237
- }
238
-
239
- .tree-status {
240
- padding: 4px 12px;
241
- font-size: 10px;
242
- color: var(--muted);
243
- flex-shrink: 0;
244
- }
245
-
246
- /* Main content */
247
- #content {
248
- flex: 1;
249
- min-width: 0;
250
- overflow-y: auto;
251
- padding: var(--line-height) calc(var(--line-height) * 2);
252
- display: flex;
253
- flex-direction: column;
254
- align-items: center;
255
- }
256
-
257
- #content > * {
258
- width: 100%;
259
- max-width: 800px;
260
- }
261
-
262
- /* Help bar */
263
- .help-bar {
264
- font-size: 11px;
265
- color: var(--warning);
266
- margin-bottom: var(--line-height);
267
- display: flex;
268
- align-items: center;
269
- justify-content: space-between;
270
- flex-wrap: wrap;
271
- gap: 12px;
272
- }
273
-
274
- .help-hint {
275
- flex: 1 1 240px;
276
- }
277
-
278
- .help-actions {
279
- display: flex;
280
- align-items: center;
281
- flex-wrap: wrap;
282
- gap: 8px;
283
- }
284
-
285
- .header-toggle-btn,
286
- .download-json-btn {
287
- font-size: 10px;
288
- padding: 2px 8px;
289
- background: var(--container-bg);
290
- border: 1px solid var(--border);
291
- border-radius: 3px;
292
- color: var(--text);
293
- cursor: pointer;
294
- font-family: inherit;
295
- }
296
-
297
- .header-toggle-btn:hover,
298
- .download-json-btn:hover {
299
- background: var(--hover);
300
- border-color: var(--borderAccent);
301
- }
302
-
303
- /* Header */
304
- .header {
305
- background: var(--container-bg);
306
- border-radius: 4px;
307
- padding: var(--line-height);
308
- margin-bottom: var(--line-height);
309
- }
310
-
311
- .header h1 {
312
- font-size: 12px;
313
- font-weight: bold;
314
- color: var(--borderAccent);
315
- margin-bottom: var(--line-height);
316
- }
317
-
318
- .header-info {
319
- display: flex;
320
- flex-direction: column;
321
- gap: 0;
322
- font-size: 11px;
323
- }
324
-
325
- .info-item {
326
- color: var(--dim);
327
- display: flex;
328
- align-items: baseline;
329
- }
330
-
331
- .info-label {
332
- font-weight: 600;
333
- margin-right: 8px;
334
- min-width: 100px;
335
- }
336
-
337
- .info-value {
338
- color: var(--text);
339
- flex: 1;
340
- }
341
-
342
- /* Messages */
343
- #messages {
344
- display: flex;
345
- flex-direction: column;
346
- gap: var(--line-height);
347
- }
348
-
349
- .message-timestamp {
350
- font-size: 10px;
351
- color: var(--dim);
352
- opacity: 0.8;
353
- }
354
-
355
- .user-message {
356
- background: var(--userMessageBg);
357
- color: var(--userMessageText);
358
- padding: var(--line-height);
359
- border-radius: 4px;
360
- position: relative;
361
- }
362
-
363
- .assistant-message {
364
- padding: 0;
365
- position: relative;
366
- }
367
-
368
- /* Copy link button - appears on hover */
369
- .copy-link-btn {
370
- position: absolute;
371
- top: 8px;
372
- right: 8px;
373
- width: 28px;
374
- height: 28px;
375
- padding: 6px;
376
- background: var(--container-bg);
377
- border: 1px solid var(--dim);
378
- border-radius: 4px;
379
- color: var(--muted);
380
- cursor: pointer;
381
- opacity: 0;
382
- transition: opacity 0.15s, background 0.15s, color 0.15s;
383
- display: flex;
384
- align-items: center;
385
- justify-content: center;
386
- z-index: 10;
387
- }
388
-
389
- .user-message:hover .copy-link-btn,
390
- .assistant-message:hover .copy-link-btn,
391
- .skill-user-entry:hover .copy-link-btn {
392
- opacity: 1;
393
- }
394
-
395
- .copy-link-btn:hover {
396
- background: var(--accent);
397
- color: var(--body-bg);
398
- border-color: var(--accent);
399
- }
400
-
401
- .copy-link-btn.copied {
402
- background: var(--success, #22c55e);
403
- color: white;
404
- border-color: var(--success, #22c55e);
405
- }
406
-
407
- /* Highlight effect for deep-linked messages */
408
- .user-message.highlight,
409
- .assistant-message.highlight {
410
- animation: highlight-pulse 2s ease-out;
411
- }
412
-
413
- @keyframes highlight-pulse {
414
- 0% {
415
- box-shadow: 0 0 0 3px var(--accent);
416
- }
417
- 100% {
418
- box-shadow: 0 0 0 0 transparent;
419
- }
420
- }
421
-
422
- .assistant-message > .message-timestamp {
423
- padding-left: var(--line-height);
424
- }
425
-
426
- .assistant-text {
427
- padding: var(--line-height);
428
- padding-bottom: 0;
429
- }
430
-
431
- .message-timestamp + .assistant-text,
432
- .message-timestamp + .thinking-block {
433
- padding-top: 0;
434
- }
435
-
436
- .thinking-block + .assistant-text {
437
- padding-top: 0;
438
- }
439
-
440
- .thinking-text {
441
- padding: var(--line-height);
442
- color: var(--thinkingText);
443
- font-style: italic;
444
- white-space: pre-wrap;
445
- }
446
-
447
- .message-timestamp + .thinking-block .thinking-text,
448
- .message-timestamp + .thinking-block .thinking-collapsed {
449
- padding-top: 0;
450
- }
451
-
452
- .thinking-collapsed {
453
- display: none;
454
- padding: var(--line-height);
455
- color: var(--thinkingText);
456
- font-style: italic;
457
- }
458
-
459
- /* Tool execution */
460
- .tool-execution {
461
- padding: var(--line-height);
462
- border-radius: 4px;
463
- }
464
-
465
- .tool-execution + .tool-execution {
466
- margin-top: var(--line-height);
467
- }
468
-
469
- .assistant-text + .tool-execution {
470
- margin-top: var(--line-height);
471
- }
472
-
473
- .tool-execution.pending { background: var(--toolPendingBg); }
474
- .tool-execution.success { background: var(--toolSuccessBg); }
475
- .tool-execution.error { background: var(--toolErrorBg); }
476
-
477
- .tool-header, .tool-name {
478
- font-weight: bold;
479
- }
480
-
481
- .tool-path {
482
- color: var(--accent);
483
- word-break: break-all;
484
- }
485
-
486
- .line-numbers {
487
- color: var(--warning);
488
- }
489
-
490
- .line-count {
491
- color: var(--dim);
492
- }
493
-
494
- .tool-command {
495
- font-weight: bold;
496
- white-space: pre-wrap;
497
- word-wrap: break-word;
498
- overflow-wrap: break-word;
499
- word-break: break-word;
500
- }
501
-
502
- .tool-output {
503
- margin-top: var(--line-height);
504
- color: var(--toolOutput);
505
- word-wrap: break-word;
506
- overflow-wrap: break-word;
507
- word-break: break-word;
508
- font-family: inherit;
509
- overflow-x: auto;
510
- }
511
-
512
- .tool-output > div,
513
- .output-preview > div,
514
- .output-full > div {
515
- margin: 0;
516
- padding: 0;
517
- line-height: var(--line-height);
518
- }
519
-
520
- .tool-output > div:not(.output-preview):not(.output-full),
521
- .output-preview > div:not(.expand-hint),
522
- .output-full > div:not(.expand-hint) {
523
- white-space: pre-wrap;
524
- }
525
-
526
- .tool-output pre {
527
- margin: 0;
528
- padding: 0;
529
- font-family: inherit;
530
- color: inherit;
531
- white-space: pre-wrap;
532
- word-wrap: break-word;
533
- overflow-wrap: break-word;
534
- }
535
-
536
- .tool-output code {
537
- padding: 0;
538
- background: none;
539
- color: var(--text);
540
- }
541
-
542
- .tool-output.expandable {
543
- cursor: pointer;
544
- }
545
-
546
- .tool-output.expandable:hover {
547
- opacity: 0.9;
548
- }
549
-
550
- .tool-output.expandable .output-full {
551
- display: none;
552
- }
553
-
554
- .tool-output.expandable.expanded .output-preview {
555
- display: none;
556
- }
557
-
558
- .tool-output.expandable.expanded .output-full {
559
- display: block;
560
- }
561
-
562
- .ansi-line {
563
- white-space: pre;
564
- }
565
-
566
- .tool-images {
567
- }
568
-
569
- .tool-image {
570
- max-width: 100%;
571
- max-height: 500px;
572
- border-radius: 4px;
573
- margin: var(--line-height) 0;
574
- }
575
-
576
- .expand-hint {
577
- color: var(--toolOutput);
578
- }
579
-
580
- /* Diff */
581
- .tool-diff {
582
- font-size: 11px;
583
- overflow-x: auto;
584
- white-space: pre;
585
- }
586
-
587
- .diff-added { color: var(--toolDiffAdded); }
588
- .diff-removed { color: var(--toolDiffRemoved); }
589
- .diff-context { color: var(--toolDiffContext); }
590
-
591
- /* Model change */
592
- .model-change {
593
- padding: 0 var(--line-height);
594
- color: var(--dim);
595
- font-size: 11px;
596
- }
597
-
598
- .model-name {
599
- color: var(--borderAccent);
600
- font-weight: bold;
601
- }
602
-
603
- /* Compaction / Branch Summary - matches customMessage colors from TUI */
604
- .compaction {
605
- background: var(--customMessageBg);
606
- border-radius: 4px;
607
- padding: var(--line-height);
608
- cursor: pointer;
609
- }
610
-
611
- .compaction-label {
612
- color: var(--customMessageLabel);
613
- font-weight: bold;
614
- }
615
-
616
- .compaction-collapsed {
617
- color: var(--customMessageText);
618
- }
619
-
620
- .compaction-content {
621
- display: none;
622
- color: var(--customMessageText);
623
- white-space: pre-wrap;
624
- margin-top: var(--line-height);
625
- }
626
-
627
- .compaction.expanded .compaction-collapsed {
628
- display: none;
629
- }
630
-
631
- .compaction.expanded .compaction-content {
632
- display: block;
633
- }
634
-
635
- /* System prompt */
636
- .system-prompt {
637
- background: var(--customMessageBg);
638
- padding: var(--line-height);
639
- border-radius: 4px;
640
- margin-bottom: var(--line-height);
641
- }
642
-
643
- .system-prompt.expandable {
644
- cursor: pointer;
645
- }
646
-
647
- .system-prompt-header {
648
- font-weight: bold;
649
- color: var(--customMessageLabel);
650
- }
651
-
652
- .system-prompt-preview {
653
- color: var(--customMessageText);
654
- white-space: pre-wrap;
655
- word-wrap: break-word;
656
- font-size: 11px;
657
- margin-top: var(--line-height);
658
- }
659
-
660
- .system-prompt-expand-hint {
661
- color: var(--muted);
662
- font-style: italic;
663
- margin-top: 4px;
664
- }
665
-
666
- .system-prompt-full {
667
- display: none;
668
- color: var(--customMessageText);
669
- white-space: pre-wrap;
670
- word-wrap: break-word;
671
- font-size: 11px;
672
- margin-top: var(--line-height);
673
- }
674
-
675
- .system-prompt.expanded .system-prompt-preview,
676
- .system-prompt.expanded .system-prompt-expand-hint {
677
- display: none;
678
- }
679
-
680
- .system-prompt.expanded .system-prompt-full {
681
- display: block;
682
- }
683
-
684
- .system-prompt.provider-prompt {
685
- border-left: 3px solid var(--warning);
686
- }
687
-
688
- .system-prompt-note {
689
- font-size: 10px;
690
- font-style: italic;
691
- color: var(--muted);
692
- margin-top: 4px;
693
- }
694
-
695
- /* Tools list */
696
- .tools-list {
697
- background: var(--customMessageBg);
698
- padding: var(--line-height);
699
- border-radius: 4px;
700
- margin-bottom: var(--line-height);
701
- }
702
-
703
- .tools-header {
704
- font-weight: bold;
705
- color: var(--customMessageLabel);
706
- margin-bottom: var(--line-height);
707
- }
708
-
709
- .tool-item {
710
- font-size: 11px;
711
- }
712
-
713
- .tool-item-name {
714
- font-weight: bold;
715
- color: var(--text);
716
- }
717
-
718
- .tool-item-desc {
719
- color: var(--dim);
720
- }
721
-
722
- .tool-params-hint {
723
- color: var(--muted);
724
- font-style: italic;
725
- }
726
-
727
- .tool-item:has(.tool-params-hint) {
728
- cursor: pointer;
729
- }
730
-
731
- .tool-params-hint::after {
732
- content: '[click to show parameters]';
733
- }
734
-
735
- .tool-item.params-expanded .tool-params-hint::after {
736
- content: '[hide parameters]';
737
- }
738
-
739
- .tool-params-content {
740
- display: none;
741
- margin-top: 4px;
742
- margin-left: 12px;
743
- padding-left: 8px;
744
- border-left: 1px solid var(--dim);
745
- }
746
-
747
- .tool-item.params-expanded .tool-params-content {
748
- display: block;
749
- }
750
-
751
- .tool-param {
752
- margin-bottom: 4px;
753
- font-size: 11px;
754
- }
755
-
756
- .tool-param-name {
757
- font-weight: bold;
758
- color: var(--text);
759
- }
760
-
761
- .tool-param-type {
762
- color: var(--dim);
763
- font-style: italic;
764
- }
765
-
766
- .tool-param-required {
767
- color: var(--warning, #e8a838);
768
- font-size: 10px;
769
- }
770
-
771
- .tool-param-optional {
772
- color: var(--dim);
773
- font-size: 10px;
774
- }
775
-
776
- .tool-param-desc {
777
- color: var(--dim);
778
- margin-left: 8px;
779
- }
780
-
781
- /* Hook/custom messages */
782
- .hook-message {
783
- background: var(--customMessageBg);
784
- color: var(--customMessageText);
785
- padding: var(--line-height);
786
- border-radius: 4px;
787
- }
788
-
789
- .hook-type {
790
- color: var(--customMessageLabel);
791
- font-weight: bold;
792
- }
793
-
794
- /* Skill invocation - matches compaction style (clickable, collapsed by default) */
795
- .skill-invocation {
796
- background: var(--customMessageBg);
797
- border-radius: 4px;
798
- padding: var(--line-height);
799
- cursor: pointer;
800
- }
801
-
802
- .skill-invocation-label {
803
- color: var(--customMessageLabel);
804
- font-weight: bold;
805
- }
806
-
807
- .skill-invocation-collapsed {
808
- color: var(--customMessageText);
809
- }
810
-
811
- .skill-invocation-content {
812
- display: none;
813
- color: var(--customMessageText);
814
- margin-top: var(--line-height);
815
- }
816
-
817
- .skill-invocation.expanded .skill-invocation-collapsed {
818
- display: none;
819
- }
820
-
821
- .skill-invocation.expanded .skill-invocation-content {
822
- display: block;
823
- }
824
-
825
- .skill-invocation + .user-message {
826
- margin-top: var(--line-height);
827
- }
828
-
829
- .skill-user-entry {
830
- position: relative;
831
- }
832
-
833
- /* Branch summary */
834
- .branch-summary {
835
- background: var(--customMessageBg);
836
- padding: var(--line-height);
837
- border-radius: 4px;
838
- }
839
-
840
- .branch-summary-header {
841
- font-weight: bold;
842
- color: var(--borderAccent);
843
- }
844
-
845
- /* Error */
846
- .error-text {
847
- color: var(--error);
848
- padding: 0 var(--line-height);
849
- }
850
- .tool-error {
851
- color: var(--error);
852
- }
853
-
854
- /* Images */
855
- .message-images {
856
- margin-bottom: 12px;
857
- }
858
-
859
- .message-image {
860
- max-width: 100%;
861
- max-height: 400px;
862
- border-radius: 4px;
863
- margin: var(--line-height) 0;
864
- }
865
-
866
- /* Markdown content */
867
- .markdown-content h1,
868
- .markdown-content h2,
869
- .markdown-content h3,
870
- .markdown-content h4,
871
- .markdown-content h5,
872
- .markdown-content h6 {
873
- color: var(--mdHeading);
874
- margin: var(--line-height) 0 0 0;
875
- font-weight: bold;
876
- }
877
-
878
- .markdown-content h1 { font-size: 1em; }
879
- .markdown-content h2 { font-size: 1em; }
880
- .markdown-content h3 { font-size: 1em; }
881
- .markdown-content h4 { font-size: 1em; }
882
- .markdown-content h5 { font-size: 1em; }
883
- .markdown-content h6 { font-size: 1em; }
884
- .markdown-content p { margin: 0; }
885
- .markdown-content p + p { margin-top: var(--line-height); }
886
-
887
- .markdown-content a {
888
- color: var(--mdLink);
889
- text-decoration: underline;
890
- }
891
-
892
- .markdown-content code {
893
- background: rgba(128, 128, 128, 0.2);
894
- color: var(--mdCode);
895
- padding: 0 4px;
896
- border-radius: 3px;
897
- font-family: inherit;
898
- }
899
-
900
- .markdown-content pre {
901
- background: transparent;
902
- margin: var(--line-height) 0;
903
- overflow-x: auto;
904
- }
905
-
906
- .markdown-content pre code {
907
- display: block;
908
- background: none;
909
- color: var(--text);
910
- }
911
-
912
- .markdown-content blockquote {
913
- border-left: 3px solid var(--mdQuoteBorder);
914
- padding-left: var(--line-height);
915
- margin: var(--line-height) 0;
916
- color: var(--mdQuote);
917
- font-style: italic;
918
- }
919
-
920
- .markdown-content ul,
921
- .markdown-content ol {
922
- margin: var(--line-height) 0;
923
- padding-left: calc(var(--line-height) * 2);
924
- }
925
-
926
- .markdown-content li { margin: 0; }
927
- .markdown-content li::marker { color: var(--mdListBullet); }
928
-
929
- .markdown-content hr {
930
- border: none;
931
- border-top: 1px solid var(--mdHr);
932
- margin: var(--line-height) 0;
933
- }
934
-
935
- .markdown-content table {
936
- border-collapse: collapse;
937
- margin: 0.5em 0;
938
- width: 100%;
939
- }
940
-
941
- .markdown-content th,
942
- .markdown-content td {
943
- border: 1px solid var(--mdCodeBlockBorder);
944
- padding: 6px 10px;
945
- text-align: left;
946
- }
947
-
948
- .markdown-content th {
949
- background: rgba(128, 128, 128, 0.1);
950
- font-weight: bold;
951
- }
952
-
953
- .markdown-content img {
954
- max-width: 100%;
955
- border-radius: 4px;
956
- }
957
-
958
- /* Syntax highlighting */
959
- .hljs { background: transparent; color: var(--text); }
960
- .hljs-comment, .hljs-quote { color: var(--syntaxComment); }
961
- .hljs-keyword, .hljs-selector-tag { color: var(--syntaxKeyword); }
962
- .hljs-number, .hljs-literal { color: var(--syntaxNumber); }
963
- .hljs-string, .hljs-doctag { color: var(--syntaxString); }
964
- /* Function names: hljs v11 uses .hljs-title.function_ compound class */
965
- .hljs-function, .hljs-title, .hljs-title.function_, .hljs-section, .hljs-name { color: var(--syntaxFunction); }
966
- /* Types: hljs v11 uses .hljs-title.class_ for class names */
967
- .hljs-type, .hljs-class, .hljs-title.class_, .hljs-built_in { color: var(--syntaxType); }
968
- .hljs-attr, .hljs-variable, .hljs-variable.language_, .hljs-params, .hljs-property { color: var(--syntaxVariable); }
969
- .hljs-meta, .hljs-meta .hljs-keyword, .hljs-meta .hljs-string { color: var(--syntaxKeyword); }
970
- .hljs-operator { color: var(--syntaxOperator); }
971
- .hljs-punctuation { color: var(--syntaxPunctuation); }
972
- .hljs-subst { color: var(--text); }
973
-
974
- /* Footer */
975
- .footer {
976
- margin-top: 48px;
977
- padding: 20px;
978
- text-align: center;
979
- color: var(--dim);
980
- font-size: 10px;
981
- }
982
-
983
- /* Mobile */
984
- #hamburger {
985
- display: none;
986
- position: fixed;
987
- top: 10px;
988
- left: 10px;
989
- z-index: 100;
990
- padding: 3px 8px;
991
- font-size: 12px;
992
- font-family: inherit;
993
- background: transparent;
994
- color: var(--muted);
995
- border: 1px solid var(--dim);
996
- border-radius: 3px;
997
- cursor: pointer;
998
- }
999
-
1000
- #hamburger:hover {
1001
- color: var(--text);
1002
- border-color: var(--text);
1003
- }
1004
-
1005
-
1006
-
1007
- #sidebar-overlay {
1008
- display: none;
1009
- position: fixed;
1010
- top: 0;
1011
- left: 0;
1012
- right: 0;
1013
- bottom: 0;
1014
- background: rgba(0, 0, 0, 0.5);
1015
- z-index: 98;
1016
- }
1017
-
1018
- @media (max-width: 900px) {
1019
- #sidebar {
1020
- position: fixed;
1021
- left: 0;
1022
- width: min(var(--sidebar-width), 100vw);
1023
- min-width: min(var(--sidebar-width), 100vw);
1024
- max-width: min(var(--sidebar-width), 100vw);
1025
- top: 0;
1026
- bottom: 0;
1027
- height: 100vh;
1028
- z-index: 99;
1029
- transform: translateX(-100%);
1030
- transition: transform 0.3s;
1031
- }
1032
-
1033
- #sidebar.open {
1034
- transform: translateX(0);
1035
- }
1036
-
1037
- #sidebar-resizer {
1038
- display: none;
1039
- }
1040
-
1041
- #sidebar-overlay.open {
1042
- display: block;
1043
- }
1044
-
1045
- #hamburger {
1046
- display: block;
1047
- }
1048
-
1049
- .sidebar-close {
1050
- display: block;
1051
- }
1052
-
1053
- #content {
1054
- padding: var(--line-height) 16px;
1055
- }
1056
-
1057
- #content > * {
1058
- max-width: 100%;
1059
- }
1060
- }
1061
-
1062
- @media print {
1063
- #sidebar, #sidebar-resizer, #sidebar-toggle { display: none !important; }
1064
- body { background: white; color: black; }
1065
- #content { max-width: none; }
1066
- }