@codingame/monaco-vscode-issue-service-override 20.1.0 → 20.2.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-issue-service-override",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - issue service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-89a82baf-8ded-5b2f-b8af-e5fbd72dc5ad-common": "20.
|
|
19
|
-
"@codingame/monaco-vscode-api": "20.
|
|
18
|
+
"@codingame/monaco-vscode-89a82baf-8ded-5b2f-b8af-e5fbd72dc5ad-common": "20.2.0",
|
|
19
|
+
"@codingame/monaco-vscode-api": "20.2.0"
|
|
20
20
|
},
|
|
21
21
|
"main": "index.js",
|
|
22
22
|
"module": "index.js",
|
|
@@ -1,42 +1,64 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
|
|
1
6
|
.web.issue-reporter-body {
|
|
2
7
|
position: absolute;
|
|
3
8
|
overflow-y: scroll;
|
|
4
9
|
}
|
|
10
|
+
|
|
5
11
|
.web.issue-reporter-body .monaco-workbench select{
|
|
6
12
|
-webkit-appearance: auto;
|
|
7
13
|
appearance: auto;
|
|
8
14
|
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Table
|
|
18
|
+
*/
|
|
19
|
+
|
|
9
20
|
.issue-reporter-body table {
|
|
10
21
|
width: 100%;
|
|
11
22
|
max-width: 100%;
|
|
12
23
|
background-color: transparent;
|
|
13
24
|
border-collapse: collapse;
|
|
14
25
|
}
|
|
26
|
+
|
|
15
27
|
.issue-reporter-body th {
|
|
16
28
|
vertical-align: bottom;
|
|
17
29
|
border-bottom: 1px solid;
|
|
18
30
|
padding: 5px;
|
|
19
31
|
text-align: inherit;
|
|
20
32
|
}
|
|
33
|
+
|
|
21
34
|
.issue-reporter-body td {
|
|
22
35
|
padding: 5px;
|
|
23
36
|
vertical-align: top;
|
|
24
37
|
}
|
|
38
|
+
|
|
25
39
|
.issue-reporter-body tr td:first-child {
|
|
26
40
|
width: 30%;
|
|
27
41
|
}
|
|
42
|
+
|
|
28
43
|
.issue-reporter-body label {
|
|
29
44
|
user-select: none;
|
|
30
45
|
}
|
|
46
|
+
|
|
31
47
|
.issue-reporter-body .block-settingsSearchResults-details {
|
|
32
48
|
padding-bottom: .5rem;
|
|
33
49
|
}
|
|
50
|
+
|
|
34
51
|
.issue-reporter-body .block-settingsSearchResults-details > div {
|
|
35
52
|
padding: .5rem .75rem;
|
|
36
53
|
}
|
|
54
|
+
|
|
37
55
|
.issue-reporter-body .section {
|
|
38
56
|
margin-bottom: .5em;
|
|
39
57
|
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Forms
|
|
61
|
+
*/
|
|
40
62
|
.issue-reporter-body input[type="text"],
|
|
41
63
|
.issue-reporter-body textarea {
|
|
42
64
|
display: block;
|
|
@@ -46,10 +68,16 @@
|
|
|
46
68
|
line-height: 1.5;
|
|
47
69
|
color: #495057;
|
|
48
70
|
}
|
|
71
|
+
|
|
49
72
|
.issue-reporter-body textarea {
|
|
50
73
|
overflow: auto;
|
|
51
74
|
resize: vertical;
|
|
52
75
|
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Button
|
|
79
|
+
*/
|
|
80
|
+
|
|
53
81
|
.issue-reporter-body .monaco-text-button {
|
|
54
82
|
display: block;
|
|
55
83
|
width: auto;
|
|
@@ -58,6 +86,7 @@
|
|
|
58
86
|
margin-bottom: 1em;
|
|
59
87
|
font-size: 13px;
|
|
60
88
|
}
|
|
89
|
+
|
|
61
90
|
.issue-reporter-body select {
|
|
62
91
|
height: calc(2.25rem + 2px);
|
|
63
92
|
display: inline-block;
|
|
@@ -67,79 +96,106 @@
|
|
|
67
96
|
color: #495057;
|
|
68
97
|
border: none;
|
|
69
98
|
}
|
|
99
|
+
|
|
70
100
|
.issue-reporter-body * {
|
|
71
101
|
box-sizing: border-box;
|
|
72
102
|
}
|
|
103
|
+
|
|
73
104
|
.issue-reporter-body .issue-reporter textarea,
|
|
74
105
|
.issue-reporter-body .issue-reporter input,
|
|
75
106
|
.issue-reporter-body .issue-reporter select {
|
|
76
107
|
font-family: inherit;
|
|
77
108
|
}
|
|
109
|
+
|
|
78
110
|
.issue-reporter-body html {
|
|
79
111
|
color: #CCCCCC;
|
|
80
112
|
height: 100%;
|
|
81
113
|
}
|
|
114
|
+
|
|
82
115
|
.issue-reporter-body .extension-caption .codicon-modifier-spin {
|
|
83
116
|
padding-bottom: 3px;
|
|
84
117
|
margin-left: 2px;
|
|
85
118
|
}
|
|
119
|
+
|
|
120
|
+
/* Font Families (with CJK support) */
|
|
121
|
+
|
|
86
122
|
.issue-reporter-body .mac.web {
|
|
87
123
|
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
|
88
124
|
}
|
|
125
|
+
|
|
89
126
|
.issue-reporter-body .mac.web:lang(zh-Hans) {
|
|
90
127
|
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", sans-serif;
|
|
91
128
|
}
|
|
129
|
+
|
|
92
130
|
.issue-reporter-body .mac.web:lang(zh-Hant) {
|
|
93
131
|
font-family: -apple-system, BlinkMacSystemFont, "PingFang TC", sans-serif;
|
|
94
132
|
}
|
|
133
|
+
|
|
95
134
|
.issue-reporter-body .mac.web:lang(ja) {
|
|
96
135
|
font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic Pro", sans-serif;
|
|
97
136
|
}
|
|
137
|
+
|
|
98
138
|
.issue-reporter-body .mac.web:lang(ko) {
|
|
99
139
|
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Nanum Gothic", "AppleGothic", sans-serif;
|
|
100
140
|
}
|
|
141
|
+
|
|
101
142
|
.issue-reporter-body .windows.web {
|
|
102
143
|
font-family: "Segoe WPC", "Segoe UI", sans-serif;
|
|
103
144
|
}
|
|
145
|
+
|
|
104
146
|
.issue-reporter-body .windows.web:lang(zh-Hans) {
|
|
105
147
|
font-family: "Segoe WPC", "Segoe UI", "Microsoft YaHei", sans-serif;
|
|
106
148
|
}
|
|
149
|
+
|
|
107
150
|
.issue-reporter-body .windows.web:lang(zh-Hant) {
|
|
108
151
|
font-family: "Segoe WPC", "Segoe UI", "Microsoft Jhenghei", sans-serif;
|
|
109
152
|
}
|
|
153
|
+
|
|
110
154
|
.issue-reporter-body .windows.web:lang(ja) {
|
|
111
155
|
font-family: "Segoe WPC", "Segoe UI", "Yu Gothic UI", "Meiryo UI", sans-serif;
|
|
112
156
|
}
|
|
157
|
+
|
|
113
158
|
.issue-reporter-body .windows.web:lang(ko) {
|
|
114
159
|
font-family: "Segoe WPC", "Segoe UI", "Malgun Gothic", "Dotom", sans-serif;
|
|
115
160
|
}
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
/* Linux: add `system-ui` as first font and not `Ubuntu` to allow other distribution pick their standard OS font */
|
|
116
164
|
.issue-reporter-body .linux.web {
|
|
117
165
|
font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
|
|
118
166
|
}
|
|
167
|
+
|
|
119
168
|
.issue-reporter-body .linux.web:lang(zh-Hans) {
|
|
120
169
|
font-family: system-ui, "Ubuntu", "Droid Sans", "Source Han Sans SC", "Source Han Sans CN", "Source Han Sans", sans-serif;
|
|
121
170
|
}
|
|
171
|
+
|
|
122
172
|
.issue-reporter-body .linux.web:lang(zh-Hant) {
|
|
123
173
|
font-family: system-ui, "Ubuntu", "Droid Sans", "Source Han Sans TC", "Source Han Sans TW", "Source Han Sans", sans-serif;
|
|
124
174
|
}
|
|
175
|
+
|
|
125
176
|
.issue-reporter-body .linux.web:lang(ja) {
|
|
126
177
|
font-family: system-ui, "Ubuntu", "Droid Sans", "Source Han Sans J", "Source Han Sans JP", "Source Han Sans", sans-serif;
|
|
127
178
|
}
|
|
179
|
+
|
|
128
180
|
.issue-reporter-body .linux.web:lang(ko) {
|
|
129
181
|
font-family: system-ui, "Ubuntu", "Droid Sans", "Source Han Sans K", "Source Han Sans JR", "Source Han Sans", "UnDotum", "FBaekmuk Gulim", sans-serif;
|
|
130
182
|
}
|
|
183
|
+
|
|
131
184
|
body.issue-reporter-body {
|
|
132
185
|
margin: 0;
|
|
133
186
|
overflow-y: auto;
|
|
134
187
|
height: 100%;
|
|
135
188
|
background-color: var(--vscode-editor-background)
|
|
136
189
|
}
|
|
190
|
+
|
|
137
191
|
.issue-reporter-body .hidden {
|
|
138
192
|
display: none;
|
|
139
193
|
}
|
|
194
|
+
|
|
140
195
|
.issue-reporter-body .block {
|
|
141
196
|
font-size: 12px;
|
|
142
197
|
}
|
|
198
|
+
|
|
143
199
|
.issue-reporter-body .block .block-info {
|
|
144
200
|
width: 100%;
|
|
145
201
|
font-size: 12px;
|
|
@@ -148,6 +204,7 @@ body.issue-reporter-body {
|
|
|
148
204
|
margin: 5px;
|
|
149
205
|
padding: 10px;
|
|
150
206
|
}
|
|
207
|
+
|
|
151
208
|
.issue-reporter-body #issue-reporter {
|
|
152
209
|
max-width: 85vw;
|
|
153
210
|
margin-left: auto;
|
|
@@ -158,55 +215,69 @@ body.issue-reporter-body {
|
|
|
158
215
|
flex-direction: column;
|
|
159
216
|
overflow: visible;
|
|
160
217
|
}
|
|
218
|
+
|
|
161
219
|
.issue-reporter-body .description-section {
|
|
162
220
|
flex-grow: 0;
|
|
163
221
|
display: flex;
|
|
164
222
|
flex-direction: column;
|
|
165
223
|
flex-shrink: 0;
|
|
166
224
|
}
|
|
225
|
+
|
|
167
226
|
.issue-reporter-body textarea {
|
|
168
227
|
flex-grow: 1;
|
|
169
228
|
height: 200px;
|
|
170
229
|
}
|
|
230
|
+
|
|
171
231
|
.issue-reporter-body .block-info-text {
|
|
172
232
|
display: flex;
|
|
173
233
|
flex-grow: 0;
|
|
174
234
|
flex-direction: column;
|
|
175
235
|
}
|
|
236
|
+
|
|
176
237
|
.issue-reporter-body #github-submit-btn {
|
|
177
238
|
flex-shrink: 0;
|
|
178
239
|
margin-left: auto;
|
|
179
240
|
margin-top: 10px;
|
|
180
241
|
margin-bottom: 10px;
|
|
181
242
|
}
|
|
243
|
+
|
|
182
244
|
.issue-reporter-body .two-col {
|
|
183
245
|
display: inline-block;
|
|
184
246
|
width: 49%;
|
|
185
247
|
}
|
|
248
|
+
|
|
186
249
|
.issue-reporter-body #vscode-version {
|
|
187
250
|
width: 90%;
|
|
188
251
|
}
|
|
252
|
+
|
|
189
253
|
.issue-reporter-body .issue-reporter .input-group {
|
|
190
254
|
margin-bottom: 1em;
|
|
191
255
|
font-size: 16px;
|
|
192
256
|
}
|
|
257
|
+
|
|
193
258
|
.issue-reporter-body #extension-selection {
|
|
194
259
|
margin-top: 1em;
|
|
195
260
|
}
|
|
261
|
+
|
|
196
262
|
.issue-reporter-body .issue-reporter select,
|
|
197
263
|
.issue-reporter-body .issue-reporter input,
|
|
198
264
|
.issue-reporter-body .issue-reporter textarea {
|
|
199
265
|
border: 1px solid transparent;
|
|
200
266
|
margin-top: 10px;
|
|
201
267
|
}
|
|
268
|
+
|
|
269
|
+
|
|
202
270
|
.issue-reporter-body .validation-error {
|
|
203
271
|
font-size: 12px;
|
|
204
272
|
padding: 10px;
|
|
205
273
|
border-top: 0px !important;
|
|
206
274
|
}
|
|
275
|
+
|
|
207
276
|
.issue-reporter-body .system-info {
|
|
208
277
|
margin-bottom: 10px;
|
|
209
278
|
}
|
|
279
|
+
|
|
280
|
+
|
|
210
281
|
.issue-reporter-body .issue-reporter input[type="checkbox"] {
|
|
211
282
|
width: auto;
|
|
212
283
|
display: inline-block;
|
|
@@ -214,57 +285,71 @@ body.issue-reporter-body {
|
|
|
214
285
|
vertical-align: middle;
|
|
215
286
|
cursor: pointer;
|
|
216
287
|
}
|
|
288
|
+
|
|
217
289
|
.issue-reporter-body .issue-reporter input:disabled {
|
|
218
290
|
opacity: 0.6;
|
|
219
291
|
}
|
|
292
|
+
|
|
220
293
|
.issue-reporter-body .list-title {
|
|
221
294
|
margin-top: 1em;
|
|
222
295
|
margin-left: 1em;
|
|
223
296
|
}
|
|
297
|
+
|
|
224
298
|
.issue-reporter-body .instructions {
|
|
225
299
|
font-size: 12px;
|
|
226
300
|
margin-top: .5em;
|
|
227
301
|
}
|
|
302
|
+
|
|
228
303
|
.issue-reporter-body a,
|
|
229
304
|
.issue-reporter-body .workbenchCommand {
|
|
230
305
|
cursor: pointer;
|
|
231
306
|
border: 1px solid transparent;
|
|
232
307
|
color: var(--vscode-textLink-foreground);
|
|
233
308
|
}
|
|
309
|
+
|
|
234
310
|
.issue-reporter-body .workbenchCommand:disabled {
|
|
235
311
|
color: #868e96;
|
|
236
312
|
cursor: default
|
|
237
313
|
}
|
|
314
|
+
|
|
238
315
|
.issue-reporter-body .block-extensions .block-info {
|
|
239
316
|
margin-bottom: 1.5em;
|
|
240
317
|
}
|
|
318
|
+
|
|
241
319
|
.issue-reporter-body .showInfo,
|
|
242
320
|
.issue-reporter-body .input-group a {
|
|
243
321
|
color: var(--vscode-textLink-foreground);
|
|
244
322
|
}
|
|
323
|
+
|
|
245
324
|
.issue-reporter-body .section .input-group .validation-error {
|
|
246
325
|
margin-left: 100px;
|
|
247
326
|
}
|
|
327
|
+
|
|
248
328
|
.issue-reporter-body .section .inline-form-control,
|
|
249
329
|
.issue-reporter-body .section .inline-label {
|
|
250
330
|
display: inline-block;
|
|
251
331
|
font-size: initial;
|
|
252
332
|
}
|
|
333
|
+
|
|
253
334
|
.issue-reporter-body .section .inline-label {
|
|
254
335
|
width: 95px;
|
|
255
336
|
}
|
|
337
|
+
|
|
256
338
|
.issue-reporter-body .section .inline-form-control,
|
|
257
339
|
.issue-reporter-body .section .input-group .validation-error {
|
|
258
340
|
width: calc(100% - 100px);
|
|
259
341
|
}
|
|
342
|
+
|
|
260
343
|
.issue-reporter-body .issue-reporter .inline-label,
|
|
261
344
|
.issue-reporter-body .issue-reporter #issue-description-label {
|
|
262
345
|
font-size: initial;
|
|
263
346
|
cursor: default;
|
|
264
347
|
}
|
|
348
|
+
|
|
265
349
|
.issue-reporter-body .monaco-workbench .issue-reporter label {
|
|
266
350
|
cursor: default;
|
|
267
351
|
}
|
|
352
|
+
|
|
268
353
|
.issue-reporter-body #issue-type,
|
|
269
354
|
.issue-reporter-body #issue-source,
|
|
270
355
|
.issue-reporter-body #extension-selector {
|
|
@@ -275,64 +360,80 @@ body.issue-reporter-body {
|
|
|
275
360
|
border-right: 6px solid transparent;
|
|
276
361
|
padding-left: 10px;
|
|
277
362
|
}
|
|
363
|
+
|
|
278
364
|
.issue-reporter-body #similar-issues {
|
|
279
365
|
margin-left: 15%;
|
|
280
366
|
display: block;
|
|
281
367
|
}
|
|
368
|
+
|
|
282
369
|
.issue-reporter-body #problem-source-help-text {
|
|
283
370
|
margin-left: calc(15% + 1em);
|
|
284
371
|
}
|
|
372
|
+
|
|
285
373
|
@media (max-width: 950px) {
|
|
286
374
|
.issue-reporter-body .section .inline-label {
|
|
287
375
|
width: 15%;
|
|
288
376
|
font-size: 16px;
|
|
289
377
|
}
|
|
378
|
+
|
|
290
379
|
.issue-reporter-body #problem-source-help-text {
|
|
291
380
|
margin-left: calc(15% + 1em);
|
|
292
381
|
}
|
|
382
|
+
|
|
293
383
|
.issue-reporter-body .section .inline-form-control,
|
|
294
384
|
.issue-reporter-body .section .input-group .validation-error {
|
|
295
385
|
width: calc(85% - 5px);
|
|
296
386
|
}
|
|
387
|
+
|
|
297
388
|
.issue-reporter-body .section .input-group .validation-error {
|
|
298
389
|
margin-left: calc(15% + 4px);
|
|
299
390
|
}
|
|
300
391
|
}
|
|
392
|
+
|
|
301
393
|
@media (max-width: 620px) {
|
|
302
394
|
.issue-reporter-body .section .inline-label {
|
|
303
395
|
display: none !important;
|
|
304
396
|
}
|
|
397
|
+
|
|
305
398
|
.issue-reporter-body #problem-source-help-text {
|
|
306
399
|
margin-left: 1em;
|
|
307
400
|
}
|
|
401
|
+
|
|
308
402
|
.issue-reporter-body .section .inline-form-control,
|
|
309
403
|
.issue-reporter-body .section .input-group .validation-error {
|
|
310
404
|
width: 100%;
|
|
311
405
|
}
|
|
406
|
+
|
|
312
407
|
.issue-reporter-body #similar-issues,
|
|
313
408
|
.issue-reporter-body .section .input-group .validation-error {
|
|
314
409
|
margin-left: 0;
|
|
315
410
|
}
|
|
316
411
|
}
|
|
412
|
+
|
|
317
413
|
.issue-reporter-body::-webkit-scrollbar {
|
|
318
414
|
width: 14px;
|
|
319
415
|
}
|
|
416
|
+
|
|
320
417
|
.issue-reporter-body::-webkit-scrollbar-thumb {
|
|
321
418
|
min-height: 20px;
|
|
322
419
|
}
|
|
420
|
+
|
|
323
421
|
.issue-reporter-body::-webkit-scrollbar-corner {
|
|
324
422
|
display: none;
|
|
325
423
|
}
|
|
424
|
+
|
|
326
425
|
.issue-reporter-body .issues-container {
|
|
327
426
|
margin-left: 1.5em;
|
|
328
427
|
margin-top: .5em;
|
|
329
428
|
max-height: 92px;
|
|
330
429
|
overflow-y: auto;
|
|
331
430
|
}
|
|
431
|
+
|
|
332
432
|
.issue-reporter-body .issues-container > .issue {
|
|
333
433
|
padding: 4px 0;
|
|
334
434
|
display: flex;
|
|
335
435
|
}
|
|
436
|
+
|
|
336
437
|
.issue-reporter-body .issues-container > .issue > .issue-link {
|
|
337
438
|
width: calc(100% - 82px);
|
|
338
439
|
overflow: hidden;
|
|
@@ -340,9 +441,11 @@ body.issue-reporter-body {
|
|
|
340
441
|
white-space: nowrap;
|
|
341
442
|
text-overflow: ellipsis;
|
|
342
443
|
}
|
|
444
|
+
|
|
343
445
|
.issue-reporter-body .issues-container > .issue > .issue-state .codicon {
|
|
344
446
|
width: 16px;
|
|
345
447
|
}
|
|
448
|
+
|
|
346
449
|
.issue-reporter-body .issues-container > .issue > .issue-state {
|
|
347
450
|
display: flex;
|
|
348
451
|
width: 77px;
|
|
@@ -352,6 +455,7 @@ body.issue-reporter-body {
|
|
|
352
455
|
background-color: #3c3c3c;
|
|
353
456
|
border-radius: .25rem;
|
|
354
457
|
}
|
|
458
|
+
|
|
355
459
|
.issue-reporter-body .issues-container > .issue .label {
|
|
356
460
|
padding-top: 2px;
|
|
357
461
|
margin-left: 5px;
|
|
@@ -359,12 +463,15 @@ body.issue-reporter-body {
|
|
|
359
463
|
text-overflow: ellipsis;
|
|
360
464
|
overflow: hidden;
|
|
361
465
|
}
|
|
466
|
+
|
|
362
467
|
.issue-reporter-body .issues-container > .issue .issue-icon {
|
|
363
468
|
padding-top: 2px;
|
|
364
469
|
}
|
|
470
|
+
|
|
365
471
|
.issue-reporter-body a {
|
|
366
472
|
color: var(--vscode-textLink-foreground);
|
|
367
473
|
}
|
|
474
|
+
|
|
368
475
|
.issue-reporter-body .issue-reporter input[type="text"],
|
|
369
476
|
.issue-reporter-body .issue-reporter textarea,
|
|
370
477
|
.issue-reporter-body .issue-reporter select,
|
|
@@ -373,15 +480,18 @@ body.issue-reporter-body {
|
|
|
373
480
|
background-color: var(--vscode-input-background);
|
|
374
481
|
color: var(--vscode-input-foreground);
|
|
375
482
|
}
|
|
483
|
+
|
|
376
484
|
.issue-reporter-body .monaco-workbench,
|
|
377
485
|
.issue-reporter-body::-webkit-scrollbar-track {
|
|
378
486
|
background-color: var(--vscode-editor-background) !important;
|
|
379
487
|
}
|
|
488
|
+
|
|
380
489
|
.issue-reporter-body .issue-reporter input[type="text"],
|
|
381
490
|
.issue-reporter-body .issue-reporter textarea,
|
|
382
491
|
.issue-reporter-body .issue-reporter select {
|
|
383
492
|
border: 1px solid var(--vscode-input-border)
|
|
384
493
|
}
|
|
494
|
+
|
|
385
495
|
.issue-reporter-body .issue-reporter input[type='text']:focus,
|
|
386
496
|
.issue-reporter-body .issue-reporter textarea:focus,
|
|
387
497
|
.issue-reporter-body .issue-reporter select:focus,
|
|
@@ -392,33 +502,42 @@ body.issue-reporter-body {
|
|
|
392
502
|
border: 1px solid var(--vscode-inputOption-activeBorder);
|
|
393
503
|
outline-style: none;
|
|
394
504
|
}
|
|
505
|
+
|
|
395
506
|
.issue-reporter-body .invalid-input,
|
|
396
507
|
.issue-reporter-body .invalid-input:focus,
|
|
397
508
|
.issue-reporter-body .validation-error {
|
|
398
509
|
border: 1px solid var(--vscode-inputValidation-errorBorder) !important
|
|
399
510
|
}
|
|
511
|
+
|
|
400
512
|
.issue-reporter-body .required-input {
|
|
401
513
|
color: var(--vscode-inputValidation-errorBorder)
|
|
402
514
|
}
|
|
515
|
+
|
|
403
516
|
.issue-reporter-body .validation-error {
|
|
404
517
|
background: var(--vscode-inputValidation-errorBackground);
|
|
405
518
|
color: var(--vscode-inputValidation-errorForeground)
|
|
406
519
|
}
|
|
520
|
+
|
|
407
521
|
.issue-reporter-body a,
|
|
408
522
|
.issue-reporter-body .workbenchCommand {
|
|
409
523
|
color: var(--vscode-textLink-foreground)
|
|
410
524
|
}
|
|
525
|
+
|
|
411
526
|
.issue-reporter-body a:hover,
|
|
412
527
|
.issue-reporter-body .workbenchCommand:hover {
|
|
413
528
|
color: var(--vscode-textLink-activeForeground)
|
|
414
529
|
}
|
|
530
|
+
|
|
415
531
|
.issue-reporter-body::-webkit-scrollbar-thumb:active {
|
|
416
532
|
background-color: var(--vscode-scrollbarSlider-activeBackground)
|
|
417
533
|
}
|
|
534
|
+
|
|
535
|
+
|
|
418
536
|
.issue-reporter-body::-webkit-scrollbar-thumb,
|
|
419
537
|
.issue-reporter-body::-webkit-scrollbar-thumb:hover {
|
|
420
538
|
background-color: var(--vscode-scrollbarSlider-hoverBackground)
|
|
421
539
|
}
|
|
540
|
+
|
|
422
541
|
.issue-reporter-update-banner {
|
|
423
542
|
color: var(--vscode-textLink-foreground);
|
|
424
543
|
color: var(--vscode-button-foreground);
|