Skip to content

Commit

Permalink
Apply text decoration underline when render (microsoft#175193)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt authored Feb 23, 2023
1 parent 4d247ba commit d0acdbf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/vs/platform/quickinput/browser/media/quickInput.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@

/* Links in descriptions & validations */
.quick-input-message a {
text-decoration: underline;
color: inherit;
}

Expand Down
1 change: 1 addition & 0 deletions src/vs/platform/quickinput/browser/quickInputUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export function renderQuickInputDescription(description: string, container: HTML
}

const anchor = dom.$('a', { href: node.href, title, tabIndex: tabIndex++ }, node.label);
anchor.style.textDecoration = 'underline';
const handleOpen = (e: unknown) => {
if (dom.isEventLike(e)) {
dom.EventHelper.stop(e, true);
Expand Down

0 comments on commit d0acdbf

Please sign in to comment.