From 311adff0c9077aafe3f3db2571771750a28db9e6 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Tue, 24 Jan 2017 18:51:35 -0800 Subject: [PATCH] Add more contrast to dark theme current line indication in markdown preview fixes #19323 --- extensions/markdown/media/markdown.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/markdown/media/markdown.css b/extensions/markdown/media/markdown.css index 6eea22d4953..7c667fdcc01 100644 --- a/extensions/markdown/media/markdown.css +++ b/extensions/markdown/media/markdown.css @@ -43,11 +43,11 @@ body.showEditorSelection li.code-line:hover:before { } .vscode-dark.showEditorSelection .code-active-line:before { - border-left: 3px solid rgba(255, 255, 255, 0.25); + border-left: 3px solid rgba(255, 255, 255, 0.4); } .vscode-dark.showEditorSelection .code-line:hover:before { - border-left: 3px solid rgba(255, 255, 255, 0.50); + border-left: 3px solid rgba(255, 255, 255, 0.60); } .vscode-high-contrast.showEditorSelection .code-active-line:before { -- GitLab