@theia/debug 1.24.0-next.66 → 1.24.0-next.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/browser/console/debug-console-session.d.ts.map +1 -1
- package/lib/browser/console/debug-console-session.js +4 -2
- package/lib/browser/console/debug-console-session.js.map +1 -1
- package/lib/browser/debug-frontend-application-contribution.d.ts.map +1 -1
- package/lib/browser/debug-frontend-application-contribution.js +117 -49
- package/lib/browser/debug-frontend-application-contribution.js.map +1 -1
- package/lib/browser/editor/debug-editor-model.js +4 -4
- package/lib/browser/editor/debug-editor-model.js.map +1 -1
- package/lib/browser/model/debug-breakpoint.js +1 -1
- package/lib/browser/model/debug-breakpoint.js.map +1 -1
- package/lib/browser/model/debug-function-breakpoint.js +1 -1
- package/lib/browser/model/debug-function-breakpoint.js.map +1 -1
- package/lib/browser/model/debug-source-breakpoint.js +4 -4
- package/lib/browser/model/debug-source-breakpoint.js.map +1 -1
- package/package.json +14 -14
- package/src/browser/console/debug-console-session.ts +4 -2
- package/src/browser/debug-frontend-application-contribution.ts +124 -46
- package/src/browser/editor/debug-editor-model.ts +4 -4
- package/src/browser/model/debug-breakpoint.tsx +1 -1
- package/src/browser/model/debug-function-breakpoint.tsx +1 -1
- package/src/browser/model/debug-source-breakpoint.tsx +4 -4
- package/src/browser/style/index.css +84 -116
- package/src/browser/style/breakpoint-conditional-disabled.svg +0 -4
- package/src/browser/style/breakpoint-conditional-unverified.svg +0 -4
- package/src/browser/style/breakpoint-conditional.svg +0 -4
- package/src/browser/style/breakpoint-disabled.svg +0 -4
- package/src/browser/style/breakpoint-function-disabled.svg +0 -6
- package/src/browser/style/breakpoint-function-unverified.svg +0 -6
- package/src/browser/style/breakpoint-function.svg +0 -6
- package/src/browser/style/breakpoint-hint.svg +0 -4
- package/src/browser/style/breakpoint-log-disabled.svg +0 -4
- package/src/browser/style/breakpoint-log-unverified.svg +0 -4
- package/src/browser/style/breakpoint-log.svg +0 -4
- package/src/browser/style/breakpoint-unsupported.svg +0 -4
- package/src/browser/style/breakpoint-unverified.svg +0 -4
- package/src/browser/style/breakpoint.svg +0 -4
- package/src/browser/style/breakpoints-activate-inverse.svg +0 -4
- package/src/browser/style/breakpoints-activate.svg +0 -4
- package/src/browser/style/configure-inverse.svg +0 -4
- package/src/browser/style/configure.svg +0 -4
- package/src/browser/style/continue-inverse.svg +0 -4
- package/src/browser/style/continue.svg +0 -4
- package/src/browser/style/current-and-breakpoint.svg +0 -4
- package/src/browser/style/current-arrow.svg +0 -4
- package/src/browser/style/debug-bright.useable.css +0 -13
- package/src/browser/style/debug-dark.svg +0 -4
- package/src/browser/style/debug-dark.useable.css +0 -13
- package/src/browser/style/pause-inverse.svg +0 -4
- package/src/browser/style/pause.svg +0 -4
- package/src/browser/style/repl-inverse.svg +0 -4
- package/src/browser/style/repl.svg +0 -4
- package/src/browser/style/restart-inverse.svg +0 -4
- package/src/browser/style/restart.svg +0 -4
- package/src/browser/style/stackframe-and-breakpoint.svg +0 -4
- package/src/browser/style/stackframe-arrow.svg +0 -4
- package/src/browser/style/start-inverse.svg +0 -4
- package/src/browser/style/start.svg +0 -4
- package/src/browser/style/step-into-inverse.svg +0 -4
- package/src/browser/style/step-into.svg +0 -4
- package/src/browser/style/step-out-inverse.svg +0 -4
- package/src/browser/style/step-out.svg +0 -4
- package/src/browser/style/step-over-inverse.svg +0 -4
- package/src/browser/style/step-over.svg +0 -4
- package/src/browser/style/stop-inverse.svg +0 -4
- package/src/browser/style/stop.svg +0 -4
|
@@ -150,40 +150,18 @@
|
|
|
150
150
|
opacity: 1;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
-
|
|
154
|
-
color: var(--theia-debugIcon-startForeground);
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.debug-toolbar .debug-action.codicon.codicon-debug-pause {
|
|
158
|
-
color: var(--theia-debugIcon-pauseForeground);
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.debug-toolbar .debug-action.codicon.codicon-debug-stop {
|
|
162
|
-
color: var(--theia-debugIcon-stopForeground);
|
|
163
|
-
}
|
|
153
|
+
/** Console */
|
|
164
154
|
|
|
165
|
-
|
|
166
|
-
color: var(--theia-
|
|
155
|
+
#debug-console .theia-console-info {
|
|
156
|
+
color: var(--theia-debugConsole-infoForeground) !important;
|
|
167
157
|
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
color: var(--theia-debugIcon-stepOverForeground);
|
|
158
|
+
#debug-console .theia-console-warning {
|
|
159
|
+
color: var(--theia-debugConsole-warningForeground) !important;
|
|
171
160
|
}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
color: var(--theia-debugIcon-stepIntoForeground);
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.debug-toolbar .debug-action.codicon.codicon-debug-step-out {
|
|
178
|
-
color: var(--theia-debugIcon-stepOutForeground);
|
|
161
|
+
#debug-console .theia-console-error {
|
|
162
|
+
color: var(--theia-debugConsole-errorForeground) !important;
|
|
179
163
|
}
|
|
180
164
|
|
|
181
|
-
.debug-toolbar .debug-action.codicon.codicon-debug-continue {
|
|
182
|
-
color: var(--theia-debugIcon-continueForeground);
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
/** Console */
|
|
186
|
-
|
|
187
165
|
.theia-debug-console-unavailable {
|
|
188
166
|
font-style: italic;
|
|
189
167
|
}
|
|
@@ -222,140 +200,130 @@
|
|
|
222
200
|
}
|
|
223
201
|
|
|
224
202
|
/** Editor **/
|
|
225
|
-
.monaco-editor .theia-debug-breakpoint-hint {
|
|
226
|
-
background: url('breakpoint-hint.svg') center center no-repeat;
|
|
227
|
-
}
|
|
228
203
|
|
|
229
204
|
.theia-debug-breakpoint-icon {
|
|
205
|
+
font-size: 19px !important;
|
|
230
206
|
width: 19px;
|
|
231
207
|
height: 19px;
|
|
232
208
|
min-width: 19px;
|
|
233
209
|
margin-left: 0px !important;
|
|
234
210
|
}
|
|
235
211
|
|
|
236
|
-
.
|
|
237
|
-
|
|
238
|
-
content: ' ';
|
|
239
|
-
width: 1.3em;
|
|
240
|
-
height: 1.3em;
|
|
241
|
-
display: inline-block;
|
|
242
|
-
vertical-align: text-bottom;
|
|
212
|
+
.codicon-debug-hint {
|
|
213
|
+
cursor: pointer;
|
|
243
214
|
}
|
|
244
215
|
|
|
245
|
-
.
|
|
246
|
-
|
|
216
|
+
.codicon-debug-breakpoint,
|
|
217
|
+
.codicon-debug-breakpoint-conditional,
|
|
218
|
+
.codicon-debug-breakpoint-log,
|
|
219
|
+
.codicon-debug-breakpoint-function,
|
|
220
|
+
.codicon-debug-breakpoint-data,
|
|
221
|
+
.codicon-debug-breakpoint-unsupported,
|
|
222
|
+
.codicon-debug-hint:not([class*='codicon-debug-breakpoint']):not([class*='codicon-debug-stackframe']),
|
|
223
|
+
.codicon-debug-breakpoint.codicon-debug-stackframe-focused::after,
|
|
224
|
+
.codicon-debug-breakpoint.codicon-debug-stackframe::after {
|
|
225
|
+
color: var(--theia-debugIcon-breakpointForeground) !important;
|
|
247
226
|
}
|
|
248
227
|
|
|
249
|
-
.
|
|
250
|
-
|
|
251
|
-
background: url('breakpoint.svg') center center no-repeat;
|
|
252
|
-
}
|
|
253
|
-
.theia-debug-breakpoint-disabled,
|
|
254
|
-
.monaco-editor .theia-debug-breakpoint-column.theia-debug-breakpoint-disabled-column {
|
|
255
|
-
background: url('breakpoint-disabled.svg') center center no-repeat;
|
|
256
|
-
}
|
|
257
|
-
.theia-debug-breakpoint-unverified,
|
|
258
|
-
.monaco-editor .theia-debug-breakpoint-column.theia-debug-breakpoint-unverified-column {
|
|
259
|
-
background: url('breakpoint-unverified.svg') center center no-repeat;
|
|
260
|
-
}
|
|
261
|
-
.theia-debug-breakpoint-unsupported,
|
|
262
|
-
.monaco-editor .theia-debug-breakpoint-column.theia-debug-breakpoint-unsupported-column {
|
|
263
|
-
background: url('breakpoint-unsupported.svg') center center no-repeat;
|
|
228
|
+
.codicon[class*='-disabled'] {
|
|
229
|
+
color: var(--theia-debugIcon-breakpointDisabledForeground) !important;
|
|
264
230
|
}
|
|
265
231
|
|
|
266
|
-
.
|
|
267
|
-
|
|
268
|
-
background: url('breakpoint-conditional.svg') center center no-repeat;
|
|
269
|
-
}
|
|
270
|
-
.theia-debug-conditional-breakpoint-disabled,
|
|
271
|
-
.monaco-editor .theia-debug-breakpoint-column.theia-debug-conditional-breakpoint-disabled-column {
|
|
272
|
-
background: url('breakpoint-conditional-disabled.svg') center center no-repeat;
|
|
273
|
-
}
|
|
274
|
-
.theia-debug-conditional-breakpoint-unverified,
|
|
275
|
-
.monaco-editor .theia-debug-breakpoint-column.theia-debug-conditional-breakpoint-unverified-column {
|
|
276
|
-
background: url('breakpoint-conditional-unverified.svg') center center no-repeat;
|
|
232
|
+
.codicon[class*='-unverified'] {
|
|
233
|
+
color: var(--theia-debugIcon-breakpointUnverifiedForeground) !important;
|
|
277
234
|
}
|
|
278
235
|
|
|
279
|
-
.
|
|
280
|
-
.monaco-editor .theia-debug-
|
|
281
|
-
|
|
236
|
+
.codicon-debug-stackframe,
|
|
237
|
+
.monaco-editor .theia-debug-top-stack-frame-column::before {
|
|
238
|
+
color: var(--theia-debugIcon-breakpointCurrentStackframeForeground) !important;
|
|
282
239
|
}
|
|
283
|
-
|
|
284
|
-
.
|
|
285
|
-
|
|
240
|
+
|
|
241
|
+
.codicon-debug-stackframe-focused {
|
|
242
|
+
color: var(--theia-debugIcon-breakpointStackframeForeground) !important;
|
|
286
243
|
}
|
|
287
|
-
|
|
288
|
-
.
|
|
289
|
-
|
|
244
|
+
|
|
245
|
+
.codicon-debug-breakpoint.codicon-debug-stackframe-focused::after,
|
|
246
|
+
.codicon-debug-breakpoint.codicon-debug-stackframe::after {
|
|
247
|
+
content: '\eb8a';
|
|
248
|
+
position: absolute;
|
|
290
249
|
}
|
|
291
250
|
|
|
292
|
-
.theia-debug-
|
|
293
|
-
|
|
251
|
+
.monaco-editor .theia-debug-breakpoint-column::before {
|
|
252
|
+
height: .9em;
|
|
253
|
+
display: inline-flex;
|
|
254
|
+
vertical-align: middle;
|
|
294
255
|
}
|
|
295
|
-
|
|
296
|
-
|
|
256
|
+
|
|
257
|
+
.monaco-editor .theia-debug-top-stack-frame-column::before {
|
|
258
|
+
content: ' ';
|
|
259
|
+
width: 0.9em;
|
|
260
|
+
display: inline-flex;
|
|
261
|
+
vertical-align: middle;
|
|
262
|
+
margin-top: -1px; /* TODO @misolori: figure out a way to not use negative margin for alignment */
|
|
297
263
|
}
|
|
298
|
-
|
|
299
|
-
|
|
264
|
+
|
|
265
|
+
.monaco-editor .theia-debug-top-stack-frame-column {
|
|
266
|
+
display: inline-flex;
|
|
267
|
+
vertical-align: middle;
|
|
300
268
|
}
|
|
301
269
|
|
|
302
|
-
.monaco-editor .theia-debug-top-stack-frame {
|
|
303
|
-
|
|
270
|
+
.monaco-editor .theia-debug-top-stack-frame-column::before {
|
|
271
|
+
content: '\eb8b';
|
|
272
|
+
font: normal normal normal 16px/1 codicon;
|
|
273
|
+
text-rendering: auto;
|
|
274
|
+
-webkit-font-smoothing: antialiased;
|
|
275
|
+
-moz-osx-font-smoothing: grayscale;
|
|
276
|
+
margin-left: 0;
|
|
277
|
+
margin-right: 4px;
|
|
304
278
|
}
|
|
305
|
-
|
|
306
|
-
.
|
|
307
|
-
|
|
279
|
+
|
|
280
|
+
.codicon-debug-hint:not([class*='codicon-debug-breakpoint']):not([class*='codicon-debug-stackframe']) {
|
|
281
|
+
opacity: 0.4 !important;
|
|
308
282
|
}
|
|
283
|
+
|
|
309
284
|
.monaco-editor .view-overlays .theia-debug-top-stack-frame-line {
|
|
310
285
|
background: var(--theia-editor-stackFrameHighlightBackground);
|
|
311
286
|
}
|
|
312
287
|
|
|
313
|
-
.monaco-editor .theia-debug-focused-stack-frame {
|
|
314
|
-
background: url('stackframe-arrow.svg') center center no-repeat;
|
|
315
|
-
}
|
|
316
|
-
.monaco-editor .theia-debug-focused-stack-frame.theia-debug-breakpoint {
|
|
317
|
-
background: url('stackframe-and-breakpoint.svg') center center no-repeat;
|
|
318
|
-
}
|
|
319
288
|
.monaco-editor .view-overlays .theia-debug-focused-stack-frame-line {
|
|
320
289
|
background: var(--theia-editor-focusedStackFrameHighlightBackground);
|
|
321
290
|
}
|
|
322
291
|
|
|
323
292
|
/** Toolbars */
|
|
324
293
|
|
|
325
|
-
.
|
|
326
|
-
|
|
294
|
+
.codicon-debug-start {
|
|
295
|
+
color: var(--theia-debugIcon-startForeground) !important;
|
|
327
296
|
}
|
|
328
|
-
.
|
|
329
|
-
|
|
297
|
+
.codicon-debug-pause {
|
|
298
|
+
color: var(--theia-debugIcon-pauseForeground) !important;
|
|
330
299
|
}
|
|
331
300
|
|
|
332
|
-
.
|
|
333
|
-
|
|
334
|
-
}
|
|
335
|
-
.theia-debug-stop {
|
|
336
|
-
background: var(--theia-debug-stop) center center no-repeat;
|
|
301
|
+
.codicon-debug-stop {
|
|
302
|
+
color: var(--theia-debugIcon-stopForeground) !important;
|
|
337
303
|
}
|
|
338
|
-
.
|
|
339
|
-
|
|
304
|
+
.codicon-debug-disconnect {
|
|
305
|
+
color: var(--theia-debugIcon-disconnectForeground) !important;
|
|
340
306
|
}
|
|
341
|
-
.
|
|
342
|
-
|
|
307
|
+
.codicon-debug-restart,
|
|
308
|
+
.codicon-debug-restart-frame {
|
|
309
|
+
color: var(--theia-debugIcon-restartForeground) !important;
|
|
343
310
|
}
|
|
344
|
-
.
|
|
345
|
-
|
|
311
|
+
.codicon-debug-step-over {
|
|
312
|
+
color: var(--theia-debugIcon-stepOverForeground) !important;
|
|
346
313
|
}
|
|
347
|
-
.
|
|
348
|
-
|
|
314
|
+
.codicon-debug-step-into {
|
|
315
|
+
color: var(--theia-debugIcon-stepIntoForeground) !important;
|
|
349
316
|
}
|
|
350
|
-
.
|
|
351
|
-
|
|
317
|
+
.codicon-debug-step-out {
|
|
318
|
+
color: var(--theia-debugIcon-stepOutForeground) !important;
|
|
352
319
|
}
|
|
353
|
-
.
|
|
354
|
-
|
|
320
|
+
.codicon-debug-continue,
|
|
321
|
+
.codicon-debug-reverse-continue {
|
|
322
|
+
color: var(--theia-debugIcon-continueForeground) !important;
|
|
355
323
|
}
|
|
356
324
|
|
|
357
|
-
.
|
|
358
|
-
|
|
325
|
+
.codicon-debug-step-back {
|
|
326
|
+
color: var(--theia-debugIcon-stepBackForeground) !important;
|
|
359
327
|
}
|
|
360
328
|
|
|
361
329
|
/** Hover */
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1,.icon-vs-out{fill:#f6f6f6;}.cls-1{fill-opacity:0;}.icon-disabled-grey{fill:#848484;}.icon-white{fill:#fff;}</style></defs><title>breakpoint-conditional-disabled</title><g id="canvas"><path class="cls-1" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.8,8A4.8,4.8,0,1,1,8,3.2,4.806,4.806,0,0,1,12.8,8Z"/></g><g id="iconBg"><path class="icon-disabled-grey" d="M11.8,8A3.8,3.8,0,1,1,8,4.2,3.8,3.8,0,0,1,11.8,8Z"/><path class="icon-white" d="M10.1,6.7v.8H5.9V6.7ZM5.9,9.2h4.2V8.4H5.9Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-disabled-grey{fill:#848484;}</style></defs><title>breakpoint-conditional-unverified</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.632,8A4.632,4.632,0,1,1,8,3.368,4.638,4.638,0,0,1,12.632,8Z"/></g><g id="iconBg"><path class="icon-disabled-grey" d="M6.526,8.421H9.474v.842H6.526ZM11.789,8A3.789,3.789,0,1,1,8,4.211,3.788,3.788,0,0,1,11.789,8Zm-1,0A2.789,2.789,0,1,0,8,10.79,2.793,2.793,0,0,0,10.789,8ZM6.526,7.579H9.474V6.737H6.526Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1,.icon-vs-out{fill:#f6f6f6;}.cls-1{fill-opacity:0;}.icon-vs-red{fill:#e51400;}.icon-white{fill:#fff;}</style></defs><title>breakpoint-conditional</title><g id="canvas"><path class="cls-1" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.8,8A4.8,4.8,0,1,1,8,3.2,4.806,4.806,0,0,1,12.8,8Z"/></g><g id="iconBg"><path class="icon-vs-red" d="M11.8,8A3.8,3.8,0,1,1,8,4.2,3.8,3.8,0,0,1,11.8,8Z"/><path class="icon-white" d="M10.1,6.7v.8H5.9V6.7ZM5.9,9.2h4.2V8.4H5.9Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-disabled-grey{fill:#848484;}</style></defs><title>breakpoint-disabled</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.632,8A4.632,4.632,0,1,1,8,3.368,4.638,4.638,0,0,1,12.632,8Z"/></g><g id="iconBg"><path class="icon-disabled-grey" d="M11.789,8A3.789,3.789,0,1,1,8,4.211,3.788,3.788,0,0,1,11.789,8Z"/></g></svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2019 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
-
<path d="M8 4L12 10.9048H4L8 4Z" fill="#848484"/>
|
|
6
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2019 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
-
<path d="M10.923 10.375H5.07699L8 5.25973L10.923 10.375Z" stroke="#848484" stroke-width="1.25"/>
|
|
6
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2019 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
-
<path d="M8 4L12 10.9048H4L8 4Z" fill="#E51400"/>
|
|
6
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.cls-1{fill:#e51400;opacity:0.4;}</style></defs><title>breakpoint-hint</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.632,8A4.632,4.632,0,1,1,8,3.368,4.638,4.638,0,0,1,12.632,8Z"/></g><g id="iconBg"><path class="cls-1" d="M11.789,8A3.789,3.789,0,1,1,8,4.211,3.788,3.788,0,0,1,11.789,8Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-disabled-grey{fill:#848484;}</style></defs><title>breakpoint-log-disabled</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.414,8,8,13.414,2.586,8,8,2.586Z"/></g><g id="iconBg"><path class="icon-disabled-grey" d="M12,8,8,12,4,8,8,4Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-disabled-grey{fill:#848484;}</style></defs><title>breakpoint-log-unverified</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.664,8,8,13.664,2.336,8,8,2.336Z"/></g><g id="iconBg"><path class="icon-disabled-grey" d="M8,3.75,3.75,8,8,12.25,12.25,8ZM5.518,8,8,5.518,10.482,8,8,10.482Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-red{fill:#e51400;}</style></defs><title>breakpoint-log</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.414,8,8,13.414,2.586,8,8,2.586Z"/></g><g id="iconBg"><path class="icon-vs-red" d="M12,8,8,12,4,8,8,4Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-red{fill:#e51400;}.icon-white{fill:#fff;}</style></defs><title>breakpoint-unsupported</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.632,8A4.632,4.632,0,1,1,8,3.368,4.638,4.638,0,0,1,12.632,8Z"/></g><g id="iconBg"><path class="icon-vs-red" d="M11.789,8A3.789,3.789,0,1,1,8,4.211,3.788,3.788,0,0,1,11.789,8Z"/><path class="icon-white" d="M7.5,9.5h1v1h-1Zm0-4v3h1v-3Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-disabled-grey{fill:#848484;}</style></defs><title>breakpoint-unverified</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.632,8A4.632,4.632,0,1,1,8,3.368,4.638,4.638,0,0,1,12.632,8Z"/></g><g id="iconBg"><path class="icon-disabled-grey" d="M8,4.211A3.789,3.789,0,1,0,11.79,8,3.788,3.788,0,0,0,8,4.211ZM8,10.29A2.29,2.29,0,1,1,10.29,8,2.292,2.292,0,0,1,8,10.29Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-red{fill:#e51400;}</style></defs><title>breakpoint</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M12.632,8A4.632,4.632,0,1,1,8,3.368,4.638,4.638,0,0,1,12.632,8Z"/></g><g id="iconBg"><path class="icon-vs-red" d="M11.789,8A3.789,3.789,0,1,1,8,4.211,3.788,3.788,0,0,1,11.789,8Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#c5c5c5;}</style></defs><title>breakpoints-activate</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M16,5.5A5.536,5.536,0,0,1,11,11a5.536,5.536,0,0,1-5.5,5A5.549,5.549,0,0,1,0,10.5,5.465,5.465,0,0,1,5,5a5.512,5.512,0,0,1,11,.5Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M15,5.5A4.395,4.395,0,0,1,11,10a2.957,2.957,0,0,0-.2-1A3.565,3.565,0,0,0,14,5.5a3.507,3.507,0,0,0-7-.3A3.552,3.552,0,0,0,6,5a4.622,4.622,0,0,1,4.5-4A4.481,4.481,0,0,1,15,5.5ZM5.5,6A4.5,4.5,0,1,0,10,10.5,4.5,4.5,0,0,0,5.5,6Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#424242;}</style></defs><title>breakpoints-activate</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M16,5.5A5.536,5.536,0,0,1,11,11a5.536,5.536,0,0,1-5.5,5A5.549,5.549,0,0,1,0,10.5,5.465,5.465,0,0,1,5,5a5.512,5.512,0,0,1,11,.5Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M15,5.5A4.395,4.395,0,0,1,11,10a2.957,2.957,0,0,0-.2-1A3.565,3.565,0,0,0,14,5.5a3.507,3.507,0,0,0-7-.3A3.552,3.552,0,0,0,6,5a4.622,4.622,0,0,1,4.5-4A4.481,4.481,0,0,1,15,5.5ZM5.5,6A4.5,4.5,0,1,0,10,10.5,4.5,4.5,0,0,0,5.5,6Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#c5c5c5;}</style></defs><title>configure</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M16,10.015l-2.238.372,1.318,1.847L12.233,15.08l-1.847-1.318L10.013,16H5.986l-.373-2.237L3.767,15.08.919,12.233l1.319-1.847L0,10.013V5.986l2.238-.373L.919,3.767,3.768.919,5.613,2.238,5.986,0h4.028l.372,2.238L12.233.919,15.08,3.768,13.762,5.613,16,5.986Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M12.876,9.521,15,9.167V6.834L12.879,6.48a5.12,5.12,0,0,0-.354-.854l1.25-1.75-1.65-1.65L10.373,3.477c-.137-.072-.262-.159-.408-.219s-.3-.087-.444-.133L9.167,1H6.834L6.48,3.121a5.118,5.118,0,0,0-.854.354l-1.75-1.25-1.65,1.65L3.477,5.627c-.072.137-.159.262-.219.408s-.087.3-.133.444L1,6.833V9.166l2.121.354a5.122,5.122,0,0,0,.354.854l-1.25,1.75,1.65,1.65,1.752-1.252c.137.072.262.159.408.22s.3.087.444.133L6.833,15H9.166l.354-2.121a5.121,5.121,0,0,0,.854-.354l1.75,1.25,1.65-1.65-1.252-1.752c.072-.137.159-.263.219-.409S12.83,9.669,12.876,9.521ZM8,10.212A2.212,2.212,0,1,1,10.212,8,2.212,2.212,0,0,1,8,10.212Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#424242;}</style></defs><title>configure</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M16,10.015l-2.238.372,1.318,1.847L12.233,15.08l-1.847-1.318L10.013,16H5.986l-.373-2.237L3.767,15.08.919,12.233l1.319-1.847L0,10.013V5.986l2.238-.373L.919,3.767,3.768.919,5.613,2.238,5.986,0h4.028l.372,2.238L12.233.919,15.08,3.768,13.762,5.613,16,5.986Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M12.876,9.521,15,9.167V6.834L12.879,6.48a5.12,5.12,0,0,0-.354-.854l1.25-1.75-1.65-1.65L10.373,3.477c-.137-.072-.262-.159-.408-.219s-.3-.087-.444-.133L9.167,1H6.834L6.48,3.121a5.118,5.118,0,0,0-.854.354l-1.75-1.25-1.65,1.65L3.477,5.627c-.072.137-.159.262-.219.408s-.087.3-.133.444L1,6.833V9.166l2.121.354a5.122,5.122,0,0,0,.354.854l-1.25,1.75,1.65,1.65,1.752-1.252c.137.072.262.159.408.22s.3.087.444.133L6.833,15H9.166l.354-2.121a5.121,5.121,0,0,0,.854-.354l1.75,1.25,1.65-1.65-1.252-1.752c.072-.137.159-.263.219-.409S12.83,9.669,12.876,9.521ZM8,10.212A2.212,2.212,0,1,1,10.212,8,2.212,2.212,0,0,1,8,10.212Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-action-blue{fill:#75beff;}</style></defs><title>continue</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M15.64,8l-7.8,6H2V2H7.84Z"/></g><g id="iconBg"><path class="icon-vs-action-blue" d="M3,3H5V13H3ZM7.5,3V13L14,8Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-action-blue{fill:#00539c;}</style></defs><title>continue</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M15.64,8l-7.8,6H2V2H7.84Z"/></g><g id="iconBg"><path class="icon-vs-action-blue" d="M3,3H5V13H3ZM7.5,3V13L14,8Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-yellow{fill:#fc0;}.icon-vs-red{fill:#e51400;}</style></defs><title>current-and-breakpoint</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.829,8,9.454,13H4V3H9.454Z"/></g><g id="iconBg"><path class="icon-vs-yellow" d="M12.5,8,9,12H5V4H9Z"/><path class="icon-vs-red" d="M10.5,8A2.5,2.5,0,1,1,8,5.5,2.5,2.5,0,0,1,10.5,8Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-yellow{fill:#fc0;}</style></defs><title>current-arrow</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.829,8,9.454,13H4V3H9.454Z"/></g><g id="iconBg"><path class="icon-vs-yellow" d="M12.5,8,9,12H5V4H9Z"/></g></svg>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--theia-debug-start: url('start.svg');
|
|
3
|
-
--theia-debug-stop: url('stop.svg');
|
|
4
|
-
--theia-debug-restart: url('restart.svg');
|
|
5
|
-
--theia-debug-pause: url('pause.svg');
|
|
6
|
-
--theia-debug-continue: url('continue.svg');
|
|
7
|
-
--theia-debug-step-over: url('step-over.svg');
|
|
8
|
-
--theia-debug-step-into: url('step-into.svg');
|
|
9
|
-
--theia-debug-step-out: url('step-out.svg');
|
|
10
|
-
--theia-debug-configure: url('configure.svg');
|
|
11
|
-
--theia-debug-repl: url('repl.svg');
|
|
12
|
-
--breakpoints-activate-url: url('breakpoints-activate.svg');
|
|
13
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2019 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg width="28" height="28" viewBox="0 0 28 28" fill="#F6F6F6" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M15.1673 18.0687V23.0247C15.1673 23.5637 15.2723 24.5 14.7315 24.5H12.8328V23.3327H14V19.6122L13.7988 19.4022C13.0604 20.0803 12.1008 20.4669 11.0986 20.49C10.0964 20.5132 9.11994 20.1714 8.351 19.5282C7 18.1737 7.13826 16.3327 8.60475 14H4.66726V15.1672H3.50001V13.2685C3.50001 12.7277 4.43626 12.8327 4.97526 12.8327H9.76326L15.1673 18.0687ZM11.6673 5.83275H10.5V4.66725H12.775C13.3123 4.66725 14 4.9245 14 5.4635V9.366L14.8593 10.3862C14.927 9.83979 15.1906 9.33644 15.6013 8.96958C16.0119 8.60271 16.5416 8.39723 17.0923 8.39125C17.2298 8.37945 17.3684 8.39492 17.5 8.43675V5.83275H18.6673V8.88825C18.703 8.99154 18.7618 9.08536 18.8391 9.16265C18.9164 9.23995 19.0102 9.29871 19.1135 9.3345H22.1673V10.5H19.5615C19.593 10.5 19.6105 10.675 19.6105 10.85C19.6058 11.4034 19.4011 11.9365 19.0341 12.3508C18.6671 12.7651 18.1626 13.0326 17.6138 13.104L18.634 14H22.5383C23.0773 14 23.3345 14.6807 23.3345 15.225V17.5H22.1673V16.3327H19.2273L11.6673 8.98275V5.83275ZM14 0C11.2311 0 8.52431 0.821086 6.22202 2.35943C3.91973 3.89776 2.12532 6.08426 1.06569 8.64243C0.00606593 11.2006 -0.271181 14.0155 0.269012 16.7313C0.809205 19.447 2.14258 21.9416 4.10051 23.8995C6.05845 25.8574 8.55301 27.1908 11.2687 27.731C13.9845 28.2712 16.7994 27.9939 19.3576 26.9343C21.9157 25.8747 24.1022 24.0803 25.6406 21.778C27.1789 19.4757 28 16.7689 28 14C28 10.287 26.525 6.72601 23.8995 4.1005C21.274 1.475 17.713 0 14 0V0ZM25.6673 14C25.6692 16.6908 24.7364 19.2988 23.0283 21.378L6.622 4.97175C8.33036 3.57269 10.4009 2.68755 12.5927 2.41935C14.7845 2.15115 17.0074 2.51091 19.0027 3.45676C20.998 4.40262 22.6836 5.89567 23.8635 7.76217C25.0433 9.62867 25.6689 11.7919 25.6673 14ZM2.33276 14C2.33066 11.3091 3.26351 8.70111 4.97176 6.622L21.378 23.03C19.6693 24.4284 17.5987 25.313 15.407 25.5807C13.2153 25.8485 10.9926 25.4884 8.99754 24.5425C7.00244 23.5965 5.31693 22.1036 4.13708 20.2373C2.95722 18.3709 2.33152 16.208 2.33276 14Z" fill="white"/></g><defs><clipPath id="clip0"><rect width="28" height="28" fill="#F6F6F6"/></clipPath></defs></svg>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--theia-debug-start: url('start-inverse.svg');
|
|
3
|
-
--theia-debug-stop: url('stop-inverse.svg');
|
|
4
|
-
--theia-debug-restart: url('restart-inverse.svg');
|
|
5
|
-
--theia-debug-pause: url('pause-inverse.svg');
|
|
6
|
-
--theia-debug-continue: url('continue-inverse.svg');
|
|
7
|
-
--theia-debug-step-over: url('step-over-inverse.svg');
|
|
8
|
-
--theia-debug-step-into: url('step-into-inverse.svg');
|
|
9
|
-
--theia-debug-step-out: url('step-out-inverse.svg');
|
|
10
|
-
--theia-debug-configure: url('configure-inverse.svg');
|
|
11
|
-
--theia-debug-repl: url('repl-inverse.svg');
|
|
12
|
-
--breakpoints-activate-url: url('breakpoints-activate-inverse.svg');
|
|
13
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-action-blue{fill:#75beff;}</style></defs><title>pause</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13,2V14H8.5V2ZM3,14H7.5V2H3Z"/></g><g id="iconBg"><path class="icon-vs-action-blue" d="M4,3H6.5V13H4ZM9.5,3V13H12V3Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-action-blue{fill:#00539c;}</style></defs><title>pause</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13,2V14H8.5V2ZM3,14H7.5V2H3Z"/></g><g id="iconBg"><path class="icon-vs-action-blue" d="M4,3H6.5V13H4ZM9.5,3V13H12V3Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#c5c5c5;}</style></defs><title>repl</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M16,2V14H0V2Z"/></g><g id="iconBg"><path id="iconBg-2" data-name="iconBg" class="icon-vs-bg" d="M1,3V13H15V3Zm13,9H2V4H14ZM7.5,8,4.875,10.75,4,9.833,5.75,8,4,6.167l.875-.917Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#424242;}</style></defs><title>repl</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M16,2V14H0V2Z"/></g><g id="iconBg"><path id="iconBg-2" data-name="iconBg" class="icon-vs-bg" d="M1,3V13H15V3Zm13,9H2V4H14ZM7.5,8,4.875,10.75,4,9.833,5.75,8,4,6.167l.875-.917Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><style>.st0{fill:#252526;fill-opacity:0}.st1{display:none}.st2{display:inline;fill:#252526}.st3{fill:#89d185}</style><title>restart</title><path class="st0" d="M16 0v16H0V0h16z" id="canvas"/><g id="outline" class="st1" style="display: none;"><path class="st2" d="M8.5 1C6.9 1 5.3 1.5 4 2.5V1H0v8h3.1L1 9.6l.3 1c1.1 4 5.3 6.3 9.3 5.2s6.3-5.3 5.2-9.3C14.8 3.2 11.9 1 8.5 1zm0 11c-1.6 0-2.9-1-3.4-2.5L5 9h3V5h.5C10.4 5 12 6.6 12 8.5S10.4 12 8.5 12z"/></g><path class="st3" d="M15 8c0 3.6-2.9 6.5-6.5 6.5-2.9 0-5.5-1.9-6.3-4.7l1.9-.5c.7 2.4 3.2 3.8 5.6 3.1 2.4-.7 3.8-3.2 3.1-5.6S9.7 3 7.3 3.7c-1 .3-1.9.9-2.5 1.8H7v2H1v-6h2v3.1c1.9-3 5.9-4 8.9-2.1C13.8 3.7 15 5.7 15 8z" id="iconBg"/></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><style>.st0{fill:#f6f6f6;fill-opacity:0}.st1{display:none}.st2{display:inline;fill:#f6f6f6}.st3{fill:#388a34}</style><title>restart</title><path class="st0" d="M16 0v16H0V0h16z" id="canvas"/><g id="outline" class="st1" style="display: none;"><path class="st2" d="M8.5 1C6.9 1 5.3 1.5 4 2.5V1H0v8h3.1L1 9.6l.3 1c1.1 4 5.3 6.3 9.3 5.2s6.3-5.3 5.2-9.3C14.8 3.2 11.9 1 8.5 1zm0 11c-1.6 0-2.9-1-3.4-2.5L5 9h3V5h.5C10.4 5 12 6.6 12 8.5S10.4 12 8.5 12z"/></g><path class="st3" d="M15 8c0 3.6-2.9 6.5-6.5 6.5-2.9 0-5.5-1.9-6.3-4.7l1.9-.5c.7 2.4 3.2 3.8 5.6 3.1 2.4-.7 3.8-3.2 3.1-5.6S9.7 3 7.3 3.7c-1 .3-1.9.9-2.5 1.8H7v2H1v-6h2v3.1c1.9-3 5.9-4 8.9-2.1C13.8 3.7 15 5.7 15 8z" id="iconBg"/></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.cls-1{fill:#9cce9c;}.icon-vs-red{fill:#e51400;}</style></defs><title>stackframe-and-breakpoint</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.829,8,9.454,13H4V3H9.454Z"/></g><g id="iconBg"><path class="cls-1" d="M12.5,8,9,12H5V4H9Z"/><path class="icon-vs-red" d="M10.5,8A2.5,2.5,0,1,1,8,5.5,2.5,2.5,0,0,1,10.5,8Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.cls-1{fill:#9cce9c;}</style></defs><title>stackframe-arrow</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M13.829,8,9.454,13H4V3H9.454Z"/></g><g id="iconBg"><path class="cls-1" d="M12.5,8,9,12H5V4H9Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-action-green{fill:#89d185;}</style></defs><title>continue</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M14.334,8,3.667,16H3V0h.667Z"/></g><g id="iconBg"><path class="icon-vs-action-green" d="M4,1.5v13L12.667,8,4,1.5Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-action-green{fill:#388a34;}</style></defs><title>continue</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M14.334,8,3.667,16H3V0h.667Z"/></g><g id="iconBg"><path class="icon-vs-action-green" d="M4,1.5v13L12.667,8,4,1.5Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#c5c5c5;}.icon-vs-action-blue{fill:#75beff;}</style></defs><title>step-into</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M11,13a3,3,0,1,1-4.375-2.651L2.556,6.28,5.03,3.806l.97.97V0h4V4.775l.97-.97L13.444,6.28,9.375,10.349A2.991,2.991,0,0,1,11,13Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M8,11a2,2,0,1,1-2,2A2,2,0,0,1,8,11Z"/></g><g id="colorAction"><path class="icon-vs-action-blue" d="M12.03,6.28,8,10.311,3.97,6.28,5.03,5.22,7,7.189V1H9V7.189l1.97-1.97Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#424242;}.icon-vs-action-blue{fill:#00539c;}</style></defs><title>step-into</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M11,13a3,3,0,1,1-4.375-2.651L2.556,6.28,5.03,3.806l.97.97V0h4V4.775l.97-.97L13.444,6.28,9.375,10.349A2.991,2.991,0,0,1,11,13Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M8,11a2,2,0,1,1-2,2A2,2,0,0,1,8,11Z"/></g><g id="colorAction"><path class="icon-vs-action-blue" d="M12.03,6.28,8,10.311,3.97,6.28,5.03,5.22,7,7.189V1H9V7.189l1.97-1.97Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#c5c5c5;}.icon-vs-action-blue{fill:#75beff;}</style></defs><title>step-out</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,16H0V0H16Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M10,10.78a3,3,0,1,1-4,0V6.225l-.97.97L2.556,4.72,7.275,0H8.725l4.72,4.72L10.97,7.194,10,6.225Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M8,11a2,2,0,1,1-2,2A2,2,0,0,1,8,11Z"/></g><g id="colorAction"><path class="icon-vs-action-blue" d="M3.97,4.72,8,.689l4.03,4.03L10.97,5.78,9,3.811V10H7V3.811L5.03,5.78Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#424242;}.icon-vs-action-blue{fill:#00539c;}</style></defs><title>step-out</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,16H0V0H16Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M10,10.78a3,3,0,1,1-4,0V6.225l-.97.97L2.556,4.72,7.275,0H8.725l4.72,4.72L10.97,7.194,10,6.225Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M8,11a2,2,0,1,1-2,2A2,2,0,0,1,8,11Z"/></g><g id="colorAction"><path class="icon-vs-action-blue" d="M3.97,4.72,8,.689l4.03,4.03L10.97,5.78,9,3.811V10H7V3.811L5.03,5.78Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#252526;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#c5c5c5;}.icon-vs-action-blue{fill:#75beff;}</style></defs><title>step-over</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M11,13a3,3,0,1,1-3-3A3,3,0,0,1,11,13ZM12,1V2.527A7.466,7.466,0,0,0,.028,7.923L0,8.293V9H3.945l.1-.888A3.475,3.475,0,0,1,8,5.036V9h8V1Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M10,13a2,2,0,1,1-2-2A2,2,0,0,1,10,13Z"/></g><g id="colorAction"><path class="icon-vs-action-blue" d="M15,2V8H9V6h2.237A4.481,4.481,0,0,0,3.051,8H1.025A6.482,6.482,0,0,1,13,5.069V2Z"/></g></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!--Copyright (c) Microsoft Corporation. All rights reserved.-->
|
|
2
|
-
<!--Copyright (C) 2018 TypeFox and others.-->
|
|
3
|
-
<!--Licensed under the MIT License. See License.txt in the project root for license information.-->
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.icon-canvas-transparent,.icon-vs-out{fill:#f6f6f6;}.icon-canvas-transparent{opacity:0;}.icon-vs-bg{fill:#424242;}.icon-vs-action-blue{fill:#00539c;}</style></defs><title>step-over</title><g id="canvas"><path class="icon-canvas-transparent" d="M16,0V16H0V0Z"/></g><g id="outline" style="display: none;"><path class="icon-vs-out" d="M11,13a3,3,0,1,1-3-3A3,3,0,0,1,11,13ZM12,1V2.527A7.466,7.466,0,0,0,.028,7.923L0,8.293V9H3.945l.1-.888A3.475,3.475,0,0,1,8,5.036V9h8V1Z"/></g><g id="iconBg"><path class="icon-vs-bg" d="M10,13a2,2,0,1,1-2-2A2,2,0,0,1,10,13Z"/></g><g id="colorAction"><path class="icon-vs-action-blue" d="M15,2V8H9V6h2.237A4.481,4.481,0,0,0,3.051,8H1.025A6.482,6.482,0,0,1,13,5.069V2Z"/></g></svg>
|