@jxsuite/studio 0.0.1

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.
@@ -0,0 +1,3676 @@
1
+ /* ../../node_modules/monaco-editor/esm/vs/editor/standalone/browser/standalone-tokens.css */
2
+ .monaco-editor {
3
+ --monaco-monospace-font: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
4
+ font-family: -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, HelveticaNeue-Light, system-ui, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Droid Sans, sans-serif;
5
+ }
6
+
7
+ .monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label, .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label, .monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label, .monaco-editor.hc-light .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
8
+ stroke-width: 1.2px;
9
+ }
10
+
11
+ .monaco-hover p {
12
+ margin: 0;
13
+ }
14
+
15
+ .monaco-aria-container {
16
+ overflow: hidden;
17
+ clip: rect(1px, 1px, 1px, 1px);
18
+ clip-path: inset(50%);
19
+ width: 1px;
20
+ height: 1px;
21
+ margin: -1px;
22
+ padding: 0;
23
+ top: 0;
24
+ position: absolute !important;
25
+ }
26
+
27
+ .monaco-editor .synthetic-focus, .monaco-diff-editor .synthetic-focus, .monaco-editor [tabindex="0"]:focus, .monaco-diff-editor [tabindex="0"]:focus, .monaco-editor [tabindex="-1"]:focus, .monaco-diff-editor [tabindex="-1"]:focus, .monaco-editor button:focus, .monaco-diff-editor button:focus, .monaco-editor input[type="button"]:focus, .monaco-diff-editor input[type="button"]:focus, .monaco-editor input[type="checkbox"]:focus, .monaco-diff-editor input[type="checkbox"]:focus, .monaco-editor input[type="search"]:focus, .monaco-diff-editor input[type="search"]:focus, .monaco-editor input[type="text"]:focus, .monaco-diff-editor input[type="text"]:focus, .monaco-editor select:focus, .monaco-diff-editor select:focus, .monaco-editor textarea:focus, .monaco-diff-editor textarea:focus {
28
+ outline-width: 1px;
29
+ outline-style: solid;
30
+ outline-offset: -1px;
31
+ outline-color: var(--vscode-focusBorder);
32
+ opacity: 1;
33
+ }
34
+
35
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/aria/aria.css */
36
+ .monaco-aria-container {
37
+ position: absolute;
38
+ left: -999em;
39
+ }
40
+
41
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/widget/codeEditor/editor.css */
42
+ ::-ms-clear {
43
+ display: none;
44
+ }
45
+
46
+ .monaco-editor .editor-widget input {
47
+ color: inherit;
48
+ }
49
+
50
+ .monaco-editor {
51
+ position: relative;
52
+ overflow: visible;
53
+ -webkit-text-size-adjust: 100%;
54
+ color: var(--vscode-editor-foreground);
55
+ background-color: var(--vscode-editor-background);
56
+ overflow-wrap: initial;
57
+ }
58
+
59
+ .monaco-editor-background {
60
+ background-color: var(--vscode-editor-background);
61
+ }
62
+
63
+ .monaco-editor .rangeHighlight {
64
+ background-color: var(--vscode-editor-rangeHighlightBackground);
65
+ box-sizing: border-box;
66
+ border: 1px solid var(--vscode-editor-rangeHighlightBorder);
67
+ }
68
+
69
+ .monaco-editor.hc-black .rangeHighlight, .monaco-editor.hc-light .rangeHighlight {
70
+ border-style: dotted;
71
+ }
72
+
73
+ .monaco-editor .symbolHighlight {
74
+ background-color: var(--vscode-editor-symbolHighlightBackground);
75
+ box-sizing: border-box;
76
+ border: 1px solid var(--vscode-editor-symbolHighlightBorder);
77
+ }
78
+
79
+ .monaco-editor.hc-black .symbolHighlight, .monaco-editor.hc-light .symbolHighlight {
80
+ border-style: dotted;
81
+ }
82
+
83
+ .monaco-editor .editorCanvas {
84
+ position: absolute;
85
+ z-index: 0;
86
+ pointer-events: none;
87
+ width: 100%;
88
+ height: 100%;
89
+ }
90
+
91
+ .monaco-editor .overflow-guard {
92
+ position: relative;
93
+ overflow: hidden;
94
+ }
95
+
96
+ .monaco-editor .view-overlays {
97
+ position: absolute;
98
+ top: 0;
99
+ }
100
+
101
+ .monaco-editor .view-overlays > div, .monaco-editor .margin-view-overlays > div {
102
+ position: absolute;
103
+ width: 100%;
104
+ }
105
+
106
+ .monaco-editor .squiggly-error {
107
+ border-bottom: 4px double var(--vscode-editorError-border);
108
+ }
109
+
110
+ .monaco-editor .squiggly-error:before {
111
+ display: block;
112
+ content: "";
113
+ background: var(--vscode-editorError-background);
114
+ width: 100%;
115
+ height: 100%;
116
+ }
117
+
118
+ .monaco-editor .squiggly-warning {
119
+ border-bottom: 4px double var(--vscode-editorWarning-border);
120
+ }
121
+
122
+ .monaco-editor .squiggly-warning:before {
123
+ display: block;
124
+ content: "";
125
+ background: var(--vscode-editorWarning-background);
126
+ width: 100%;
127
+ height: 100%;
128
+ }
129
+
130
+ .monaco-editor .squiggly-info {
131
+ border-bottom: 4px double var(--vscode-editorInfo-border);
132
+ }
133
+
134
+ .monaco-editor .squiggly-info:before {
135
+ display: block;
136
+ content: "";
137
+ background: var(--vscode-editorInfo-background);
138
+ width: 100%;
139
+ height: 100%;
140
+ }
141
+
142
+ .monaco-editor .squiggly-hint {
143
+ border-bottom: 2px dotted var(--vscode-editorHint-border);
144
+ }
145
+
146
+ .monaco-editor.showUnused .squiggly-unnecessary {
147
+ border-bottom: 2px dashed var(--vscode-editorUnnecessaryCode-border);
148
+ }
149
+
150
+ .monaco-editor.showDeprecated .squiggly-inline-deprecated {
151
+ text-decoration: line-through;
152
+ text-decoration-color: var(--vscode-editor-foreground, inherit);
153
+ }
154
+
155
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/scrollbar/media/scrollbars.css */
156
+ .monaco-scrollable-element > .scrollbar > .scra {
157
+ cursor: pointer;
158
+ font-size: 11px !important;
159
+ }
160
+
161
+ .monaco-scrollable-element > .visible {
162
+ opacity: 1;
163
+ z-index: 11;
164
+ background: none;
165
+ transition: opacity .1s linear;
166
+ }
167
+
168
+ .monaco-scrollable-element > .invisible {
169
+ opacity: 0;
170
+ pointer-events: none;
171
+ }
172
+
173
+ .monaco-scrollable-element > .invisible.fade {
174
+ transition: opacity .8s linear;
175
+ }
176
+
177
+ .monaco-scrollable-element > .shadow {
178
+ position: absolute;
179
+ display: none;
180
+ }
181
+
182
+ .monaco-scrollable-element > .shadow.top {
183
+ display: block;
184
+ box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
185
+ width: 100%;
186
+ height: 3px;
187
+ top: 0;
188
+ left: 3px;
189
+ }
190
+
191
+ .monaco-scrollable-element > .shadow.left {
192
+ display: block;
193
+ box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
194
+ width: 3px;
195
+ height: 100%;
196
+ top: 3px;
197
+ left: 0;
198
+ }
199
+
200
+ .monaco-scrollable-element > .shadow.top-left-corner {
201
+ display: block;
202
+ width: 3px;
203
+ height: 3px;
204
+ top: 0;
205
+ left: 0;
206
+ }
207
+
208
+ .monaco-scrollable-element > .shadow.top.left {
209
+ box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
210
+ }
211
+
212
+ .monaco-scrollable-element > .scrollbar {
213
+ background: var(--vscode-scrollbar-background);
214
+ }
215
+
216
+ .monaco-scrollable-element > .scrollbar > .slider {
217
+ background: var(--vscode-scrollbarSlider-background);
218
+ }
219
+
220
+ .monaco-scrollable-element > .scrollbar > .slider:hover {
221
+ background: var(--vscode-scrollbarSlider-hoverBackground);
222
+ }
223
+
224
+ .monaco-scrollable-element > .scrollbar > .slider.active {
225
+ background: var(--vscode-scrollbarSlider-activeBackground);
226
+ }
227
+
228
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css */
229
+ .monaco-editor .blockDecorations-container {
230
+ position: absolute;
231
+ pointer-events: none;
232
+ top: 0;
233
+ }
234
+
235
+ .monaco-editor .blockDecorations-block {
236
+ position: absolute;
237
+ box-sizing: border-box;
238
+ }
239
+
240
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css */
241
+ .monaco-editor .view-overlays .current-line, .monaco-editor .margin-view-overlays .current-line {
242
+ display: block;
243
+ position: absolute;
244
+ box-sizing: border-box;
245
+ height: 100%;
246
+ top: 0;
247
+ left: 0;
248
+ }
249
+
250
+ .monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both {
251
+ border-right: 0;
252
+ }
253
+
254
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/decorations/decorations.css */
255
+ .monaco-editor .lines-content .cdr {
256
+ position: absolute;
257
+ height: 100%;
258
+ }
259
+
260
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css */
261
+ .monaco-editor .glyph-margin {
262
+ position: absolute;
263
+ top: 0;
264
+ }
265
+
266
+ .monaco-editor .glyph-margin-widgets .cgmr {
267
+ position: absolute;
268
+ display: flex;
269
+ justify-content: center;
270
+ align-items: center;
271
+ }
272
+
273
+ .monaco-editor .glyph-margin-widgets .cgmr.codicon-modifier-spin:before {
274
+ position: absolute;
275
+ top: 50%;
276
+ left: 50%;
277
+ transform: translate(-50%, -50%);
278
+ }
279
+
280
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/indentGuides/indentGuides.css */
281
+ .monaco-editor .lines-content .core-guide {
282
+ position: absolute;
283
+ box-sizing: border-box;
284
+ height: 100%;
285
+ }
286
+
287
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css */
288
+ .monaco-editor .margin-view-overlays .line-numbers {
289
+ font-variant-numeric: tabular-nums;
290
+ position: absolute;
291
+ text-align: right;
292
+ display: inline-block;
293
+ vertical-align: middle;
294
+ box-sizing: border-box;
295
+ cursor: default;
296
+ bottom: 0;
297
+ }
298
+
299
+ .monaco-editor .relative-current-line-number {
300
+ text-align: left;
301
+ display: inline-block;
302
+ width: 100%;
303
+ }
304
+
305
+ .monaco-editor .margin-view-overlays .line-numbers.lh-odd {
306
+ margin-top: 1px;
307
+ }
308
+
309
+ .monaco-editor .line-numbers {
310
+ color: var(--vscode-editorLineNumber-foreground);
311
+ }
312
+
313
+ .monaco-editor .line-numbers.active-line-number {
314
+ color: var(--vscode-editorLineNumber-activeForeground);
315
+ }
316
+
317
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/mouseCursor/mouseCursor.css */
318
+ .monaco-mouse-cursor-text {
319
+ cursor: text;
320
+ }
321
+
322
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/viewLines/viewLines.css */
323
+ .mtkcontrol {
324
+ color: #fff !important;
325
+ background: #960000 !important;
326
+ }
327
+
328
+ .mtkoverflow {
329
+ background-color: var(--vscode-button-background, var(--vscode-editor-background));
330
+ color: var(--vscode-button-foreground, var(--vscode-editor-foreground));
331
+ border-style: solid;
332
+ border-width: 1px;
333
+ border-color: var(--vscode-contrastBorder);
334
+ cursor: pointer;
335
+ border-radius: 2px;
336
+ padding: 4px;
337
+ }
338
+
339
+ .mtkoverflow:hover {
340
+ background-color: var(--vscode-button-hoverBackground);
341
+ }
342
+
343
+ .monaco-editor.no-user-select .lines-content, .monaco-editor.no-user-select .view-line, .monaco-editor.no-user-select .view-lines {
344
+ user-select: none;
345
+ -webkit-user-select: none;
346
+ }
347
+
348
+ .monaco-editor.mac .lines-content:hover, .monaco-editor.mac .view-line:hover, .monaco-editor.mac .view-lines:hover {
349
+ user-select: text;
350
+ -webkit-user-select: text;
351
+ -ms-user-select: text;
352
+ }
353
+
354
+ .monaco-editor.enable-user-select {
355
+ user-select: initial;
356
+ -webkit-user-select: initial;
357
+ }
358
+
359
+ .monaco-editor .view-lines {
360
+ white-space: nowrap;
361
+ }
362
+
363
+ .monaco-editor .view-line {
364
+ box-sizing: border-box;
365
+ position: absolute;
366
+ width: 100%;
367
+ }
368
+
369
+ .monaco-editor .lines-content > .view-lines > .view-line > span {
370
+ position: absolute;
371
+ top: 0;
372
+ bottom: 0;
373
+ }
374
+
375
+ .monaco-editor .mtkw {
376
+ color: var(--vscode-editorWhitespace-foreground) !important;
377
+ }
378
+
379
+ .monaco-editor .mtkz {
380
+ display: inline-block;
381
+ color: var(--vscode-editorWhitespace-foreground) !important;
382
+ }
383
+
384
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css */
385
+ .monaco-editor .lines-decorations {
386
+ position: absolute;
387
+ background: #fff;
388
+ top: 0;
389
+ }
390
+
391
+ .monaco-editor .margin-view-overlays .cldr {
392
+ position: absolute;
393
+ height: 100%;
394
+ }
395
+
396
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/margin/margin.css */
397
+ .monaco-editor .margin {
398
+ background-color: var(--vscode-editorGutter-background);
399
+ }
400
+
401
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css */
402
+ .monaco-editor .margin-view-overlays .cmdr {
403
+ position: absolute;
404
+ width: 100%;
405
+ height: 100%;
406
+ left: 0;
407
+ }
408
+
409
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/minimap/minimap.css */
410
+ .monaco-editor .minimap.slider-mouseover .minimap-slider {
411
+ opacity: 0;
412
+ transition: opacity .1s linear;
413
+ }
414
+
415
+ .monaco-editor .minimap.slider-mouseover:hover .minimap-slider, .monaco-editor .minimap.slider-mouseover .minimap-slider.active {
416
+ opacity: 1;
417
+ }
418
+
419
+ .monaco-editor .minimap-slider .minimap-slider-horizontal {
420
+ background: var(--vscode-minimapSlider-background);
421
+ }
422
+
423
+ .monaco-editor .minimap-slider:hover .minimap-slider-horizontal {
424
+ background: var(--vscode-minimapSlider-hoverBackground);
425
+ }
426
+
427
+ .monaco-editor .minimap-slider.active .minimap-slider-horizontal {
428
+ background: var(--vscode-minimapSlider-activeBackground);
429
+ }
430
+
431
+ .monaco-editor .minimap-shadow-visible {
432
+ box-shadow: var(--vscode-scrollbar-shadow) -6px 0 6px -6px inset;
433
+ }
434
+
435
+ .monaco-editor .minimap-shadow-hidden {
436
+ position: absolute;
437
+ width: 0;
438
+ }
439
+
440
+ .monaco-editor .minimap-shadow-visible {
441
+ position: absolute;
442
+ pointer-events: none;
443
+ width: 6px;
444
+ left: -6px;
445
+ }
446
+
447
+ .monaco-editor.no-minimap-shadow .minimap-shadow-visible {
448
+ position: absolute;
449
+ width: 1px;
450
+ left: -1px;
451
+ }
452
+
453
+ .minimap.minimap-autohide-mouseover, .minimap.minimap-autohide-scroll {
454
+ opacity: 0;
455
+ transition: opacity .5s;
456
+ }
457
+
458
+ .minimap.minimap-autohide-scroll {
459
+ pointer-events: none;
460
+ }
461
+
462
+ .minimap.minimap-autohide-mouseover:hover, .minimap.minimap-autohide-scroll.active {
463
+ opacity: 1;
464
+ pointer-events: auto;
465
+ }
466
+
467
+ .monaco-editor .minimap {
468
+ z-index: 5;
469
+ }
470
+
471
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css */
472
+ .monaco-editor .overlayWidgets {
473
+ position: absolute;
474
+ top: 0;
475
+ left: 0;
476
+ }
477
+
478
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/rulers/rulers.css */
479
+ .monaco-editor .view-ruler {
480
+ position: absolute;
481
+ box-shadow: 1px 0 0 0 var(--vscode-editorRuler-foreground) inset;
482
+ top: 0;
483
+ }
484
+
485
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css */
486
+ .monaco-editor .scroll-decoration {
487
+ position: absolute;
488
+ box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
489
+ height: 6px;
490
+ top: 0;
491
+ left: 0;
492
+ }
493
+
494
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/selections/selections.css */
495
+ .monaco-editor .lines-content .cslr {
496
+ position: absolute;
497
+ }
498
+
499
+ .monaco-editor .focused .selected-text {
500
+ background-color: var(--vscode-editor-selectionBackground);
501
+ }
502
+
503
+ .monaco-editor .selected-text {
504
+ background-color: var(--vscode-editor-inactiveSelectionBackground);
505
+ }
506
+
507
+ .monaco-editor .top-left-radius {
508
+ border-top-left-radius: 3px;
509
+ }
510
+
511
+ .monaco-editor .bottom-left-radius {
512
+ border-bottom-left-radius: 3px;
513
+ }
514
+
515
+ .monaco-editor .top-right-radius {
516
+ border-top-right-radius: 3px;
517
+ }
518
+
519
+ .monaco-editor .bottom-right-radius {
520
+ border-bottom-right-radius: 3px;
521
+ }
522
+
523
+ .monaco-editor.hc-black .top-left-radius {
524
+ border-top-left-radius: 0;
525
+ }
526
+
527
+ .monaco-editor.hc-black .bottom-left-radius {
528
+ border-bottom-left-radius: 0;
529
+ }
530
+
531
+ .monaco-editor.hc-black .top-right-radius {
532
+ border-top-right-radius: 0;
533
+ }
534
+
535
+ .monaco-editor.hc-black .bottom-right-radius {
536
+ border-bottom-right-radius: 0;
537
+ }
538
+
539
+ .monaco-editor.hc-light .top-left-radius {
540
+ border-top-left-radius: 0;
541
+ }
542
+
543
+ .monaco-editor.hc-light .bottom-left-radius {
544
+ border-bottom-left-radius: 0;
545
+ }
546
+
547
+ .monaco-editor.hc-light .top-right-radius {
548
+ border-top-right-radius: 0;
549
+ }
550
+
551
+ .monaco-editor.hc-light .bottom-right-radius {
552
+ border-bottom-right-radius: 0;
553
+ }
554
+
555
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/viewCursors/viewCursors.css */
556
+ .monaco-editor .cursors-layer {
557
+ position: absolute;
558
+ top: 0;
559
+ }
560
+
561
+ .monaco-editor .cursors-layer > .cursor {
562
+ position: absolute;
563
+ overflow: hidden;
564
+ box-sizing: border-box;
565
+ }
566
+
567
+ .monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor {
568
+ transition: all 80ms;
569
+ }
570
+
571
+ .monaco-editor .cursors-layer.cursor-block-outline-style > .cursor {
572
+ border-style: solid;
573
+ border-width: 1px;
574
+ background: none !important;
575
+ }
576
+
577
+ .monaco-editor .cursors-layer.cursor-underline-style > .cursor {
578
+ border-bottom-style: solid;
579
+ border-bottom-width: 2px;
580
+ background: none !important;
581
+ }
582
+
583
+ .monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
584
+ border-bottom-style: solid;
585
+ border-bottom-width: 1px;
586
+ background: none !important;
587
+ }
588
+
589
+ @keyframes monaco-cursor-smooth {
590
+ 0%, 20% {
591
+ opacity: 1;
592
+ }
593
+
594
+ 60%, 100% {
595
+ opacity: 0;
596
+ }
597
+ }
598
+
599
+ @keyframes monaco-cursor-phase {
600
+ 0%, 20% {
601
+ opacity: 1;
602
+ }
603
+
604
+ 90%, 100% {
605
+ opacity: 0;
606
+ }
607
+ }
608
+
609
+ @keyframes monaco-cursor-expand {
610
+ 0%, 20% {
611
+ transform: scaleY(1);
612
+ }
613
+
614
+ 80%, 100% {
615
+ transform: scaleY(0);
616
+ }
617
+ }
618
+
619
+ .cursor-smooth {
620
+ animation: monaco-cursor-smooth .5s ease-in-out 0s 20 alternate;
621
+ }
622
+
623
+ .cursor-phase {
624
+ animation: monaco-cursor-phase .5s ease-in-out 0s 20 alternate;
625
+ }
626
+
627
+ .cursor-expand > .cursor {
628
+ animation: monaco-cursor-expand .5s ease-in-out 0s 20 alternate;
629
+ }
630
+
631
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/whitespace/whitespace.css */
632
+ .monaco-editor .mwh {
633
+ position: absolute;
634
+ color: var(--vscode-editorWhitespace-foreground) !important;
635
+ }
636
+
637
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css */
638
+ .monaco-editor .monaco-decoration-css-rule-extractor {
639
+ visibility: hidden;
640
+ pointer-events: none;
641
+ }
642
+
643
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css */
644
+ .monaco-editor .inputarea {
645
+ position: absolute;
646
+ resize: none;
647
+ overflow: hidden;
648
+ color: #0000;
649
+ z-index: -10;
650
+ background-color: #0000;
651
+ border: none;
652
+ min-width: 0;
653
+ min-height: 0;
654
+ margin: 0;
655
+ padding: 0;
656
+ outline: none !important;
657
+ }
658
+
659
+ .monaco-editor .inputarea.ime-input {
660
+ z-index: 10;
661
+ caret-color: var(--vscode-editorCursor-foreground);
662
+ color: var(--vscode-editor-foreground);
663
+ }
664
+
665
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/controller/editContext/native/nativeEditContext.css */
666
+ .monaco-editor .native-edit-context {
667
+ position: absolute;
668
+ overflow-y: scroll;
669
+ scrollbar-width: none;
670
+ z-index: -10;
671
+ white-space: pre-wrap;
672
+ margin: 0;
673
+ padding: 0;
674
+ }
675
+
676
+ .monaco-editor .ime-text-area {
677
+ position: absolute;
678
+ resize: none;
679
+ overflow: hidden;
680
+ color: #0000;
681
+ z-index: -10;
682
+ background-color: #0000;
683
+ border: none;
684
+ min-width: 0;
685
+ min-height: 0;
686
+ margin: 0;
687
+ padding: 0;
688
+ outline: none !important;
689
+ }
690
+
691
+ .monaco-editor .edit-context-composition-none {
692
+ background-color: #0000;
693
+ border-bottom: none;
694
+ }
695
+
696
+ .monaco-editor :not(:-webkit-any(.hc-black, .hc-light)) .edit-context-composition-secondary {
697
+ border-bottom: 1px solid var(--vscode-editor-compositionBorder);
698
+ }
699
+
700
+ .monaco-editor :not(:-moz-any(.hc-black, .hc-light)) .edit-context-composition-secondary {
701
+ border-bottom: 1px solid var(--vscode-editor-compositionBorder);
702
+ }
703
+
704
+ .monaco-editor :not(:is(.hc-black, .hc-light)) .edit-context-composition-secondary {
705
+ border-bottom: 1px solid var(--vscode-editor-compositionBorder);
706
+ }
707
+
708
+ .monaco-editor :not(:-webkit-any(.hc-black, .hc-light)) .edit-context-composition-primary {
709
+ border-bottom: 2px solid var(--vscode-editor-compositionBorder);
710
+ }
711
+
712
+ .monaco-editor :not(:-moz-any(.hc-black, .hc-light)) .edit-context-composition-primary {
713
+ border-bottom: 2px solid var(--vscode-editor-compositionBorder);
714
+ }
715
+
716
+ .monaco-editor :not(:is(.hc-black, .hc-light)) .edit-context-composition-primary {
717
+ border-bottom: 2px solid var(--vscode-editor-compositionBorder);
718
+ }
719
+
720
+ .monaco-editor :-webkit-any(.hc-black, .hc-light) .edit-context-composition-secondary {
721
+ border: 1px solid var(--vscode-editor-compositionBorder);
722
+ }
723
+
724
+ .monaco-editor :-moz-any(.hc-black, .hc-light) .edit-context-composition-secondary {
725
+ border: 1px solid var(--vscode-editor-compositionBorder);
726
+ }
727
+
728
+ .monaco-editor :is(.hc-black, .hc-light) .edit-context-composition-secondary {
729
+ border: 1px solid var(--vscode-editor-compositionBorder);
730
+ }
731
+
732
+ .monaco-editor :-webkit-any(.hc-black, .hc-light) .edit-context-composition-primary {
733
+ border: 2px solid var(--vscode-editor-compositionBorder);
734
+ }
735
+
736
+ .monaco-editor :-moz-any(.hc-black, .hc-light) .edit-context-composition-primary {
737
+ border: 2px solid var(--vscode-editor-compositionBorder);
738
+ }
739
+
740
+ .monaco-editor :is(.hc-black, .hc-light) .edit-context-composition-primary {
741
+ border: 2px solid var(--vscode-editor-compositionBorder);
742
+ }
743
+
744
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/viewParts/gpuMark/gpuMark.css */
745
+ .monaco-editor .margin-view-overlays .gpu-mark {
746
+ position: absolute;
747
+ display: inline-block;
748
+ border-left: solid 2px var(--vscode-editorWarning-foreground);
749
+ opacity: .2;
750
+ width: 100%;
751
+ transition: background-color .1s linear;
752
+ top: 0;
753
+ bottom: 0;
754
+ left: 0;
755
+ }
756
+
757
+ .monaco-editor .margin-view-overlays .gpu-mark:hover {
758
+ background-color: var(--vscode-editorWarning-foreground);
759
+ }
760
+
761
+ /* ../../node_modules/monaco-editor/esm/vs/platform/hover/browser/hover.css */
762
+ .monaco-hover.workbench-hover {
763
+ position: relative;
764
+ z-index: 40;
765
+ overflow: hidden;
766
+ background: var(--vscode-editorHoverWidget-background);
767
+ border: 1px solid var(--vscode-editorHoverWidget-border);
768
+ color: var(--vscode-editorHoverWidget-foreground);
769
+ box-shadow: 0 2px 8px var(--vscode-widget-shadow);
770
+ border-radius: 5px;
771
+ max-width: 700px;
772
+ font-size: 13px;
773
+ line-height: 19px;
774
+ }
775
+
776
+ .monaco-hover.workbench-hover .monaco-action-bar .action-item .codicon {
777
+ width: 13px;
778
+ height: 13px;
779
+ }
780
+
781
+ .monaco-hover.workbench-hover hr {
782
+ border-bottom: none;
783
+ }
784
+
785
+ .monaco-hover.workbench-hover.compact {
786
+ font-size: 12px;
787
+ }
788
+
789
+ .monaco-hover.workbench-hover.compact .monaco-action-bar .action-item .codicon {
790
+ width: 12px;
791
+ height: 12px;
792
+ }
793
+
794
+ .monaco-hover.workbench-hover.compact .hover-contents {
795
+ padding: 2px 8px;
796
+ }
797
+
798
+ .workbench-hover-container.locked .monaco-hover.workbench-hover {
799
+ outline: 1px solid var(--vscode-editorHoverWidget-border);
800
+ }
801
+
802
+ .workbench-hover-container:focus-within.locked .monaco-hover.workbench-hover {
803
+ outline-color: var(--vscode-focusBorder);
804
+ }
805
+
806
+ .workbench-hover-pointer {
807
+ position: absolute;
808
+ z-index: 41;
809
+ pointer-events: none;
810
+ }
811
+
812
+ .workbench-hover-pointer:after {
813
+ content: "";
814
+ position: absolute;
815
+ background-color: var(--vscode-editorHoverWidget-background);
816
+ border-right: 1px solid var(--vscode-editorHoverWidget-border);
817
+ border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
818
+ width: 5px;
819
+ height: 5px;
820
+ }
821
+
822
+ .workbench-hover-container:not(:focus-within).locked .workbench-hover-pointer:after {
823
+ border-bottom-width: 2px;
824
+ border-right-width: 2px;
825
+ width: 4px;
826
+ height: 4px;
827
+ }
828
+
829
+ .workbench-hover-container:focus-within .workbench-hover-pointer:after {
830
+ border-right: 1px solid var(--vscode-focusBorder);
831
+ border-bottom: 1px solid var(--vscode-focusBorder);
832
+ }
833
+
834
+ .workbench-hover-pointer.left {
835
+ left: -3px;
836
+ }
837
+
838
+ .workbench-hover-pointer.right {
839
+ right: 3px;
840
+ }
841
+
842
+ .workbench-hover-pointer.top {
843
+ top: -3px;
844
+ }
845
+
846
+ .workbench-hover-pointer.bottom {
847
+ bottom: 3px;
848
+ }
849
+
850
+ .workbench-hover-pointer.left:after {
851
+ transform: rotate(135deg);
852
+ }
853
+
854
+ .workbench-hover-pointer.right:after {
855
+ transform: rotate(315deg);
856
+ }
857
+
858
+ .workbench-hover-pointer.top:after {
859
+ transform: rotate(225deg);
860
+ }
861
+
862
+ .workbench-hover-pointer.bottom:after {
863
+ transform: rotate(45deg);
864
+ }
865
+
866
+ .monaco-hover.workbench-hover a {
867
+ color: var(--vscode-textLink-foreground);
868
+ }
869
+
870
+ .monaco-hover.workbench-hover a:focus {
871
+ outline: 1px solid;
872
+ outline-offset: -1px;
873
+ text-decoration: underline;
874
+ outline-color: var(--vscode-focusBorder);
875
+ }
876
+
877
+ .monaco-hover.workbench-hover a.codicon:focus, .monaco-hover.workbench-hover a.monaco-button:focus {
878
+ text-decoration: none;
879
+ }
880
+
881
+ .monaco-hover.workbench-hover a:hover, .monaco-hover.workbench-hover a:active {
882
+ color: var(--vscode-textLink-activeForeground);
883
+ }
884
+
885
+ .monaco-hover.workbench-hover code {
886
+ background: var(--vscode-textCodeBlock-background);
887
+ }
888
+
889
+ .monaco-hover.workbench-hover .hover-row .actions {
890
+ background: var(--vscode-editorHoverWidget-statusBarBackground);
891
+ }
892
+
893
+ .monaco-hover.workbench-hover.right-aligned {
894
+ left: 1px;
895
+ }
896
+
897
+ .monaco-hover.workbench-hover.right-aligned .hover-row.status-bar .actions {
898
+ flex-direction: row-reverse;
899
+ }
900
+
901
+ .monaco-hover.workbench-hover.right-aligned .hover-row.status-bar .actions .action-container {
902
+ margin-left: 16px;
903
+ margin-right: 0;
904
+ }
905
+
906
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/hover/hoverWidget.css */
907
+ .monaco-hover {
908
+ cursor: default;
909
+ position: absolute;
910
+ overflow: hidden;
911
+ user-select: text;
912
+ -webkit-user-select: text;
913
+ box-sizing: border-box;
914
+ white-space: var(--vscode-hover-whiteSpace, normal);
915
+ line-height: 1.5em;
916
+ }
917
+
918
+ .monaco-hover.fade-in {
919
+ animation: fadein .1s linear;
920
+ }
921
+
922
+ .monaco-hover.hidden {
923
+ display: none;
924
+ }
925
+
926
+ .monaco-hover a:hover:not(.disabled) {
927
+ cursor: pointer;
928
+ }
929
+
930
+ .monaco-hover .hover-contents:not(.html-hover-contents) {
931
+ padding: 4px 8px;
932
+ }
933
+
934
+ .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) {
935
+ max-width: var(--vscode-hover-maxWidth, 500px);
936
+ word-wrap: break-word;
937
+ }
938
+
939
+ .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) hr {
940
+ min-width: 100%;
941
+ }
942
+
943
+ .monaco-hover p, .monaco-hover .code, .monaco-hover ul, .monaco-hover h1, .monaco-hover h2, .monaco-hover h3, .monaco-hover h4, .monaco-hover h5, .monaco-hover h6 {
944
+ margin: 8px 0;
945
+ }
946
+
947
+ .monaco-hover h1, .monaco-hover h2, .monaco-hover h3, .monaco-hover h4, .monaco-hover h5, .monaco-hover h6 {
948
+ line-height: 1.1;
949
+ }
950
+
951
+ .monaco-hover code {
952
+ font-family: var(--monaco-monospace-font);
953
+ }
954
+
955
+ .monaco-hover hr {
956
+ box-sizing: border-box;
957
+ border-left: 0;
958
+ border-right: 0;
959
+ height: 1px;
960
+ margin: 4px -8px -4px;
961
+ }
962
+
963
+ .monaco-hover p:first-child, .monaco-hover .code:first-child, .monaco-hover ul:first-child {
964
+ margin-top: 0;
965
+ }
966
+
967
+ .monaco-hover p:last-child, .monaco-hover .code:last-child, .monaco-hover ul:last-child {
968
+ margin-bottom: 0;
969
+ }
970
+
971
+ .monaco-hover ul, .monaco-hover ol {
972
+ padding-left: 20px;
973
+ }
974
+
975
+ .monaco-hover li > p {
976
+ margin-bottom: 0;
977
+ }
978
+
979
+ .monaco-hover li > ul {
980
+ margin-top: 0;
981
+ }
982
+
983
+ .monaco-hover code {
984
+ border-radius: 3px;
985
+ padding: 0 .4em;
986
+ }
987
+
988
+ .monaco-hover .monaco-tokenized-source {
989
+ white-space: var(--vscode-hover-sourceWhiteSpace, pre-wrap);
990
+ }
991
+
992
+ .monaco-hover .hover-row.status-bar {
993
+ font-size: 12px;
994
+ line-height: 22px;
995
+ }
996
+
997
+ .monaco-hover .hover-row.status-bar .info {
998
+ padding: 0 8px;
999
+ font-style: italic;
1000
+ }
1001
+
1002
+ .monaco-hover .hover-row.status-bar .actions {
1003
+ display: flex;
1004
+ width: 100%;
1005
+ padding: 0 8px;
1006
+ }
1007
+
1008
+ .monaco-hover .hover-row.status-bar .actions .action-container {
1009
+ cursor: pointer;
1010
+ overflow: hidden;
1011
+ text-wrap: nowrap;
1012
+ text-overflow: ellipsis;
1013
+ margin-right: 16px;
1014
+ }
1015
+
1016
+ .monaco-hover .hover-row.status-bar .actions .action-container .action .icon {
1017
+ vertical-align: middle;
1018
+ padding-right: 4px;
1019
+ }
1020
+
1021
+ .monaco-hover .hover-row.status-bar .actions .action-container a {
1022
+ color: var(--vscode-textLink-foreground);
1023
+ text-decoration: var(--text-link-decoration);
1024
+ }
1025
+
1026
+ .monaco-hover .hover-row.status-bar .actions .action-container a .icon.codicon {
1027
+ color: var(--vscode-textLink-foreground);
1028
+ }
1029
+
1030
+ .monaco-hover .markdown-hover .hover-contents .codicon {
1031
+ color: inherit;
1032
+ font-size: inherit;
1033
+ vertical-align: middle;
1034
+ }
1035
+
1036
+ .monaco-hover .hover-contents a.code-link:hover, .monaco-hover .hover-contents a.code-link {
1037
+ color: inherit;
1038
+ }
1039
+
1040
+ .monaco-hover .hover-contents a.code-link:before {
1041
+ content: "(";
1042
+ }
1043
+
1044
+ .monaco-hover .hover-contents a.code-link:after {
1045
+ content: ")";
1046
+ }
1047
+
1048
+ .monaco-hover .hover-contents a.code-link > span {
1049
+ text-decoration: underline;
1050
+ text-underline-position: under;
1051
+ color: var(--vscode-textLink-foreground);
1052
+ border-bottom: 1px solid #0000;
1053
+ }
1054
+
1055
+ .monaco-hover .hover-contents a.code-link > span:hover {
1056
+ color: var(--vscode-textLink-activeForeground);
1057
+ }
1058
+
1059
+ .monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) p:last-child [style*="background-color"] {
1060
+ display: inline-block;
1061
+ margin-bottom: 4px;
1062
+ }
1063
+
1064
+ .monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span.codicon {
1065
+ margin-bottom: 2px;
1066
+ }
1067
+
1068
+ .monaco-hover-content .action-container a {
1069
+ -webkit-user-select: none;
1070
+ user-select: none;
1071
+ }
1072
+
1073
+ .monaco-hover-content .action-container.disabled {
1074
+ pointer-events: none;
1075
+ opacity: .4;
1076
+ cursor: default;
1077
+ }
1078
+
1079
+ .monaco-hover .action-container, .monaco-hover .action, .monaco-hover button, .monaco-hover .monaco-button, .monaco-hover .monaco-text-button, .monaco-hover [role="button"] {
1080
+ -webkit-user-select: none;
1081
+ user-select: none;
1082
+ }
1083
+
1084
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/contextview/contextview.css */
1085
+ .context-view {
1086
+ position: absolute;
1087
+ }
1088
+
1089
+ .context-view.fixed {
1090
+ all: initial;
1091
+ position: fixed;
1092
+ color: inherit;
1093
+ font-family: inherit;
1094
+ font-size: 13px;
1095
+ }
1096
+
1097
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/selectBox/selectBox.css */
1098
+ .monaco-select-box {
1099
+ cursor: pointer;
1100
+ border-radius: 2px;
1101
+ width: 100%;
1102
+ }
1103
+
1104
+ .monaco-select-box-dropdown-container {
1105
+ text-transform: none;
1106
+ font-size: 13px;
1107
+ font-weight: normal;
1108
+ }
1109
+
1110
+ .monaco-action-bar .action-item.select-container {
1111
+ cursor: default;
1112
+ }
1113
+
1114
+ .monaco-action-bar .action-item .monaco-select-box {
1115
+ cursor: pointer;
1116
+ min-width: 100px;
1117
+ min-height: 18px;
1118
+ padding: 2px 23px 2px 8px;
1119
+ }
1120
+
1121
+ .mac .monaco-action-bar .action-item .monaco-select-box {
1122
+ border-radius: 3px;
1123
+ min-height: 24px;
1124
+ font-size: 11px;
1125
+ }
1126
+
1127
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/list/list.css */
1128
+ .monaco-list {
1129
+ position: relative;
1130
+ white-space: nowrap;
1131
+ width: 100%;
1132
+ height: 100%;
1133
+ }
1134
+
1135
+ .monaco-list.mouse-support {
1136
+ user-select: none;
1137
+ -webkit-user-select: none;
1138
+ }
1139
+
1140
+ .monaco-list > .monaco-scrollable-element {
1141
+ height: 100%;
1142
+ }
1143
+
1144
+ .monaco-list-rows {
1145
+ position: relative;
1146
+ width: 100%;
1147
+ height: 100%;
1148
+ }
1149
+
1150
+ .monaco-list.horizontal-scrolling .monaco-list-rows {
1151
+ width: auto;
1152
+ min-width: 100%;
1153
+ }
1154
+
1155
+ .monaco-list-row {
1156
+ position: absolute;
1157
+ box-sizing: border-box;
1158
+ overflow: hidden;
1159
+ width: 100%;
1160
+ }
1161
+
1162
+ .monaco-list.mouse-support .monaco-list-row {
1163
+ cursor: pointer;
1164
+ touch-action: none;
1165
+ }
1166
+
1167
+ .monaco-list .monaco-scrollable-element > .scrollbar.vertical, .monaco-pane-view > .monaco-split-view2.vertical > .monaco-scrollable-element > .scrollbar.vertical {
1168
+ z-index: 14;
1169
+ }
1170
+
1171
+ .monaco-list-row.scrolling {
1172
+ display: none !important;
1173
+ }
1174
+
1175
+ .monaco-list.element-focused, .monaco-list.selection-single, .monaco-list.selection-multiple {
1176
+ outline: 0 !important;
1177
+ }
1178
+
1179
+ .monaco-list-type-filter-message {
1180
+ position: absolute;
1181
+ box-sizing: border-box;
1182
+ text-align: center;
1183
+ white-space: normal;
1184
+ opacity: .7;
1185
+ pointer-events: none;
1186
+ width: 100%;
1187
+ height: 100%;
1188
+ padding: 40px 1em 1em;
1189
+ top: 0;
1190
+ left: 0;
1191
+ }
1192
+
1193
+ .monaco-list-type-filter-message:empty {
1194
+ display: none;
1195
+ }
1196
+
1197
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/dnd/dnd.css */
1198
+ .monaco-drag-image {
1199
+ display: inline-block;
1200
+ position: absolute;
1201
+ z-index: 1000;
1202
+ background-color: var(--vscode-list-activeSelectionBackground);
1203
+ color: var(--vscode-list-activeSelectionForeground);
1204
+ outline: 1px solid var(--vscode-list-focusOutline);
1205
+ outline-offset: -1px;
1206
+ overflow: hidden;
1207
+ text-overflow: ellipsis;
1208
+ white-space: nowrap;
1209
+ border-radius: 10px;
1210
+ max-width: 120px;
1211
+ padding: 1px 7px;
1212
+ font-size: 12px;
1213
+ }
1214
+
1215
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/selectBox/selectBoxCustom.css */
1216
+ .monaco-select-box-dropdown-padding {
1217
+ --dropdown-padding-top: 1px;
1218
+ --dropdown-padding-bottom: 1px;
1219
+ }
1220
+
1221
+ .hc-black .monaco-select-box-dropdown-padding, .hc-light .monaco-select-box-dropdown-padding {
1222
+ --dropdown-padding-top: 3px;
1223
+ --dropdown-padding-bottom: 4px;
1224
+ }
1225
+
1226
+ .monaco-select-box-dropdown-container {
1227
+ display: none;
1228
+ box-sizing: border-box;
1229
+ }
1230
+
1231
+ .monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown * {
1232
+ margin: 0;
1233
+ }
1234
+
1235
+ .monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown a:focus {
1236
+ outline: 1px solid -webkit-focus-ring-color;
1237
+ outline-offset: -1px;
1238
+ }
1239
+
1240
+ .monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown code {
1241
+ line-height: 15px;
1242
+ font-family: var(--monaco-monospace-font);
1243
+ }
1244
+
1245
+ .monaco-select-box-dropdown-container.visible {
1246
+ display: flex;
1247
+ text-align: left;
1248
+ overflow: hidden;
1249
+ border-bottom-right-radius: 3px;
1250
+ border-bottom-left-radius: 3px;
1251
+ flex-direction: column;
1252
+ width: 1px;
1253
+ }
1254
+
1255
+ .monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
1256
+ padding-top: var(--dropdown-padding-top);
1257
+ padding-bottom: var(--dropdown-padding-bottom);
1258
+ overflow: hidden;
1259
+ box-sizing: border-box;
1260
+ flex: none;
1261
+ align-self: flex-start;
1262
+ width: 100%;
1263
+ padding-left: 1px;
1264
+ padding-right: 1px;
1265
+ }
1266
+
1267
+ .monaco-select-box-dropdown-container > .select-box-details-pane {
1268
+ padding: 5px;
1269
+ }
1270
+
1271
+ .hc-black .monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
1272
+ padding-top: var(--dropdown-padding-top);
1273
+ padding-bottom: var(--dropdown-padding-bottom);
1274
+ }
1275
+
1276
+ .monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row {
1277
+ cursor: pointer;
1278
+ }
1279
+
1280
+ .monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-text {
1281
+ text-overflow: ellipsis;
1282
+ overflow: hidden;
1283
+ white-space: nowrap;
1284
+ float: left;
1285
+ padding-left: 3.5px;
1286
+ }
1287
+
1288
+ .monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-detail {
1289
+ text-overflow: ellipsis;
1290
+ overflow: hidden;
1291
+ white-space: nowrap;
1292
+ float: left;
1293
+ opacity: .7;
1294
+ padding-left: 3.5px;
1295
+ }
1296
+
1297
+ .monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-decorator-right {
1298
+ text-overflow: ellipsis;
1299
+ overflow: hidden;
1300
+ white-space: nowrap;
1301
+ float: right;
1302
+ padding-right: 10px;
1303
+ }
1304
+
1305
+ .monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .visually-hidden {
1306
+ position: absolute;
1307
+ overflow: hidden;
1308
+ width: 1px;
1309
+ height: 1px;
1310
+ top: auto;
1311
+ left: -10000px;
1312
+ }
1313
+
1314
+ .monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control {
1315
+ opacity: 0;
1316
+ flex: auto;
1317
+ align-self: flex-start;
1318
+ }
1319
+
1320
+ .monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control > .width-control-div {
1321
+ overflow: hidden;
1322
+ max-height: 0;
1323
+ }
1324
+
1325
+ .monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control > .width-control-div > .option-text-width-control {
1326
+ white-space: nowrap;
1327
+ padding-left: 4px;
1328
+ padding-right: 8px;
1329
+ }
1330
+
1331
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/actionbar/actionbar.css */
1332
+ .monaco-action-bar {
1333
+ white-space: nowrap;
1334
+ height: 100%;
1335
+ }
1336
+
1337
+ .monaco-action-bar .actions-container {
1338
+ display: flex;
1339
+ align-items: center;
1340
+ width: 100%;
1341
+ height: 100%;
1342
+ margin: 0 auto;
1343
+ padding: 0;
1344
+ }
1345
+
1346
+ .monaco-action-bar.vertical .actions-container {
1347
+ display: inline-block;
1348
+ }
1349
+
1350
+ .monaco-action-bar .action-item {
1351
+ display: block;
1352
+ cursor: pointer;
1353
+ position: relative;
1354
+ justify-content: center;
1355
+ align-items: center;
1356
+ }
1357
+
1358
+ .monaco-action-bar .action-item.disabled {
1359
+ cursor: default;
1360
+ }
1361
+
1362
+ .monaco-action-bar .action-item .icon, .monaco-action-bar .action-item .codicon {
1363
+ display: block;
1364
+ }
1365
+
1366
+ .monaco-action-bar .action-item .codicon {
1367
+ display: flex;
1368
+ align-items: center;
1369
+ width: 16px;
1370
+ height: 16px;
1371
+ }
1372
+
1373
+ .monaco-action-bar .action-label {
1374
+ display: flex;
1375
+ border-radius: 5px;
1376
+ padding: 3px;
1377
+ font-size: 11px;
1378
+ }
1379
+
1380
+ .monaco-action-bar .action-item.disabled .action-label:not(.icon), .monaco-action-bar .action-item.disabled .action-label:not(.icon):before, .monaco-action-bar .action-item.disabled .action-label:not(.icon):hover {
1381
+ color: var(--vscode-disabledForeground);
1382
+ }
1383
+
1384
+ .monaco-action-bar .action-item.disabled .action-label.icon, .monaco-action-bar .action-item.disabled .action-label.icon:before, .monaco-action-bar .action-item.disabled .action-label.icon:hover {
1385
+ opacity: .6;
1386
+ }
1387
+
1388
+ .monaco-action-bar.vertical {
1389
+ text-align: left;
1390
+ }
1391
+
1392
+ .monaco-action-bar.vertical .action-item {
1393
+ display: block;
1394
+ }
1395
+
1396
+ .monaco-action-bar.vertical .action-label.separator {
1397
+ display: block;
1398
+ border-bottom: 1px solid var(--vscode-disabledForeground);
1399
+ margin-left: .8em;
1400
+ margin-right: .8em;
1401
+ padding-top: 1px;
1402
+ }
1403
+
1404
+ .monaco-action-bar .action-item .action-label.separator {
1405
+ cursor: default;
1406
+ background-color: var(--vscode-disabledForeground);
1407
+ width: 1px;
1408
+ min-width: 1px;
1409
+ height: 16px;
1410
+ padding: 0;
1411
+ margin: 5px 4px !important;
1412
+ }
1413
+
1414
+ .secondary-actions .monaco-action-bar .action-label {
1415
+ margin-left: 6px;
1416
+ }
1417
+
1418
+ .monaco-action-bar .action-item.select-container {
1419
+ overflow: hidden;
1420
+ display: flex;
1421
+ flex: 1;
1422
+ justify-content: center;
1423
+ align-items: center;
1424
+ min-width: 60px;
1425
+ max-width: 170px;
1426
+ margin-right: 10px;
1427
+ }
1428
+
1429
+ .monaco-action-bar .action-item.action-dropdown-item {
1430
+ display: flex;
1431
+ }
1432
+
1433
+ .monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator {
1434
+ display: flex;
1435
+ cursor: default;
1436
+ align-items: center;
1437
+ }
1438
+
1439
+ .monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator > div {
1440
+ width: 1px;
1441
+ }
1442
+
1443
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.css */
1444
+ .monaco-dropdown {
1445
+ height: 100%;
1446
+ padding: 0;
1447
+ }
1448
+
1449
+ .monaco-dropdown > .dropdown-label {
1450
+ cursor: pointer;
1451
+ display: flex;
1452
+ justify-content: center;
1453
+ align-items: center;
1454
+ height: 100%;
1455
+ }
1456
+
1457
+ .monaco-dropdown > .dropdown-label > .action-label.disabled {
1458
+ cursor: default;
1459
+ }
1460
+
1461
+ .monaco-dropdown-with-primary {
1462
+ border-radius: 5px;
1463
+ flex-direction: row;
1464
+ display: flex !important;
1465
+ }
1466
+
1467
+ .monaco-dropdown-with-primary > .action-container > .action-label {
1468
+ margin-right: 0;
1469
+ }
1470
+
1471
+ .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*="codicon-"] {
1472
+ margin-left: -3px;
1473
+ padding-left: 0;
1474
+ padding-right: 0;
1475
+ font-size: 12px;
1476
+ line-height: 16px;
1477
+ }
1478
+
1479
+ .monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
1480
+ display: block;
1481
+ background-position: center;
1482
+ background-repeat: no-repeat;
1483
+ background-size: 16px;
1484
+ }
1485
+
1486
+ /* ../../node_modules/monaco-editor/esm/vs/platform/actions/browser/menuEntryActionViewItem.css */
1487
+ .monaco-action-bar .action-item.menu-entry .action-label.icon {
1488
+ background-position: 50%;
1489
+ background-repeat: no-repeat;
1490
+ background-size: 16px;
1491
+ width: 16px;
1492
+ height: 16px;
1493
+ }
1494
+
1495
+ .monaco-action-bar .action-item.menu-entry.text-only .action-label {
1496
+ color: var(--vscode-descriptionForeground);
1497
+ overflow: hidden;
1498
+ border-radius: 2px;
1499
+ }
1500
+
1501
+ .monaco-action-bar .action-item.menu-entry.text-only.use-comma:not(:last-of-type) .action-label:after {
1502
+ content: ", ";
1503
+ }
1504
+
1505
+ .monaco-action-bar .action-item.menu-entry.text-only + .action-item:not(.text-only) > .monaco-dropdown .action-label {
1506
+ color: var(--vscode-descriptionForeground);
1507
+ }
1508
+
1509
+ .monaco-dropdown-with-default {
1510
+ border-radius: 5px;
1511
+ flex-direction: row;
1512
+ display: flex !important;
1513
+ }
1514
+
1515
+ .monaco-dropdown-with-default > .action-container > .action-label {
1516
+ margin-right: 0;
1517
+ }
1518
+
1519
+ .monaco-dropdown-with-default > .action-container.menu-entry > .action-label.icon {
1520
+ background-position: 50%;
1521
+ background-repeat: no-repeat;
1522
+ background-size: 16px;
1523
+ width: 16px;
1524
+ height: 16px;
1525
+ }
1526
+
1527
+ .monaco-dropdown-with-default:hover {
1528
+ background-color: var(--vscode-toolbar-hoverBackground);
1529
+ }
1530
+
1531
+ .monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*="codicon-"] {
1532
+ margin-left: -3px;
1533
+ padding-left: 0;
1534
+ padding-right: 0;
1535
+ font-size: 12px;
1536
+ line-height: 16px;
1537
+ }
1538
+
1539
+ .monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
1540
+ display: block;
1541
+ background-position: center;
1542
+ background-repeat: no-repeat;
1543
+ background-size: 16px;
1544
+ }
1545
+
1546
+ /* ../../node_modules/monaco-editor/esm/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css */
1547
+ .quick-input-widget {
1548
+ font-size: 13px;
1549
+ }
1550
+
1551
+ .quick-input-widget .monaco-highlighted-label .highlight, .quick-input-widget .monaco-highlighted-label .highlight {
1552
+ color: #0066bf;
1553
+ }
1554
+
1555
+ .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight, .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
1556
+ color: #9dddff;
1557
+ }
1558
+
1559
+ .vs-dark .quick-input-widget .monaco-highlighted-label .highlight, .vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
1560
+ color: #0097fb;
1561
+ }
1562
+
1563
+ .hc-black .quick-input-widget .monaco-highlighted-label .highlight, .hc-black .quick-input-widget .monaco-highlighted-label .highlight {
1564
+ color: #f38518;
1565
+ }
1566
+
1567
+ .hc-light .quick-input-widget .monaco-highlighted-label .highlight, .hc-light .quick-input-widget .monaco-highlighted-label .highlight {
1568
+ color: #0f4a85;
1569
+ }
1570
+
1571
+ .monaco-keybinding > .monaco-keybinding-key {
1572
+ color: #555;
1573
+ background-color: #ddd6;
1574
+ border: 1px solid #ccc6;
1575
+ border-bottom-color: #bbb6;
1576
+ box-shadow: inset 0 -1px #bbb6;
1577
+ }
1578
+
1579
+ .hc-black .monaco-keybinding > .monaco-keybinding-key {
1580
+ box-shadow: none;
1581
+ color: #fff;
1582
+ background-color: #0000;
1583
+ border: 1px solid #6fc3df;
1584
+ }
1585
+
1586
+ .hc-light .monaco-keybinding > .monaco-keybinding-key {
1587
+ box-shadow: none;
1588
+ color: #292929;
1589
+ background-color: #0000;
1590
+ border: 1px solid #0f4a85;
1591
+ }
1592
+
1593
+ .vs-dark .monaco-keybinding > .monaco-keybinding-key {
1594
+ color: #ccc;
1595
+ background-color: #8080802b;
1596
+ border: 1px solid #3339;
1597
+ border-bottom-color: #4449;
1598
+ box-shadow: inset 0 -1px #4449;
1599
+ }
1600
+
1601
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.css */
1602
+ .monaco-custom-toggle {
1603
+ float: left;
1604
+ cursor: pointer;
1605
+ overflow: hidden;
1606
+ box-sizing: border-box;
1607
+ user-select: none;
1608
+ -webkit-user-select: none;
1609
+ border: 1px solid #0000;
1610
+ border-radius: 3px;
1611
+ width: 20px;
1612
+ height: 20px;
1613
+ margin-left: 2px;
1614
+ padding: 1px;
1615
+ }
1616
+
1617
+ .monaco-custom-toggle:hover {
1618
+ background-color: var(--vscode-inputOption-hoverBackground);
1619
+ }
1620
+
1621
+ .hc-black .monaco-custom-toggle:hover, .hc-light .monaco-custom-toggle:hover {
1622
+ border: 1px dashed var(--vscode-focusBorder);
1623
+ }
1624
+
1625
+ .hc-black .monaco-custom-toggle, .hc-light .monaco-custom-toggle, .hc-black .monaco-custom-toggle:hover, .hc-light .monaco-custom-toggle:hover {
1626
+ background: none;
1627
+ }
1628
+
1629
+ .monaco-custom-toggle.monaco-checkbox {
1630
+ opacity: 1;
1631
+ border: 1px solid #0000;
1632
+ border-radius: 3px;
1633
+ width: 18px;
1634
+ height: 18px;
1635
+ margin-left: 0;
1636
+ margin-right: 9px;
1637
+ padding: 0;
1638
+ background-size: 16px !important;
1639
+ }
1640
+
1641
+ .monaco-action-bar .checkbox-action-item {
1642
+ display: flex;
1643
+ border-radius: 2px;
1644
+ align-items: center;
1645
+ padding-right: 2px;
1646
+ }
1647
+
1648
+ .monaco-action-bar .checkbox-action-item:hover {
1649
+ background-color: var(--vscode-toolbar-hoverBackground);
1650
+ }
1651
+
1652
+ .monaco-action-bar .checkbox-action-item > .monaco-custom-toggle.monaco-checkbox {
1653
+ margin-right: 4px;
1654
+ }
1655
+
1656
+ .monaco-action-bar .checkbox-action-item > .checkbox-label {
1657
+ font-size: 12px;
1658
+ }
1659
+
1660
+ /* ../../node_modules/monaco-editor/esm/vs/platform/quickinput/browser/media/quickInput.css */
1661
+ .quick-input-widget {
1662
+ position: absolute;
1663
+ z-index: 2550;
1664
+ -webkit-app-region: no-drag;
1665
+ border-radius: 6px;
1666
+ width: 600px;
1667
+ left: 50%;
1668
+ }
1669
+
1670
+ .quick-input-titlebar {
1671
+ cursor: grab;
1672
+ display: flex;
1673
+ border-top-left-radius: 5px;
1674
+ border-top-right-radius: 5px;
1675
+ align-items: center;
1676
+ }
1677
+
1678
+ .quick-input-left-action-bar {
1679
+ display: flex;
1680
+ flex: 1;
1681
+ margin-left: 4px;
1682
+ }
1683
+
1684
+ .quick-input-inline-action-bar > .actions-container > .action-item:first-child {
1685
+ margin-left: 5px;
1686
+ }
1687
+
1688
+ .quick-input-inline-action-bar > .actions-container > .action-item {
1689
+ margin-top: 2px;
1690
+ }
1691
+
1692
+ .quick-input-title {
1693
+ cursor: grab;
1694
+ text-align: center;
1695
+ text-overflow: ellipsis;
1696
+ overflow: hidden;
1697
+ padding: 3px 0;
1698
+ }
1699
+
1700
+ .quick-input-right-action-bar {
1701
+ display: flex;
1702
+ flex: 1;
1703
+ margin-right: 4px;
1704
+ }
1705
+
1706
+ .quick-input-right-action-bar > .actions-container {
1707
+ justify-content: flex-end;
1708
+ }
1709
+
1710
+ .quick-input-right-action-bar > .actions-container > .action-item {
1711
+ margin-left: 4px;
1712
+ }
1713
+
1714
+ .quick-input-titlebar .monaco-action-bar .action-label.codicon {
1715
+ background-position: center;
1716
+ background-repeat: no-repeat;
1717
+ padding: 2px;
1718
+ }
1719
+
1720
+ .quick-input-description {
1721
+ margin: 6px 6px 6px 11px;
1722
+ }
1723
+
1724
+ .quick-input-header .quick-input-description {
1725
+ flex: 1;
1726
+ margin: 4px 2px;
1727
+ }
1728
+
1729
+ .quick-input-header {
1730
+ cursor: grab;
1731
+ display: flex;
1732
+ padding: 6px 6px 2px;
1733
+ }
1734
+
1735
+ .quick-input-widget.hidden-input .quick-input-header {
1736
+ margin-bottom: 0;
1737
+ padding: 0;
1738
+ }
1739
+
1740
+ .quick-input-and-message {
1741
+ display: flex;
1742
+ position: relative;
1743
+ flex-direction: column;
1744
+ flex-grow: 1;
1745
+ min-width: 0;
1746
+ }
1747
+
1748
+ .quick-input-check-all {
1749
+ align-self: center;
1750
+ margin: 0;
1751
+ }
1752
+
1753
+ .quick-input-widget .quick-input-header .monaco-checkbox {
1754
+ margin-top: 6px;
1755
+ }
1756
+
1757
+ .quick-input-filter {
1758
+ display: flex;
1759
+ position: relative;
1760
+ flex-grow: 1;
1761
+ }
1762
+
1763
+ .quick-input-box {
1764
+ flex-grow: 1;
1765
+ }
1766
+
1767
+ .quick-input-widget.show-checkboxes .quick-input-box, .quick-input-widget.show-checkboxes .quick-input-message {
1768
+ margin-left: 5px;
1769
+ }
1770
+
1771
+ .quick-input-visible-count {
1772
+ position: absolute;
1773
+ left: -10000px;
1774
+ }
1775
+
1776
+ .quick-input-count {
1777
+ position: absolute;
1778
+ display: flex;
1779
+ align-self: center;
1780
+ align-items: center;
1781
+ right: 4px;
1782
+ }
1783
+
1784
+ .quick-input-count .monaco-count-badge {
1785
+ vertical-align: middle;
1786
+ border-radius: 2px;
1787
+ min-height: auto;
1788
+ padding: 2px 4px;
1789
+ line-height: normal;
1790
+ }
1791
+
1792
+ .quick-input-action {
1793
+ margin-left: 6px;
1794
+ }
1795
+
1796
+ .quick-input-action .monaco-text-button {
1797
+ display: flex;
1798
+ align-items: center;
1799
+ height: 25px;
1800
+ padding: 0 6px;
1801
+ font-size: 11px;
1802
+ }
1803
+
1804
+ .quick-input-message {
1805
+ overflow-wrap: break-word;
1806
+ margin-top: -1px;
1807
+ padding: 5px;
1808
+ }
1809
+
1810
+ .quick-input-message > .codicon {
1811
+ vertical-align: text-bottom;
1812
+ margin: 0 .2em;
1813
+ }
1814
+
1815
+ .quick-input-message a {
1816
+ color: inherit;
1817
+ }
1818
+
1819
+ .quick-input-progress.monaco-progress-container {
1820
+ position: relative;
1821
+ }
1822
+
1823
+ .quick-input-list {
1824
+ line-height: 22px;
1825
+ }
1826
+
1827
+ .quick-input-widget.hidden-input .quick-input-list {
1828
+ margin-top: 4px;
1829
+ padding-bottom: 4px;
1830
+ }
1831
+
1832
+ .quick-input-list .monaco-list {
1833
+ overflow: hidden;
1834
+ max-height: 440px;
1835
+ padding-bottom: 5px;
1836
+ }
1837
+
1838
+ .quick-input-list .monaco-scrollable-element {
1839
+ padding: 0 6px;
1840
+ }
1841
+
1842
+ .quick-input-list .quick-input-list-entry {
1843
+ box-sizing: border-box;
1844
+ overflow: hidden;
1845
+ display: flex;
1846
+ padding: 0 6px;
1847
+ }
1848
+
1849
+ .quick-input-list .quick-input-list-entry.quick-input-list-separator-border {
1850
+ border-top-style: solid;
1851
+ border-top-width: 1px;
1852
+ }
1853
+
1854
+ .quick-input-list .monaco-list-row {
1855
+ border-radius: 3px;
1856
+ }
1857
+
1858
+ .quick-input-list .monaco-list-row[data-index="0"] .quick-input-list-entry.quick-input-list-separator-border {
1859
+ border-top-style: none;
1860
+ }
1861
+
1862
+ .quick-input-list .quick-input-list-label {
1863
+ overflow: hidden;
1864
+ display: flex;
1865
+ flex: 1;
1866
+ height: 100%;
1867
+ }
1868
+
1869
+ .quick-input-widget .monaco-checkbox {
1870
+ margin-right: 0;
1871
+ }
1872
+
1873
+ .quick-input-widget .quick-input-list .monaco-checkbox, .quick-input-widget .quick-input-tree .monaco-checkbox {
1874
+ margin-top: 4px;
1875
+ }
1876
+
1877
+ .quick-input-list .quick-input-list-icon {
1878
+ display: flex;
1879
+ background-position: 0;
1880
+ background-repeat: no-repeat;
1881
+ background-size: 16px;
1882
+ justify-content: center;
1883
+ align-items: center;
1884
+ width: 16px;
1885
+ height: 22px;
1886
+ padding-right: 6px;
1887
+ }
1888
+
1889
+ .quick-input-list .quick-input-list-rows {
1890
+ overflow: hidden;
1891
+ text-overflow: ellipsis;
1892
+ display: flex;
1893
+ flex-direction: column;
1894
+ flex: 1;
1895
+ height: 100%;
1896
+ margin-left: 5px;
1897
+ }
1898
+
1899
+ .quick-input-list .quick-input-list-rows > .quick-input-list-row {
1900
+ display: flex;
1901
+ align-items: center;
1902
+ }
1903
+
1904
+ .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label, .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label .monaco-icon-label-container > .monaco-icon-name-container {
1905
+ flex: 1;
1906
+ }
1907
+
1908
+ .quick-input-list .quick-input-list-rows > .quick-input-list-row .codicon[class*="codicon-"] {
1909
+ vertical-align: text-bottom;
1910
+ }
1911
+
1912
+ .quick-input-list .quick-input-list-rows .monaco-highlighted-label > span {
1913
+ opacity: 1;
1914
+ }
1915
+
1916
+ .quick-input-list .quick-input-list-entry .quick-input-list-entry-keybinding {
1917
+ margin-right: 8px;
1918
+ }
1919
+
1920
+ .quick-input-list .quick-input-list-label-meta {
1921
+ opacity: .7;
1922
+ text-overflow: ellipsis;
1923
+ overflow: hidden;
1924
+ line-height: normal;
1925
+ }
1926
+
1927
+ .quick-input-list .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
1928
+ background-color: unset;
1929
+ font-weight: bold;
1930
+ color: var(--vscode-list-highlightForeground) !important;
1931
+ }
1932
+
1933
+ .quick-input-list .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
1934
+ color: var(--vscode-list-focusHighlightForeground) !important;
1935
+ }
1936
+
1937
+ .quick-input-list .quick-input-list-entry .quick-input-list-separator {
1938
+ margin-right: 4px;
1939
+ }
1940
+
1941
+ .quick-input-list .quick-input-list-entry-action-bar {
1942
+ display: flex;
1943
+ overflow: visible;
1944
+ flex: 0;
1945
+ }
1946
+
1947
+ .quick-input-list .quick-input-list-entry-action-bar .action-label {
1948
+ display: none;
1949
+ }
1950
+
1951
+ .quick-input-list .quick-input-list-entry-action-bar .action-label.codicon {
1952
+ margin-right: 4px;
1953
+ padding: 2px;
1954
+ }
1955
+
1956
+ .quick-input-list .quick-input-list-entry-action-bar {
1957
+ margin-top: 1px;
1958
+ }
1959
+
1960
+ .quick-input-list .quick-input-list-entry-action-bar {
1961
+ margin-right: 4px;
1962
+ }
1963
+
1964
+ .quick-input-list .quick-input-list-entry .quick-input-list-entry-action-bar .action-label.always-visible, .quick-input-list .quick-input-list-entry:hover .quick-input-list-entry-action-bar .action-label, .quick-input-list .quick-input-list-entry.focus-inside .quick-input-list-entry-action-bar .action-label, .quick-input-list .monaco-list-row.focused .quick-input-list-entry-action-bar .action-label, .quick-input-list .monaco-list-row.passive-focused .quick-input-list-entry-action-bar .action-label {
1965
+ display: flex;
1966
+ }
1967
+
1968
+ .quick-input-list > .monaco-list:focus .monaco-list-row.focused {
1969
+ outline-offset: -1px;
1970
+ outline: 1px solid var(--vscode-list-focusOutline) !important;
1971
+ }
1972
+
1973
+ .quick-input-list > .monaco-list:focus .monaco-list-row.focused .quick-input-list-entry.quick-input-list-separator-border {
1974
+ border-color: #0000;
1975
+ }
1976
+
1977
+ .quick-input-list .monaco-list-row.focused .monaco-keybinding-key, .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator {
1978
+ color: inherit;
1979
+ }
1980
+
1981
+ .quick-input-list .monaco-list-row.focused .monaco-keybinding-key {
1982
+ background: none;
1983
+ }
1984
+
1985
+ .quick-input-list .quick-input-list-separator-as-item {
1986
+ padding: 4px 6px;
1987
+ font-size: 12px;
1988
+ }
1989
+
1990
+ .quick-input-list .quick-input-list-separator-as-item .label-name {
1991
+ font-weight: 600;
1992
+ }
1993
+
1994
+ .quick-input-list .quick-input-list-separator-as-item .label-description {
1995
+ opacity: 1 !important;
1996
+ }
1997
+
1998
+ .quick-input-list .monaco-tree-sticky-row .quick-input-list-entry.quick-input-list-separator-as-item.quick-input-list-separator-border {
1999
+ border-top-style: none;
2000
+ }
2001
+
2002
+ .quick-input-list .monaco-tree-sticky-row {
2003
+ padding: 0 5px;
2004
+ }
2005
+
2006
+ .quick-input-list .monaco-tl-twistie {
2007
+ display: none !important;
2008
+ }
2009
+
2010
+ .quick-input-tree .monaco-list {
2011
+ overflow: hidden;
2012
+ max-height: 440px;
2013
+ padding-bottom: 5px;
2014
+ }
2015
+
2016
+ .quick-input-tree .quick-input-tree-entry {
2017
+ box-sizing: border-box;
2018
+ overflow: hidden;
2019
+ display: flex;
2020
+ padding: 0 6px;
2021
+ }
2022
+
2023
+ .quick-input-tree .quick-input-tree-label {
2024
+ overflow: hidden;
2025
+ display: flex;
2026
+ flex: 1;
2027
+ height: 100%;
2028
+ }
2029
+
2030
+ .quick-input-tree .quick-input-tree-icon {
2031
+ display: flex;
2032
+ background-position: 0;
2033
+ background-repeat: no-repeat;
2034
+ background-size: 16px;
2035
+ justify-content: center;
2036
+ align-items: center;
2037
+ width: 16px;
2038
+ height: 22px;
2039
+ padding-right: 6px;
2040
+ }
2041
+
2042
+ .quick-input-tree .quick-input-tree-rows {
2043
+ overflow: hidden;
2044
+ text-overflow: ellipsis;
2045
+ display: flex;
2046
+ flex-direction: column;
2047
+ flex: 1;
2048
+ height: 100%;
2049
+ margin-left: 5px;
2050
+ }
2051
+
2052
+ .quick-input-tree .quick-input-tree-rows > .quick-input-tree-row {
2053
+ display: flex;
2054
+ align-items: center;
2055
+ }
2056
+
2057
+ .quick-input-tree .quick-input-tree-rows > .quick-input-tree-row .monaco-icon-label, .quick-input-tree .quick-input-tree-rows > .quick-input-tree-row .monaco-icon-label .monaco-icon-label-container > .monaco-icon-name-container {
2058
+ flex: 1;
2059
+ }
2060
+
2061
+ .quick-input-tree .quick-input-tree-rows > .quick-input-tree-row .codicon[class*="codicon-"] {
2062
+ vertical-align: text-bottom;
2063
+ }
2064
+
2065
+ .quick-input-tree .quick-input-tree-rows .monaco-highlighted-label > span {
2066
+ opacity: 1;
2067
+ }
2068
+
2069
+ .quick-input-tree .quick-input-tree-entry-action-bar {
2070
+ display: flex;
2071
+ overflow: visible;
2072
+ flex: 0;
2073
+ }
2074
+
2075
+ .quick-input-tree .quick-input-tree-entry-action-bar .action-label {
2076
+ display: none;
2077
+ }
2078
+
2079
+ .quick-input-tree .quick-input-tree-entry-action-bar .action-label.codicon {
2080
+ margin-right: 4px;
2081
+ padding: 2px;
2082
+ }
2083
+
2084
+ .quick-input-tree .quick-input-tree-entry-action-bar {
2085
+ margin-top: 1px;
2086
+ }
2087
+
2088
+ .quick-input-tree .quick-input-tree-entry-action-bar {
2089
+ margin-right: 4px;
2090
+ }
2091
+
2092
+ .quick-input-tree .quick-input-tree-entry .quick-input-tree-entry-action-bar .action-label.always-visible, .quick-input-tree .quick-input-tree-entry:hover .quick-input-tree-entry-action-bar .action-label, .quick-input-tree .quick-input-tree-entry.focus-inside .quick-input-tree-entry-action-bar .action-label, .quick-input-tree .monaco-list-row.focused .quick-input-tree-entry-action-bar .action-label, .quick-input-tree .monaco-list-row.passive-focused .quick-input-tree-entry-action-bar .action-label {
2093
+ display: flex;
2094
+ }
2095
+
2096
+ .quick-input-tree > .monaco-list:focus .monaco-list-row.focused {
2097
+ outline-offset: -1px;
2098
+ outline: 1px solid var(--vscode-list-focusOutline) !important;
2099
+ }
2100
+
2101
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/button/button.css */
2102
+ .monaco-text-button {
2103
+ box-sizing: border-box;
2104
+ display: flex;
2105
+ text-align: center;
2106
+ cursor: pointer;
2107
+ border: 1px solid var(--vscode-button-border, transparent);
2108
+ border-radius: 2px;
2109
+ justify-content: center;
2110
+ align-items: center;
2111
+ width: 100%;
2112
+ padding: 4px;
2113
+ line-height: 18px;
2114
+ }
2115
+
2116
+ .monaco-text-button:focus {
2117
+ outline-offset: 2px !important;
2118
+ }
2119
+
2120
+ .monaco-text-button:hover {
2121
+ text-decoration: none !important;
2122
+ }
2123
+
2124
+ .monaco-button.disabled:focus, .monaco-button.disabled {
2125
+ cursor: default;
2126
+ opacity: .4 !important;
2127
+ }
2128
+
2129
+ .monaco-text-button .codicon {
2130
+ margin: 0 .2em;
2131
+ color: inherit !important;
2132
+ }
2133
+
2134
+ .monaco-text-button.monaco-text-button-with-short-label {
2135
+ overflow: hidden;
2136
+ flex-flow: wrap;
2137
+ height: 28px;
2138
+ padding: 0 4px;
2139
+ }
2140
+
2141
+ .monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label {
2142
+ flex-basis: 100%;
2143
+ }
2144
+
2145
+ .monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
2146
+ overflow: hidden;
2147
+ flex-grow: 1;
2148
+ width: 0;
2149
+ }
2150
+
2151
+ .monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label, .monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
2152
+ display: flex;
2153
+ font-weight: normal;
2154
+ font-style: inherit;
2155
+ justify-content: center;
2156
+ align-items: center;
2157
+ padding: 4px 0;
2158
+ }
2159
+
2160
+ .monaco-button-dropdown {
2161
+ display: flex;
2162
+ cursor: pointer;
2163
+ }
2164
+
2165
+ .monaco-button-dropdown.disabled {
2166
+ cursor: default;
2167
+ }
2168
+
2169
+ .monaco-button-dropdown > .monaco-button:focus {
2170
+ outline-offset: -1px !important;
2171
+ }
2172
+
2173
+ .monaco-button-dropdown.disabled > .monaco-button.disabled, .monaco-button-dropdown.disabled > .monaco-button.disabled:focus, .monaco-button-dropdown.disabled > .monaco-button-dropdown-separator {
2174
+ opacity: .4 !important;
2175
+ }
2176
+
2177
+ .monaco-button-dropdown > .monaco-button.monaco-text-button {
2178
+ border-right-width: 0 !important;
2179
+ }
2180
+
2181
+ .monaco-button-dropdown .monaco-button-dropdown-separator {
2182
+ cursor: default;
2183
+ padding: 4px 0;
2184
+ }
2185
+
2186
+ .monaco-button-dropdown .monaco-button-dropdown-separator > div {
2187
+ width: 1px;
2188
+ height: 100%;
2189
+ }
2190
+
2191
+ .monaco-button-dropdown > .monaco-button.monaco-dropdown-button {
2192
+ border: 1px solid var(--vscode-button-border, transparent);
2193
+ display: flex;
2194
+ border-radius: 0 2px 2px 0;
2195
+ align-items: center;
2196
+ border-left-width: 0 !important;
2197
+ }
2198
+
2199
+ .monaco-button-dropdown > .monaco-button.monaco-text-button {
2200
+ border-radius: 2px 0 0 2px;
2201
+ }
2202
+
2203
+ .monaco-description-button {
2204
+ display: flex;
2205
+ flex-direction: column;
2206
+ align-items: center;
2207
+ margin: 4px 5px;
2208
+ }
2209
+
2210
+ .monaco-description-button .monaco-button-description {
2211
+ padding: 4px 20px;
2212
+ font-size: 11px;
2213
+ font-style: italic;
2214
+ }
2215
+
2216
+ .monaco-description-button .monaco-button-label, .monaco-description-button .monaco-button-description {
2217
+ display: flex;
2218
+ justify-content: center;
2219
+ align-items: center;
2220
+ }
2221
+
2222
+ .monaco-description-button .monaco-button-label > .codicon, .monaco-description-button .monaco-button-description > .codicon {
2223
+ margin: 0 .2em;
2224
+ color: inherit !important;
2225
+ }
2226
+
2227
+ .monaco-button.default-colors, .monaco-button-dropdown.default-colors > .monaco-button {
2228
+ color: var(--vscode-button-foreground);
2229
+ background-color: var(--vscode-button-background);
2230
+ }
2231
+
2232
+ .monaco-button.default-colors:hover, .monaco-button-dropdown.default-colors > .monaco-button:hover {
2233
+ background-color: var(--vscode-button-hoverBackground);
2234
+ }
2235
+
2236
+ .monaco-button.default-colors.secondary, .monaco-button-dropdown.default-colors > .monaco-button.secondary {
2237
+ color: var(--vscode-button-secondaryForeground);
2238
+ background-color: var(--vscode-button-secondaryBackground);
2239
+ }
2240
+
2241
+ .monaco-button.default-colors.secondary:hover, .monaco-button-dropdown.default-colors > .monaco-button.secondary:hover {
2242
+ background-color: var(--vscode-button-secondaryHoverBackground);
2243
+ }
2244
+
2245
+ .monaco-button-dropdown.default-colors .monaco-button-dropdown-separator {
2246
+ background-color: var(--vscode-button-background);
2247
+ border-top: 1px solid var(--vscode-button-border);
2248
+ border-bottom: 1px solid var(--vscode-button-border);
2249
+ }
2250
+
2251
+ .monaco-button-dropdown.default-colors .monaco-button.secondary + .monaco-button-dropdown-separator {
2252
+ background-color: var(--vscode-button-secondaryBackground);
2253
+ }
2254
+
2255
+ .monaco-button-dropdown.default-colors .monaco-button-dropdown-separator > div {
2256
+ background-color: var(--vscode-button-separator);
2257
+ }
2258
+
2259
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/countBadge/countBadge.css */
2260
+ .monaco-count-badge {
2261
+ text-align: center;
2262
+ display: inline-block;
2263
+ box-sizing: border-box;
2264
+ border-radius: 11px;
2265
+ min-width: 18px;
2266
+ min-height: 18px;
2267
+ padding: 3px 5px;
2268
+ font-size: 11px;
2269
+ font-weight: normal;
2270
+ line-height: 11px;
2271
+ }
2272
+
2273
+ .monaco-count-badge.long {
2274
+ border-radius: 2px;
2275
+ min-height: auto;
2276
+ padding: 2px 3px;
2277
+ line-height: normal;
2278
+ }
2279
+
2280
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/progressbar/progressbar.css */
2281
+ .monaco-progress-container {
2282
+ overflow: hidden;
2283
+ width: 100%;
2284
+ height: 2px;
2285
+ }
2286
+
2287
+ .monaco-progress-container .progress-bit {
2288
+ position: absolute;
2289
+ display: none;
2290
+ width: 2%;
2291
+ height: 2px;
2292
+ left: 0;
2293
+ }
2294
+
2295
+ .monaco-progress-container.active .progress-bit {
2296
+ display: inherit;
2297
+ }
2298
+
2299
+ .monaco-progress-container.discrete .progress-bit {
2300
+ transition: width .1s linear;
2301
+ left: 0;
2302
+ }
2303
+
2304
+ .monaco-progress-container.discrete.done .progress-bit {
2305
+ width: 100%;
2306
+ }
2307
+
2308
+ .monaco-progress-container.infinite .progress-bit {
2309
+ animation-name: progress;
2310
+ animation-duration: 4s;
2311
+ animation-iteration-count: infinite;
2312
+ animation-timing-function: linear;
2313
+ transform: translate3d(0, 0, 0);
2314
+ }
2315
+
2316
+ .monaco-progress-container.infinite.infinite-long-running .progress-bit {
2317
+ animation-timing-function: steps(100);
2318
+ }
2319
+
2320
+ @keyframes progress {
2321
+ from {
2322
+ transform: translateX(0%)scaleX(1);
2323
+ }
2324
+
2325
+ 50% {
2326
+ transform: translateX(2500%)scaleX(3);
2327
+ }
2328
+
2329
+ to {
2330
+ transform: translateX(4900%)scaleX(1);
2331
+ }
2332
+ }
2333
+
2334
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.css */
2335
+ .monaco-inputbox {
2336
+ position: relative;
2337
+ display: block;
2338
+ box-sizing: border-box;
2339
+ font-size: inherit;
2340
+ border-radius: 2px;
2341
+ padding: 0;
2342
+ }
2343
+
2344
+ .monaco-inputbox > .ibwrapper > .input, .monaco-inputbox > .ibwrapper > .mirror {
2345
+ padding: 4px 6px;
2346
+ }
2347
+
2348
+ .monaco-inputbox > .ibwrapper {
2349
+ position: relative;
2350
+ width: 100%;
2351
+ }
2352
+
2353
+ .monaco-inputbox > .ibwrapper > .input {
2354
+ display: inline-block;
2355
+ box-sizing: border-box;
2356
+ line-height: inherit;
2357
+ font-family: inherit;
2358
+ font-size: inherit;
2359
+ resize: none;
2360
+ color: inherit;
2361
+ border: none;
2362
+ width: 100%;
2363
+ height: 100%;
2364
+ }
2365
+
2366
+ .monaco-inputbox > .ibwrapper > input {
2367
+ text-overflow: ellipsis;
2368
+ }
2369
+
2370
+ .monaco-inputbox > .ibwrapper > textarea.input {
2371
+ display: block;
2372
+ scrollbar-width: none;
2373
+ outline: none;
2374
+ }
2375
+
2376
+ .monaco-inputbox > .ibwrapper > textarea.input::-webkit-scrollbar {
2377
+ display: none;
2378
+ }
2379
+
2380
+ .monaco-inputbox > .ibwrapper > textarea.input.empty {
2381
+ white-space: nowrap;
2382
+ }
2383
+
2384
+ .monaco-inputbox > .ibwrapper > .mirror {
2385
+ position: absolute;
2386
+ display: inline-block;
2387
+ box-sizing: border-box;
2388
+ white-space: pre-wrap;
2389
+ visibility: hidden;
2390
+ word-wrap: break-word;
2391
+ width: 100%;
2392
+ top: 0;
2393
+ left: 0;
2394
+ }
2395
+
2396
+ .monaco-inputbox-container {
2397
+ text-align: right;
2398
+ }
2399
+
2400
+ .monaco-inputbox-container .monaco-inputbox-message {
2401
+ display: inline-block;
2402
+ overflow: hidden;
2403
+ text-align: left;
2404
+ box-sizing: border-box;
2405
+ word-wrap: break-word;
2406
+ width: 100%;
2407
+ margin-top: -1px;
2408
+ padding: .4em;
2409
+ font-size: 12px;
2410
+ line-height: 17px;
2411
+ }
2412
+
2413
+ .monaco-inputbox .monaco-action-bar {
2414
+ position: absolute;
2415
+ top: 4px;
2416
+ right: 2px;
2417
+ }
2418
+
2419
+ .monaco-inputbox .monaco-action-bar .action-item {
2420
+ margin-left: 2px;
2421
+ }
2422
+
2423
+ .monaco-inputbox .monaco-action-bar .action-item .codicon {
2424
+ background-repeat: no-repeat;
2425
+ width: 16px;
2426
+ height: 16px;
2427
+ }
2428
+
2429
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/findinput/findInput.css */
2430
+ .monaco-findInput {
2431
+ position: relative;
2432
+ }
2433
+
2434
+ .monaco-findInput .monaco-inputbox {
2435
+ width: 100%;
2436
+ font-size: 13px;
2437
+ }
2438
+
2439
+ .monaco-findInput > .controls {
2440
+ position: absolute;
2441
+ top: 3px;
2442
+ right: 2px;
2443
+ }
2444
+
2445
+ .vs .monaco-findInput.disabled {
2446
+ background-color: #e1e1e1;
2447
+ }
2448
+
2449
+ .vs-dark .monaco-findInput.disabled {
2450
+ background-color: #333;
2451
+ }
2452
+
2453
+ .monaco-findInput.highlight-0 .controls, .hc-light .monaco-findInput.highlight-0 .controls {
2454
+ animation: monaco-findInput-highlight-0 .1s linear 0s;
2455
+ }
2456
+
2457
+ .monaco-findInput.highlight-1 .controls, .hc-light .monaco-findInput.highlight-1 .controls {
2458
+ animation: monaco-findInput-highlight-1 .1s linear 0s;
2459
+ }
2460
+
2461
+ .hc-black .monaco-findInput.highlight-0 .controls, .vs-dark .monaco-findInput.highlight-0 .controls {
2462
+ animation: monaco-findInput-highlight-dark-0 .1s linear 0s;
2463
+ }
2464
+
2465
+ .hc-black .monaco-findInput.highlight-1 .controls, .vs-dark .monaco-findInput.highlight-1 .controls {
2466
+ animation: monaco-findInput-highlight-dark-1 .1s linear 0s;
2467
+ }
2468
+
2469
+ @keyframes monaco-findInput-highlight-0 {
2470
+ 0% {
2471
+ background: #fdff00cc;
2472
+ }
2473
+
2474
+ 100% {
2475
+ background: none;
2476
+ }
2477
+ }
2478
+
2479
+ @keyframes monaco-findInput-highlight-1 {
2480
+ 0% {
2481
+ background: #fdff00cc;
2482
+ }
2483
+
2484
+ 99% {
2485
+ background: none;
2486
+ }
2487
+ }
2488
+
2489
+ @keyframes monaco-findInput-highlight-dark-0 {
2490
+ 0% {
2491
+ background: #ffffff70;
2492
+ }
2493
+
2494
+ 100% {
2495
+ background: none;
2496
+ }
2497
+ }
2498
+
2499
+ @keyframes monaco-findInput-highlight-dark-1 {
2500
+ 0% {
2501
+ background: #ffffff70;
2502
+ }
2503
+
2504
+ 99% {
2505
+ background: none;
2506
+ }
2507
+ }
2508
+
2509
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/iconLabel/iconlabel.css */
2510
+ .monaco-icon-label {
2511
+ display: flex;
2512
+ overflow: hidden;
2513
+ text-overflow: ellipsis;
2514
+ }
2515
+
2516
+ .monaco-icon-label:before {
2517
+ display: inline-block;
2518
+ -webkit-font-smoothing: antialiased;
2519
+ -moz-osx-font-smoothing: grayscale;
2520
+ vertical-align: top;
2521
+ background-position: 0;
2522
+ background-repeat: no-repeat;
2523
+ background-size: 16px;
2524
+ flex-shrink: 0;
2525
+ width: 16px;
2526
+ height: 22px;
2527
+ padding-right: 6px;
2528
+ line-height: inherit !important;
2529
+ }
2530
+
2531
+ .monaco-icon-label-iconpath {
2532
+ display: flex;
2533
+ width: 16px;
2534
+ height: 22px;
2535
+ margin-right: 6px;
2536
+ }
2537
+
2538
+ .monaco-icon-label-container.disabled {
2539
+ color: var(--vscode-disabledForeground);
2540
+ }
2541
+
2542
+ .monaco-icon-label > .monaco-icon-label-container {
2543
+ overflow: hidden;
2544
+ text-overflow: ellipsis;
2545
+ flex: 1;
2546
+ min-width: 0;
2547
+ }
2548
+
2549
+ .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
2550
+ color: inherit;
2551
+ white-space: pre;
2552
+ }
2553
+
2554
+ .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name > .label-separator {
2555
+ opacity: .5;
2556
+ margin: 0 2px;
2557
+ }
2558
+
2559
+ .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-suffix-container > .label-suffix {
2560
+ opacity: .7;
2561
+ white-space: pre;
2562
+ }
2563
+
2564
+ .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
2565
+ opacity: .7;
2566
+ white-space: pre;
2567
+ margin-left: .5em;
2568
+ font-size: .9em;
2569
+ }
2570
+
2571
+ .monaco-icon-label.nowrap > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
2572
+ white-space: nowrap;
2573
+ }
2574
+
2575
+ .vs .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
2576
+ opacity: .95;
2577
+ }
2578
+
2579
+ .monaco-icon-label.bold > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.bold > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
2580
+ font-weight: bold;
2581
+ }
2582
+
2583
+ .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
2584
+ font-style: italic;
2585
+ }
2586
+
2587
+ .monaco-icon-label.deprecated {
2588
+ text-decoration: line-through;
2589
+ opacity: .66;
2590
+ }
2591
+
2592
+ .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
2593
+ text-decoration: line-through;
2594
+ }
2595
+
2596
+ .monaco-icon-label:after {
2597
+ opacity: .75;
2598
+ text-align: center;
2599
+ margin: auto 16px 0 5px;
2600
+ font-size: 90%;
2601
+ font-weight: 600;
2602
+ }
2603
+
2604
+ .monaco-list:focus .selected .monaco-icon-label, .monaco-list:focus .selected .monaco-icon-label:after {
2605
+ color: inherit !important;
2606
+ }
2607
+
2608
+ .monaco-list-row.focused.selected .label-description, .monaco-list-row.selected .label-description {
2609
+ opacity: .8;
2610
+ }
2611
+
2612
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/keybindingLabel/keybindingLabel.css */
2613
+ .monaco-keybinding {
2614
+ display: flex;
2615
+ align-items: center;
2616
+ line-height: 10px;
2617
+ }
2618
+
2619
+ .monaco-keybinding > .monaco-keybinding-key {
2620
+ display: inline-block;
2621
+ vertical-align: middle;
2622
+ border-style: solid;
2623
+ border-width: 1px;
2624
+ border-radius: 3px;
2625
+ margin: 0 2px;
2626
+ padding: 3px 5px;
2627
+ font-size: 11px;
2628
+ }
2629
+
2630
+ .monaco-keybinding > .monaco-keybinding-key:first-child {
2631
+ margin-left: 0;
2632
+ }
2633
+
2634
+ .monaco-keybinding > .monaco-keybinding-key:last-child {
2635
+ margin-right: 0;
2636
+ }
2637
+
2638
+ .monaco-keybinding > .monaco-keybinding-key-separator {
2639
+ display: inline-block;
2640
+ }
2641
+
2642
+ .monaco-keybinding > .monaco-keybinding-key-chord-separator {
2643
+ width: 6px;
2644
+ }
2645
+
2646
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/tree/media/tree.css */
2647
+ .monaco-tl-row {
2648
+ display: flex;
2649
+ position: relative;
2650
+ align-items: center;
2651
+ height: 100%;
2652
+ }
2653
+
2654
+ .monaco-tl-row.disabled {
2655
+ cursor: default;
2656
+ }
2657
+
2658
+ .monaco-tl-indent {
2659
+ position: absolute;
2660
+ pointer-events: none;
2661
+ height: 100%;
2662
+ top: 0;
2663
+ left: 16px;
2664
+ }
2665
+
2666
+ .hide-arrows .monaco-tl-indent {
2667
+ left: 12px;
2668
+ }
2669
+
2670
+ .monaco-tl-indent > .indent-guide {
2671
+ display: inline-block;
2672
+ box-sizing: border-box;
2673
+ opacity: 0;
2674
+ border-left: 1px solid #0000;
2675
+ height: 100%;
2676
+ }
2677
+
2678
+ .monaco-enable-motion .monaco-tl-indent > .indent-guide {
2679
+ transition: opacity .1s linear;
2680
+ }
2681
+
2682
+ .monaco-tl-twistie, .monaco-tl-contents {
2683
+ height: 100%;
2684
+ }
2685
+
2686
+ .monaco-tl-twistie {
2687
+ text-align: right;
2688
+ flex-shrink: 0;
2689
+ justify-content: center;
2690
+ align-items: center;
2691
+ width: 16px;
2692
+ padding-right: 6px;
2693
+ font-size: 10px;
2694
+ transform: translateX(3px);
2695
+ display: flex !important;
2696
+ }
2697
+
2698
+ .monaco-tl-contents {
2699
+ overflow: hidden;
2700
+ flex: 1;
2701
+ }
2702
+
2703
+ .monaco-tl-twistie:before {
2704
+ border-radius: 20px;
2705
+ }
2706
+
2707
+ .monaco-tl-twistie.collapsed:before {
2708
+ transform: rotate(-90deg);
2709
+ }
2710
+
2711
+ .monaco-tl-twistie.codicon-tree-item-loading:before {
2712
+ animation: codicon-spin 1.25s steps(30) infinite;
2713
+ }
2714
+
2715
+ .monaco-tree-type-filter {
2716
+ position: absolute;
2717
+ display: flex;
2718
+ z-index: 100;
2719
+ border: 1px solid var(--vscode-widget-border);
2720
+ border-bottom-right-radius: 4px;
2721
+ border-bottom-left-radius: 4px;
2722
+ max-width: 200px;
2723
+ margin: 0 10px 0 6px;
2724
+ padding: 3px;
2725
+ top: 0;
2726
+ right: 0;
2727
+ }
2728
+
2729
+ .monaco-enable-motion .monaco-tree-type-filter {
2730
+ transition: top .3s;
2731
+ }
2732
+
2733
+ .monaco-tree-type-filter.disabled {
2734
+ top: -40px !important;
2735
+ }
2736
+
2737
+ .monaco-tree-type-filter-input {
2738
+ flex: 1;
2739
+ }
2740
+
2741
+ .monaco-tree-type-filter-input .monaco-inputbox {
2742
+ height: 23px;
2743
+ }
2744
+
2745
+ .monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .input, .monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .mirror {
2746
+ padding: 2px 4px;
2747
+ }
2748
+
2749
+ .monaco-tree-type-filter-input .monaco-findInput > .controls {
2750
+ top: 2px;
2751
+ }
2752
+
2753
+ .monaco-tree-type-filter-actionbar {
2754
+ margin-left: 4px;
2755
+ }
2756
+
2757
+ .monaco-tree-type-filter-actionbar .monaco-action-bar .action-label {
2758
+ padding: 2px;
2759
+ }
2760
+
2761
+ .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container {
2762
+ position: absolute;
2763
+ z-index: 13;
2764
+ background-color: var(--vscode-sideBar-background);
2765
+ width: 100%;
2766
+ height: 0;
2767
+ top: 0;
2768
+ left: 0;
2769
+ }
2770
+
2771
+ .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row.monaco-list-row {
2772
+ position: absolute;
2773
+ overflow: hidden;
2774
+ background-color: var(--vscode-sideBar-background);
2775
+ width: 100%;
2776
+ opacity: 1 !important;
2777
+ }
2778
+
2779
+ .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row:hover {
2780
+ cursor: pointer;
2781
+ background-color: var(--vscode-list-hoverBackground) !important;
2782
+ }
2783
+
2784
+ .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty, .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty .monaco-tree-sticky-container-shadow {
2785
+ display: none;
2786
+ }
2787
+
2788
+ .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-container-shadow {
2789
+ position: absolute;
2790
+ width: 100%;
2791
+ height: 0;
2792
+ bottom: -3px;
2793
+ left: 0;
2794
+ }
2795
+
2796
+ .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container[tabindex="0"]:focus {
2797
+ outline: none;
2798
+ }
2799
+
2800
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/sash/sash.css */
2801
+ :root {
2802
+ --vscode-sash-size: 4px;
2803
+ --vscode-sash-hover-size: 4px;
2804
+ }
2805
+
2806
+ .monaco-sash {
2807
+ position: absolute;
2808
+ z-index: 35;
2809
+ touch-action: none;
2810
+ }
2811
+
2812
+ .monaco-sash.disabled {
2813
+ pointer-events: none;
2814
+ }
2815
+
2816
+ .monaco-sash.mac.vertical {
2817
+ cursor: col-resize;
2818
+ }
2819
+
2820
+ .monaco-sash.vertical.minimum {
2821
+ cursor: e-resize;
2822
+ }
2823
+
2824
+ .monaco-sash.vertical.maximum {
2825
+ cursor: w-resize;
2826
+ }
2827
+
2828
+ .monaco-sash.mac.horizontal {
2829
+ cursor: row-resize;
2830
+ }
2831
+
2832
+ .monaco-sash.horizontal.minimum {
2833
+ cursor: s-resize;
2834
+ }
2835
+
2836
+ .monaco-sash.horizontal.maximum {
2837
+ cursor: n-resize;
2838
+ }
2839
+
2840
+ .monaco-sash.disabled {
2841
+ cursor: default !important;
2842
+ pointer-events: none !important;
2843
+ }
2844
+
2845
+ .monaco-sash.vertical {
2846
+ cursor: ew-resize;
2847
+ width: var(--vscode-sash-size);
2848
+ height: 100%;
2849
+ top: 0;
2850
+ }
2851
+
2852
+ .monaco-sash.horizontal {
2853
+ cursor: ns-resize;
2854
+ height: var(--vscode-sash-size);
2855
+ width: 100%;
2856
+ left: 0;
2857
+ }
2858
+
2859
+ .monaco-sash:not(.disabled) > .orthogonal-drag-handle {
2860
+ content: " ";
2861
+ height: calc(var(--vscode-sash-size) * 2);
2862
+ width: calc(var(--vscode-sash-size) * 2);
2863
+ z-index: 100;
2864
+ display: block;
2865
+ cursor: all-scroll;
2866
+ position: absolute;
2867
+ }
2868
+
2869
+ .monaco-sash.horizontal.orthogonal-edge-north:not(.disabled) > .orthogonal-drag-handle.start, .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled) > .orthogonal-drag-handle.end {
2870
+ cursor: nwse-resize;
2871
+ }
2872
+
2873
+ .monaco-sash.horizontal.orthogonal-edge-north:not(.disabled) > .orthogonal-drag-handle.end, .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled) > .orthogonal-drag-handle.start {
2874
+ cursor: nesw-resize;
2875
+ }
2876
+
2877
+ .monaco-sash.vertical > .orthogonal-drag-handle.start {
2878
+ left: calc(var(--vscode-sash-size) * -.5);
2879
+ top: calc(var(--vscode-sash-size) * -1);
2880
+ }
2881
+
2882
+ .monaco-sash.vertical > .orthogonal-drag-handle.end {
2883
+ left: calc(var(--vscode-sash-size) * -.5);
2884
+ bottom: calc(var(--vscode-sash-size) * -1);
2885
+ }
2886
+
2887
+ .monaco-sash.horizontal > .orthogonal-drag-handle.start {
2888
+ top: calc(var(--vscode-sash-size) * -.5);
2889
+ left: calc(var(--vscode-sash-size) * -1);
2890
+ }
2891
+
2892
+ .monaco-sash.horizontal > .orthogonal-drag-handle.end {
2893
+ top: calc(var(--vscode-sash-size) * -.5);
2894
+ right: calc(var(--vscode-sash-size) * -1);
2895
+ }
2896
+
2897
+ .monaco-sash:before {
2898
+ content: "";
2899
+ pointer-events: none;
2900
+ position: absolute;
2901
+ background: none;
2902
+ width: 100%;
2903
+ height: 100%;
2904
+ }
2905
+
2906
+ .monaco-enable-motion .monaco-sash:before {
2907
+ transition: background-color .1s ease-out;
2908
+ }
2909
+
2910
+ .monaco-sash.hover:before, .monaco-sash.active:before {
2911
+ background: var(--vscode-sash-hoverBorder);
2912
+ }
2913
+
2914
+ .monaco-sash.vertical:before {
2915
+ width: var(--vscode-sash-hover-size);
2916
+ left: calc(50% - (var(--vscode-sash-hover-size) / 2));
2917
+ }
2918
+
2919
+ .monaco-sash.horizontal:before {
2920
+ height: var(--vscode-sash-hover-size);
2921
+ top: calc(50% - (var(--vscode-sash-hover-size) / 2));
2922
+ }
2923
+
2924
+ .pointer-events-disabled {
2925
+ pointer-events: none !important;
2926
+ }
2927
+
2928
+ .monaco-sash.debug {
2929
+ background: #0ff;
2930
+ }
2931
+
2932
+ .monaco-sash.debug.disabled {
2933
+ background: #0ff3;
2934
+ }
2935
+
2936
+ .monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
2937
+ background: red;
2938
+ }
2939
+
2940
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/splitview/splitview.css */
2941
+ .monaco-split-view2 {
2942
+ position: relative;
2943
+ width: 100%;
2944
+ height: 100%;
2945
+ }
2946
+
2947
+ .monaco-split-view2 > .sash-container {
2948
+ position: absolute;
2949
+ pointer-events: none;
2950
+ width: 100%;
2951
+ height: 100%;
2952
+ }
2953
+
2954
+ .monaco-split-view2 > .sash-container > .monaco-sash {
2955
+ pointer-events: initial;
2956
+ }
2957
+
2958
+ .monaco-split-view2 > .monaco-scrollable-element {
2959
+ width: 100%;
2960
+ height: 100%;
2961
+ }
2962
+
2963
+ .monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
2964
+ white-space: nowrap;
2965
+ position: relative;
2966
+ width: 100%;
2967
+ height: 100%;
2968
+ }
2969
+
2970
+ .monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
2971
+ white-space: initial;
2972
+ position: absolute;
2973
+ }
2974
+
2975
+ .monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
2976
+ display: none;
2977
+ }
2978
+
2979
+ .monaco-split-view2.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view {
2980
+ width: 100%;
2981
+ }
2982
+
2983
+ .monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
2984
+ height: 100%;
2985
+ }
2986
+
2987
+ .monaco-split-view2.separator-border > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
2988
+ content: " ";
2989
+ position: absolute;
2990
+ z-index: 5;
2991
+ pointer-events: none;
2992
+ background-color: var(--separator-border);
2993
+ top: 0;
2994
+ left: 0;
2995
+ }
2996
+
2997
+ .monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
2998
+ width: 1px;
2999
+ height: 100%;
3000
+ }
3001
+
3002
+ .monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
3003
+ width: 100%;
3004
+ height: 1px;
3005
+ }
3006
+
3007
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/table/table.css */
3008
+ .monaco-table {
3009
+ display: flex;
3010
+ position: relative;
3011
+ white-space: nowrap;
3012
+ overflow: hidden;
3013
+ flex-direction: column;
3014
+ width: 100%;
3015
+ height: 100%;
3016
+ }
3017
+
3018
+ .monaco-table > .monaco-split-view2 {
3019
+ border-bottom: 1px solid #0000;
3020
+ }
3021
+
3022
+ .monaco-table > .monaco-list {
3023
+ flex: 1;
3024
+ }
3025
+
3026
+ .monaco-table-tr {
3027
+ display: flex;
3028
+ height: 100%;
3029
+ }
3030
+
3031
+ .monaco-table-th {
3032
+ overflow: hidden;
3033
+ text-overflow: ellipsis;
3034
+ width: 100%;
3035
+ height: 100%;
3036
+ font-weight: bold;
3037
+ }
3038
+
3039
+ .monaco-table-th, .monaco-table-td {
3040
+ box-sizing: border-box;
3041
+ overflow: hidden;
3042
+ white-space: nowrap;
3043
+ text-overflow: ellipsis;
3044
+ flex-shrink: 0;
3045
+ }
3046
+
3047
+ .monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
3048
+ content: "";
3049
+ position: absolute;
3050
+ left: calc(var(--vscode-sash-size) / 2);
3051
+ border-left: 1px solid #0000;
3052
+ width: 0;
3053
+ }
3054
+
3055
+ .monaco-enable-motion .monaco-table > .monaco-split-view2, .monaco-enable-motion .monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
3056
+ transition: border-color .2s ease-out;
3057
+ }
3058
+
3059
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css */
3060
+ .monaco-diff-editor .diff-review {
3061
+ position: absolute;
3062
+ }
3063
+
3064
+ .monaco-component.diff-review {
3065
+ user-select: none;
3066
+ -webkit-user-select: none;
3067
+ z-index: 99;
3068
+ }
3069
+
3070
+ .monaco-component.diff-review .diff-review-line-number {
3071
+ text-align: right;
3072
+ display: inline-block;
3073
+ color: var(--vscode-editorLineNumber-foreground);
3074
+ }
3075
+
3076
+ .monaco-component.diff-review .diff-review-summary {
3077
+ padding-left: 10px;
3078
+ }
3079
+
3080
+ .monaco-component.diff-review .diff-review-shadow {
3081
+ position: absolute;
3082
+ box-shadow: var(--vscode-scrollbar-shadow) 0 -6px 6px -6px inset;
3083
+ }
3084
+
3085
+ .monaco-component.diff-review .diff-review-row {
3086
+ white-space: pre;
3087
+ }
3088
+
3089
+ .monaco-component.diff-review .diff-review-table {
3090
+ display: table;
3091
+ min-width: 100%;
3092
+ }
3093
+
3094
+ .monaco-component.diff-review .diff-review-row {
3095
+ display: table-row;
3096
+ width: 100%;
3097
+ }
3098
+
3099
+ .monaco-component.diff-review .diff-review-spacer {
3100
+ display: inline-block;
3101
+ vertical-align: middle;
3102
+ width: 10px;
3103
+ }
3104
+
3105
+ .monaco-component.diff-review .diff-review-spacer > .codicon {
3106
+ font-size: 9px !important;
3107
+ }
3108
+
3109
+ .monaco-component.diff-review .diff-review-actions {
3110
+ display: inline-block;
3111
+ position: absolute;
3112
+ z-index: 100;
3113
+ top: 2px;
3114
+ right: 10px;
3115
+ }
3116
+
3117
+ .monaco-component.diff-review .diff-review-actions .action-label {
3118
+ width: 16px;
3119
+ height: 16px;
3120
+ margin: 2px 0;
3121
+ }
3122
+
3123
+ .monaco-component.diff-review .revertButton {
3124
+ cursor: pointer;
3125
+ }
3126
+
3127
+ .monaco-component.diff-review .action-label {
3128
+ background: var(--vscode-editorActionList-background);
3129
+ }
3130
+
3131
+ /* ../../node_modules/monaco-editor/esm/vs/base/browser/ui/toolbar/toolbar.css */
3132
+ .monaco-toolbar {
3133
+ height: 100%;
3134
+ }
3135
+
3136
+ .monaco-toolbar .toolbar-toggle-more {
3137
+ display: inline-block;
3138
+ padding: 0;
3139
+ }
3140
+
3141
+ .monaco-toolbar.responsive .monaco-action-bar > .actions-container > .action-item {
3142
+ flex-shrink: 1;
3143
+ min-width: 20px;
3144
+ }
3145
+
3146
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/widget/diffEditor/style.css */
3147
+ .monaco-editor .diff-hidden-lines-widget {
3148
+ width: 100%;
3149
+ }
3150
+
3151
+ .monaco-editor .diff-hidden-lines {
3152
+ height: 0;
3153
+ font-size: 13px;
3154
+ line-height: 14px;
3155
+ transform: translate(0, -10px);
3156
+ }
3157
+
3158
+ .monaco-editor .diff-hidden-lines:not(.dragging) .top:hover, .monaco-editor .diff-hidden-lines:not(.dragging) .bottom:hover, .monaco-editor .diff-hidden-lines .top.dragging, .monaco-editor .diff-hidden-lines .bottom.dragging {
3159
+ background-color: var(--vscode-focusBorder);
3160
+ }
3161
+
3162
+ .monaco-editor .diff-hidden-lines .top, .monaco-editor .diff-hidden-lines .bottom {
3163
+ background-color: #0000;
3164
+ background-clip: padding-box;
3165
+ border-top: 4px solid #0000;
3166
+ border-bottom: 2px solid #0000;
3167
+ height: 4px;
3168
+ transition: background-color .1s ease-out;
3169
+ }
3170
+
3171
+ .monaco-editor.draggingUnchangedRegion.canMoveTop:not(.canMoveBottom) *, .monaco-editor .diff-hidden-lines .top.canMoveTop:not(.canMoveBottom), .monaco-editor .diff-hidden-lines .bottom.canMoveTop:not(.canMoveBottom) {
3172
+ cursor: n-resize !important;
3173
+ }
3174
+
3175
+ .monaco-editor.draggingUnchangedRegion:not(.canMoveTop).canMoveBottom *, .monaco-editor .diff-hidden-lines .top:not(.canMoveTop).canMoveBottom, .monaco-editor .diff-hidden-lines .bottom:not(.canMoveTop).canMoveBottom {
3176
+ cursor: s-resize !important;
3177
+ }
3178
+
3179
+ .monaco-editor.draggingUnchangedRegion.canMoveTop.canMoveBottom *, .monaco-editor .diff-hidden-lines .top.canMoveTop.canMoveBottom, .monaco-editor .diff-hidden-lines .bottom.canMoveTop.canMoveBottom {
3180
+ cursor: ns-resize !important;
3181
+ }
3182
+
3183
+ .monaco-editor .diff-hidden-lines .top {
3184
+ transform: translate(0, 4px);
3185
+ }
3186
+
3187
+ .monaco-editor .diff-hidden-lines .bottom {
3188
+ transform: translate(0, -6px);
3189
+ }
3190
+
3191
+ .monaco-editor .diff-unchanged-lines {
3192
+ background: var(--vscode-diffEditor-unchangedCodeBackground);
3193
+ }
3194
+
3195
+ .monaco-editor .noModificationsOverlay {
3196
+ z-index: 1;
3197
+ background: var(--vscode-editor-background);
3198
+ display: flex;
3199
+ justify-content: center;
3200
+ align-items: center;
3201
+ }
3202
+
3203
+ .monaco-editor .diff-hidden-lines .center {
3204
+ background: var(--vscode-diffEditor-unchangedRegionBackground);
3205
+ color: var(--vscode-diffEditor-unchangedRegionForeground);
3206
+ overflow: hidden;
3207
+ display: block;
3208
+ text-overflow: ellipsis;
3209
+ white-space: nowrap;
3210
+ box-shadow: inset 0 -5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow), inset 0 5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow);
3211
+ height: 24px;
3212
+ }
3213
+
3214
+ .monaco-editor .diff-hidden-lines .center span.codicon {
3215
+ vertical-align: middle;
3216
+ }
3217
+
3218
+ .monaco-editor .diff-hidden-lines .center a:hover .codicon {
3219
+ cursor: pointer;
3220
+ color: var(--vscode-editorLink-activeForeground) !important;
3221
+ }
3222
+
3223
+ .monaco-editor .diff-hidden-lines div.breadcrumb-item {
3224
+ cursor: pointer;
3225
+ }
3226
+
3227
+ .monaco-editor .diff-hidden-lines div.breadcrumb-item:hover {
3228
+ color: var(--vscode-editorLink-activeForeground);
3229
+ }
3230
+
3231
+ .monaco-editor .movedOriginal, .monaco-editor .movedModified {
3232
+ border: 2px solid var(--vscode-diffEditor-move-border);
3233
+ }
3234
+
3235
+ .monaco-editor .movedOriginal.currentMove, .monaco-editor .movedModified.currentMove {
3236
+ border: 2px solid var(--vscode-diffEditor-moveActive-border);
3237
+ }
3238
+
3239
+ .monaco-diff-editor .moved-blocks-lines path.currentMove {
3240
+ stroke: var(--vscode-diffEditor-moveActive-border);
3241
+ }
3242
+
3243
+ .monaco-diff-editor .moved-blocks-lines path {
3244
+ pointer-events: visiblestroke;
3245
+ }
3246
+
3247
+ .monaco-diff-editor .moved-blocks-lines .arrow {
3248
+ fill: var(--vscode-diffEditor-move-border);
3249
+ }
3250
+
3251
+ .monaco-diff-editor .moved-blocks-lines .arrow.currentMove {
3252
+ fill: var(--vscode-diffEditor-moveActive-border);
3253
+ }
3254
+
3255
+ .monaco-diff-editor .moved-blocks-lines .arrow-rectangle {
3256
+ fill: var(--vscode-editor-background);
3257
+ }
3258
+
3259
+ .monaco-diff-editor .moved-blocks-lines {
3260
+ position: absolute;
3261
+ pointer-events: none;
3262
+ }
3263
+
3264
+ .monaco-diff-editor .moved-blocks-lines path {
3265
+ fill: none;
3266
+ stroke: var(--vscode-diffEditor-move-border);
3267
+ stroke-width: 2;
3268
+ }
3269
+
3270
+ .monaco-editor .char-delete.diff-range-empty {
3271
+ border-left: solid var(--vscode-diffEditor-removedTextBackground) 3px;
3272
+ margin-left: -1px;
3273
+ }
3274
+
3275
+ .monaco-editor .char-insert.diff-range-empty {
3276
+ border-left: solid var(--vscode-diffEditor-insertedTextBackground) 3px;
3277
+ }
3278
+
3279
+ .monaco-editor .fold-unchanged {
3280
+ cursor: pointer;
3281
+ }
3282
+
3283
+ .monaco-diff-editor .diff-moved-code-block {
3284
+ display: flex;
3285
+ justify-content: flex-end;
3286
+ margin-top: -4px;
3287
+ }
3288
+
3289
+ .monaco-diff-editor .diff-moved-code-block .action-bar .action-label.codicon {
3290
+ width: 12px;
3291
+ height: 12px;
3292
+ font-size: 12px;
3293
+ }
3294
+
3295
+ .monaco-diff-editor .diffOverview {
3296
+ z-index: 9;
3297
+ }
3298
+
3299
+ .monaco-diff-editor .diffOverview .diffViewport {
3300
+ z-index: 10;
3301
+ }
3302
+
3303
+ .monaco-diff-editor.vs .diffOverview {
3304
+ background: #00000008;
3305
+ }
3306
+
3307
+ .monaco-diff-editor.vs-dark .diffOverview {
3308
+ background: #ffffff03;
3309
+ }
3310
+
3311
+ .monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-light .scrollbar {
3312
+ background: none;
3313
+ }
3314
+
3315
+ .monaco-scrollable-element.modified-in-monaco-diff-editor .slider {
3316
+ z-index: 10;
3317
+ }
3318
+
3319
+ .modified-in-monaco-diff-editor .slider.active {
3320
+ background: #ababab66;
3321
+ }
3322
+
3323
+ .modified-in-monaco-diff-editor.hc-black .slider.active, .modified-in-monaco-diff-editor.hc-light .slider.active {
3324
+ background: none;
3325
+ }
3326
+
3327
+ .monaco-editor .insert-sign, .monaco-diff-editor .insert-sign, .monaco-editor .delete-sign, .monaco-diff-editor .delete-sign {
3328
+ align-items: center;
3329
+ opacity: .7 !important;
3330
+ display: flex !important;
3331
+ font-size: 11px !important;
3332
+ }
3333
+
3334
+ .monaco-editor.hc-black .insert-sign, .monaco-diff-editor.hc-black .insert-sign, .monaco-editor.hc-black .delete-sign, .monaco-diff-editor.hc-black .delete-sign, .monaco-editor.hc-light .insert-sign, .monaco-diff-editor.hc-light .insert-sign, .monaco-editor.hc-light .delete-sign, .monaco-diff-editor.hc-light .delete-sign {
3335
+ opacity: 1;
3336
+ }
3337
+
3338
+ .monaco-editor .inline-deleted-margin-view-zone, .monaco-editor .inline-added-margin-view-zone {
3339
+ text-align: right;
3340
+ }
3341
+
3342
+ .monaco-editor .arrow-revert-change {
3343
+ z-index: 10;
3344
+ position: absolute;
3345
+ }
3346
+
3347
+ .monaco-editor .arrow-revert-change:hover {
3348
+ cursor: pointer;
3349
+ }
3350
+
3351
+ .monaco-editor .view-zones .view-lines .view-line span {
3352
+ display: inline-block;
3353
+ }
3354
+
3355
+ .monaco-editor .margin-view-zones .lightbulb-glyph:hover {
3356
+ cursor: pointer;
3357
+ }
3358
+
3359
+ .monaco-editor .char-insert, .monaco-diff-editor .char-insert {
3360
+ background-color: var(--vscode-diffEditor-insertedTextBackground);
3361
+ }
3362
+
3363
+ .monaco-editor .line-insert, .monaco-diff-editor .line-insert {
3364
+ background-color: var(--vscode-diffEditor-insertedLineBackground, var(--vscode-diffEditor-insertedTextBackground));
3365
+ }
3366
+
3367
+ .monaco-editor .line-insert, .monaco-editor .char-insert {
3368
+ box-sizing: border-box;
3369
+ border: 1px solid var(--vscode-diffEditor-insertedTextBorder);
3370
+ }
3371
+
3372
+ .monaco-editor.hc-black .line-insert, .monaco-editor.hc-light .line-insert, .monaco-editor.hc-black .char-insert, .monaco-editor.hc-light .char-insert {
3373
+ border-style: dashed;
3374
+ }
3375
+
3376
+ .monaco-editor .line-delete, .monaco-editor .char-delete {
3377
+ box-sizing: border-box;
3378
+ border: 1px solid var(--vscode-diffEditor-removedTextBorder);
3379
+ }
3380
+
3381
+ .monaco-editor.hc-black .line-delete, .monaco-editor.hc-light .line-delete, .monaco-editor.hc-black .char-delete, .monaco-editor.hc-light .char-delete {
3382
+ border-style: dashed;
3383
+ }
3384
+
3385
+ .monaco-editor .inline-added-margin-view-zone, .monaco-editor .gutter-insert, .monaco-diff-editor .gutter-insert {
3386
+ background-color: var(--vscode-diffEditorGutter-insertedLineBackground, var(--vscode-diffEditor-insertedLineBackground), var(--vscode-diffEditor-insertedTextBackground));
3387
+ }
3388
+
3389
+ .monaco-editor .char-delete, .monaco-diff-editor .char-delete, .monaco-editor .inline-deleted-text {
3390
+ background-color: var(--vscode-diffEditor-removedTextBackground);
3391
+ }
3392
+
3393
+ .monaco-editor .inline-deleted-text {
3394
+ text-decoration: line-through;
3395
+ }
3396
+
3397
+ .monaco-editor .line-delete, .monaco-diff-editor .line-delete {
3398
+ background-color: var(--vscode-diffEditor-removedLineBackground, var(--vscode-diffEditor-removedTextBackground));
3399
+ }
3400
+
3401
+ .monaco-editor .inline-deleted-margin-view-zone, .monaco-editor .gutter-delete, .monaco-diff-editor .gutter-delete {
3402
+ background-color: var(--vscode-diffEditorGutter-removedLineBackground, var(--vscode-diffEditor-removedLineBackground), var(--vscode-diffEditor-removedTextBackground));
3403
+ }
3404
+
3405
+ .monaco-diff-editor.side-by-side .editor.modified {
3406
+ box-shadow: -6px 0 5px -5px var(--vscode-scrollbar-shadow);
3407
+ border-left: 1px solid var(--vscode-diffEditor-border);
3408
+ }
3409
+
3410
+ .monaco-diff-editor.side-by-side .editor.original {
3411
+ box-shadow: 6px 0 5px -5px var(--vscode-scrollbar-shadow);
3412
+ border-right: 1px solid var(--vscode-diffEditor-border);
3413
+ }
3414
+
3415
+ .monaco-diff-editor .diffViewport {
3416
+ background: var(--vscode-scrollbarSlider-background);
3417
+ }
3418
+
3419
+ .monaco-diff-editor .diffViewport:hover {
3420
+ background: var(--vscode-scrollbarSlider-hoverBackground);
3421
+ }
3422
+
3423
+ .monaco-diff-editor .diffViewport:active {
3424
+ background: var(--vscode-scrollbarSlider-activeBackground);
3425
+ }
3426
+
3427
+ .monaco-editor .diagonal-fill {
3428
+ background-image: linear-gradient(-45deg, var(--vscode-diffEditor-diagonalFill) 12.5%, #0000 12.5%, #0000 50%, var(--vscode-diffEditor-diagonalFill) 50%, var(--vscode-diffEditor-diagonalFill) 62.5%, #0000 62.5%, #0000 100%);
3429
+ background-size: 8px 8px;
3430
+ }
3431
+
3432
+ .monaco-diff-editor .gutter {
3433
+ position: relative;
3434
+ overflow: hidden;
3435
+ flex-grow: 0;
3436
+ flex-shrink: 0;
3437
+ }
3438
+
3439
+ .monaco-diff-editor .gutter > div {
3440
+ position: absolute;
3441
+ }
3442
+
3443
+ .monaco-diff-editor .gutter .gutterItem {
3444
+ opacity: 0;
3445
+ transition: opacity .7s;
3446
+ }
3447
+
3448
+ .monaco-diff-editor .gutter .gutterItem.showAlways {
3449
+ opacity: 1;
3450
+ transition: none;
3451
+ }
3452
+
3453
+ .monaco-diff-editor .gutter .gutterItem.noTransition {
3454
+ transition: none;
3455
+ }
3456
+
3457
+ .monaco-diff-editor .gutter:hover .gutterItem {
3458
+ opacity: 1;
3459
+ transition: opacity .1s ease-in-out;
3460
+ }
3461
+
3462
+ .monaco-diff-editor .gutter .gutterItem .background {
3463
+ position: absolute;
3464
+ border-left: 2px var(--vscode-menu-separatorBackground) solid;
3465
+ width: 1px;
3466
+ height: 100%;
3467
+ left: 50%;
3468
+ }
3469
+
3470
+ .monaco-diff-editor .gutter .gutterItem .buttons {
3471
+ position: absolute;
3472
+ display: flex;
3473
+ justify-content: center;
3474
+ align-items: center;
3475
+ width: 100%;
3476
+ }
3477
+
3478
+ .monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar {
3479
+ height: -moz-fit-content;
3480
+ height: fit-content;
3481
+ }
3482
+
3483
+ .monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar {
3484
+ line-height: 1;
3485
+ }
3486
+
3487
+ .monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container {
3488
+ background: var(--vscode-editorGutter-itemBackground);
3489
+ border-radius: 4px;
3490
+ width: -moz-fit-content;
3491
+ width: fit-content;
3492
+ }
3493
+
3494
+ .monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container .action-item:hover {
3495
+ background: var(--vscode-toolbar-hoverBackground);
3496
+ }
3497
+
3498
+ .monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container .action-item .action-label {
3499
+ color: var(--vscode-editorGutter-itemGlyphForeground);
3500
+ padding: 1px 2px;
3501
+ }
3502
+
3503
+ .monaco-diff-editor .diff-hidden-lines-compact {
3504
+ display: flex;
3505
+ height: 11px;
3506
+ }
3507
+
3508
+ .monaco-diff-editor .diff-hidden-lines-compact .line-left {
3509
+ border-top: 1px solid;
3510
+ border-color: var(--vscode-editorCodeLens-foreground);
3511
+ opacity: .5;
3512
+ width: 100%;
3513
+ height: 1px;
3514
+ margin: auto;
3515
+ }
3516
+
3517
+ .monaco-diff-editor .diff-hidden-lines-compact .line-right {
3518
+ border-top: 1px solid;
3519
+ border-color: var(--vscode-editorCodeLens-foreground);
3520
+ opacity: .5;
3521
+ width: 100%;
3522
+ height: 1px;
3523
+ margin: auto;
3524
+ }
3525
+
3526
+ .monaco-diff-editor .diff-hidden-lines-compact .line-left {
3527
+ width: 20px;
3528
+ }
3529
+
3530
+ .monaco-diff-editor .diff-hidden-lines-compact .text {
3531
+ color: var(--vscode-editorCodeLens-foreground);
3532
+ text-wrap: nowrap;
3533
+ margin: 0 4px;
3534
+ font-size: 11px;
3535
+ line-height: 11px;
3536
+ }
3537
+
3538
+ .monaco-editor .line-delete-selectable {
3539
+ user-select: text !important;
3540
+ -webkit-user-select: text !important;
3541
+ z-index: 1 !important;
3542
+ }
3543
+
3544
+ .line-delete-selectable .view-line {
3545
+ user-select: text !important;
3546
+ -webkit-user-select: text !important;
3547
+ }
3548
+
3549
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css */
3550
+ .monaco-editor .rendered-markdown kbd {
3551
+ background-color: var(--vscode-keybindingLabel-background);
3552
+ color: var(--vscode-keybindingLabel-foreground);
3553
+ border-style: solid;
3554
+ border-width: 1px;
3555
+ border-color: var(--vscode-keybindingLabel-border);
3556
+ border-bottom-color: var(--vscode-keybindingLabel-bottomBorder);
3557
+ box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow);
3558
+ vertical-align: middle;
3559
+ border-radius: 3px;
3560
+ padding: 1px 3px;
3561
+ }
3562
+
3563
+ .rendered-markdown li:has(input[type="checkbox"]) {
3564
+ list-style-type: none;
3565
+ }
3566
+
3567
+ /* ../../node_modules/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor/style.css */
3568
+ .monaco-component.multiDiffEditor {
3569
+ background: var(--vscode-multiDiffEditor-background);
3570
+ position: relative;
3571
+ overflow-y: hidden;
3572
+ width: 100%;
3573
+ height: 100%;
3574
+ }
3575
+
3576
+ .monaco-component.multiDiffEditor > div {
3577
+ position: absolute;
3578
+ width: 100%;
3579
+ height: 100%;
3580
+ top: 0;
3581
+ left: 0;
3582
+ }
3583
+
3584
+ .monaco-component.multiDiffEditor > div.placeholder {
3585
+ visibility: hidden;
3586
+ display: grid;
3587
+ place-content: center;
3588
+ place-items: center;
3589
+ }
3590
+
3591
+ .monaco-component.multiDiffEditor > div.placeholder.visible {
3592
+ visibility: visible;
3593
+ }
3594
+
3595
+ .monaco-component.multiDiffEditor .active {
3596
+ --vscode-multiDiffEditor-border: var(--vscode-focusBorder);
3597
+ }
3598
+
3599
+ .monaco-component.multiDiffEditor .multiDiffEntry {
3600
+ display: flex;
3601
+ overflow: hidden;
3602
+ flex-direction: column;
3603
+ flex: 1;
3604
+ }
3605
+
3606
+ .monaco-component.multiDiffEditor .multiDiffEntry .collapse-button {
3607
+ cursor: pointer;
3608
+ margin: 0 5px;
3609
+ }
3610
+
3611
+ .monaco-component.multiDiffEditor .multiDiffEntry .collapse-button a {
3612
+ display: block;
3613
+ }
3614
+
3615
+ .monaco-component.multiDiffEditor .multiDiffEntry .header {
3616
+ z-index: 1000;
3617
+ background: var(--vscode-editor-background);
3618
+ }
3619
+
3620
+ .monaco-component.multiDiffEditor .multiDiffEntry .header:not(.collapsed) .header-content {
3621
+ border-bottom: 1px solid var(--vscode-sideBarSectionHeader-border);
3622
+ }
3623
+
3624
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content {
3625
+ border-top: 1px solid var(--vscode-multiDiffEditor-border);
3626
+ display: flex;
3627
+ color: var(--vscode-foreground);
3628
+ background: var(--vscode-multiDiffEditor-headerBackground);
3629
+ align-items: center;
3630
+ margin: 8px 0 0;
3631
+ padding: 4px 5px;
3632
+ }
3633
+
3634
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content.shadow {
3635
+ box-shadow: var(--vscode-scrollbar-shadow) 0px 6px 6px -6px;
3636
+ }
3637
+
3638
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path {
3639
+ display: flex;
3640
+ flex: 1;
3641
+ min-width: 0;
3642
+ }
3643
+
3644
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .title {
3645
+ font-size: 14px;
3646
+ line-height: 22px;
3647
+ }
3648
+
3649
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .title.original {
3650
+ text-overflow: ellipsis;
3651
+ flex: 1;
3652
+ min-width: 0;
3653
+ }
3654
+
3655
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .status {
3656
+ opacity: .75;
3657
+ margin: 0 10px;
3658
+ font-weight: 600;
3659
+ line-height: 22px;
3660
+ }
3661
+
3662
+ .monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .actions {
3663
+ padding: 0 8px;
3664
+ }
3665
+
3666
+ .monaco-component.multiDiffEditor .multiDiffEntry .editorParent {
3667
+ display: flex;
3668
+ border-bottom: 1px solid var(--vscode-multiDiffEditor-border);
3669
+ overflow: hidden;
3670
+ flex-direction: column;
3671
+ flex: 1;
3672
+ }
3673
+
3674
+ .monaco-component.multiDiffEditor .multiDiffEntry .editorContainer {
3675
+ flex: 1;
3676
+ }