Skip to content

Commit 2fddc9c

Browse files
committed
Make links variable-width without underline
These are two independent changes. - The monospace font used in links made the text larger so that less text could fit on the screen. It also suggested that all link text was an code snippet, which it isn't. The advantage of a fixed-width font, vertical alignment, was not put to any use. - Underlining of links made it almost impossible to distinguish a space from an underscore.
1 parent 11d9bdc commit 2fddc9c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL for Visual Studio Code: Changelog
22

3+
## 1.1.5
4+
5+
- Links in results are no longer underlined and monospaced.
6+
37
## 1.1.4 - 13 May 2020
48

59
- Add the ability to download and install databases archives from the internet.

extensions/ql-vscode/src/view/resultsView.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
}
7676

7777
.vscode-codeql__result-table-location-link {
78-
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
78+
text-decoration: none;
7979
}
8080

8181
select {

0 commit comments

Comments
 (0)