Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Aeschlimann <martinae@microsoft.com>2022-11-11 16:41:11 +0300
committerGitHub <noreply@github.com>2022-11-11 16:41:11 +0300
commit94d63201f2f53a02069b3345df02c83329086fc9 (patch)
treecda887dcff21ad04dfb98d37928ed95a94940069
parent86223f38b33c10f626297501995aa7ae243b3cde (diff)
Folded decoration is rendered garbled (#166114)
Escape the ellipses character used for folding. For #145897
-rw-r--r--src/vs/editor/contrib/folding/browser/folding.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/editor/contrib/folding/browser/folding.css b/src/vs/editor/contrib/folding/browser/folding.css
index 4f70d1097fe..98ae93d37ab 100644
--- a/src/vs/editor/contrib/folding/browser/folding.css
+++ b/src/vs/editor/contrib/folding/browser/folding.css
@@ -26,7 +26,7 @@
.monaco-editor .inline-folded:after {
color: grey;
margin: 0.1em 0.2em 0 0.2em;
- content: "⋯";
+ content: "\22EF"; /* ellipses unicode character */
display: inline;
line-height: 1em;
cursor: pointer;