From 2fddc9cff1688bdb2a0933767c8b625ad9d86e38 Mon Sep 17 00:00:00 2001 From: Jonas Jensen Date: Thu, 14 May 2020 09:50:29 +0200 Subject: [PATCH] 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. --- extensions/ql-vscode/CHANGELOG.md | 4 ++++ extensions/ql-vscode/src/view/resultsView.css | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/extensions/ql-vscode/CHANGELOG.md b/extensions/ql-vscode/CHANGELOG.md index 5f0c95f1e82..560b012bfe7 100644 --- a/extensions/ql-vscode/CHANGELOG.md +++ b/extensions/ql-vscode/CHANGELOG.md @@ -1,5 +1,9 @@ # CodeQL for Visual Studio Code: Changelog +## 1.1.5 + +- Links in results are no longer underlined and monospaced. + ## 1.1.4 - 13 May 2020 - Add the ability to download and install databases archives from the internet. diff --git a/extensions/ql-vscode/src/view/resultsView.css b/extensions/ql-vscode/src/view/resultsView.css index 691cacba620..59fbc9857d3 100644 --- a/extensions/ql-vscode/src/view/resultsView.css +++ b/extensions/ql-vscode/src/view/resultsView.css @@ -75,7 +75,7 @@ } .vscode-codeql__result-table-location-link { - font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; + text-decoration: none; } select {