No resizing of inputs in issue reporter, fixes #41992

This commit is contained in:
Rachel Macfarlane
2018-01-22 11:53:35 -08:00
parent 80991ce8a0
commit d7b6e7d7f6
2 changed files with 6 additions and 1 deletions

View File

@@ -95,7 +95,7 @@ export class IssueReporter extends Disposable {
if (styles.inputBorder) {
content.push(`input, textarea, select { border: 1px solid ${styles.inputBorder}; }`);
} else {
content.push(`input, textarea, select { border: none; }`);
content.push(`input, textarea, select { border: 1px solid transparent; }`);
}
if (styles.inputForeground) {