Skip to content

Commit 22b6f2f

Browse files
authored
issue reporter styling fixes (microsoft#208340)
1 parent 9f1605b commit 22b6f2f

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

src/vs/code/electron-sandbox/issue/issueReporterService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ export class IssueReporter extends Disposable {
166166
}
167167
}
168168

169+
// TODO @justschen: After migration to Aux Window, switch to dedicated css.
169170
private applyStyles(styles: IssueReporterStyles) {
170171
const styleTag = document.createElement('style');
171172
const content: string[] = [];

src/vs/code/electron-sandbox/issue/media/issueReporter.css

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ textarea {
7272
width: auto;
7373
padding: 4px 10px;
7474
align-self: flex-end;
75-
margin-bottom: 10px;
75+
margin-bottom: 1em;
7676
font-size: 13px;
7777
}
7878

@@ -157,7 +157,8 @@ body {
157157
padding-bottom: 2em;
158158
display: flex;
159159
flex-direction: column;
160-
height: 100%;
160+
min-height: 100%;
161+
overflow: visible;
161162
}
162163

163164
.description-section {
@@ -213,6 +214,10 @@ select, input, textarea {
213214
border-top: 0px !important;
214215
}
215216

217+
#issue-reporter .system-info {
218+
margin-bottom: 10px;
219+
}
220+
216221

217222
input[type="checkbox"] {
218223
width: auto;
@@ -364,6 +369,7 @@ a {
364369
}
365370

366371
.issues-container > .issue > .issue-state {
372+
display: flex;
367373
width: 77px;
368374
padding: 3px 6px;
369375
margin-right: 5px;
@@ -373,8 +379,13 @@ a {
373379
}
374380

375381
.issues-container > .issue .label {
382+
padding-top: 2px;
376383
margin-left: 5px;
377384
width: 44px;
378385
text-overflow: ellipsis;
379386
overflow: hidden;
380387
}
388+
389+
.issues-container > .issue .issue-icon{
390+
padding-top: 2px;
391+
}

0 commit comments

Comments
 (0)