issue reporter styling fixes (#208340)

This commit is contained in:
Justin Chen 2024-03-21 15:15:50 -07:00 committed by GitHub
parent 9f1605bd09
commit 22b6f2fb6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 2 deletions

View file

@ -166,6 +166,7 @@ export class IssueReporter extends Disposable {
}
}
// TODO @justschen: After migration to Aux Window, switch to dedicated css.
private applyStyles(styles: IssueReporterStyles) {
const styleTag = document.createElement('style');
const content: string[] = [];

View file

@ -72,7 +72,7 @@ textarea {
width: auto;
padding: 4px 10px;
align-self: flex-end;
margin-bottom: 10px;
margin-bottom: 1em;
font-size: 13px;
}
@ -157,7 +157,8 @@ body {
padding-bottom: 2em;
display: flex;
flex-direction: column;
height: 100%;
min-height: 100%;
overflow: visible;
}
.description-section {
@ -213,6 +214,10 @@ select, input, textarea {
border-top: 0px !important;
}
#issue-reporter .system-info {
margin-bottom: 10px;
}
input[type="checkbox"] {
width: auto;
@ -364,6 +369,7 @@ a {
}
.issues-container > .issue > .issue-state {
display: flex;
width: 77px;
padding: 3px 6px;
margin-right: 5px;
@ -373,8 +379,13 @@ a {
}
.issues-container > .issue .label {
padding-top: 2px;
margin-left: 5px;
width: 44px;
text-overflow: ellipsis;
overflow: hidden;
}
.issues-container > .issue .issue-icon{
padding-top: 2px;
}