Issue reporter replace default outline over links, fixes #44818

This commit is contained in:
Rachel Macfarlane
2018-03-02 11:41:47 -08:00
parent 6f3575e264
commit dc1b18e739
2 changed files with 4 additions and 2 deletions

View File

@@ -160,7 +160,7 @@ export class IssueReporter extends Disposable {
}
if (styles.inputActiveBorder) {
content.push(`input[type='text']:focus, textarea:focus, select:focus, summary:focus, button:focus { border: 1px solid ${styles.inputActiveBorder}; outline-style: none; }`);
content.push(`input[type='text']:focus, textarea:focus, select:focus, summary:focus, button:focus, a:focus, .workbenchCommand:focus { border: 1px solid ${styles.inputActiveBorder}; outline-style: none; }`);
}
if (styles.textLinkColor) {

View File

@@ -206,6 +206,7 @@ summary {
border: 1px solid transparent;
padding: 0 10px;
margin-bottom: 5px;
cursor: pointer;
}
.validation-error {
@@ -250,8 +251,9 @@ input:disabled {
margin-top: .5em;
}
.workbenchCommand {
a, .workbenchCommand {
cursor: pointer;
border: 1px solid transparent;
}
.workbenchCommand:disabled {