Skip to content

Commit d0acdbf

Browse files
Apply text decoration underline when render (microsoft#175193)
Fixes microsoft#174962
1 parent 4d247ba commit d0acdbf

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/vs/platform/quickinput/browser/media/quickInput.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@
142142

143143
/* Links in descriptions & validations */
144144
.quick-input-message a {
145-
text-decoration: underline;
146145
color: inherit;
147146
}
148147

src/vs/platform/quickinput/browser/quickInputUtils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export function renderQuickInputDescription(description: string, container: HTML
5656
}
5757

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

0 commit comments

Comments
 (0)