Use textLink.activeForeground in issue reporter, fixes #49263

This commit is contained in:
Rachel Macfarlane
2018-05-08 11:06:06 -07:00
parent 237f2a58d4
commit f5d46ad140
3 changed files with 7 additions and 1 deletions

View File

@@ -180,6 +180,10 @@ export class IssueReporter extends Disposable {
content.push(`a { color: ${styles.textLinkColor}; }`);
}
if (styles.textLinkActiveForeground) {
content.push(`a:hover, .workbenchCommand:hover { color: ${styles.textLinkActiveForeground}; }`);
}
if (styles.sliderBackgroundColor) {
content.push(`::-webkit-scrollbar-thumb { background-color: ${styles.sliderBackgroundColor}; }`);
}