Fix button background color on focus in issue reporter

This commit is contained in:
Rachel Macfarlane
2018-06-07 16:56:55 -07:00
parent e0e11632a5
commit 7408d69ce3

View File

@@ -205,7 +205,7 @@ export class IssueReporter extends Disposable {
}
if (styles.buttonHoverBackground) {
content.push(`.monaco-text-button:hover, monaco-text-button:focus { background-color: ${styles.buttonHoverBackground} !important; }`);
content.push(`.monaco-text-button:hover, .monaco-text-button:focus { background-color: ${styles.buttonHoverBackground} !important; }`);
}
styleTag.innerHTML = content.join('\n');