From 8a03f1f7bf5cfc0660caccb646be755fa4ab381b Mon Sep 17 00:00:00 2001 From: Zdroba <72391375+DariusZdroba@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:59:33 +0200 Subject: [PATCH] chore: add css changes needed for new ls data-flow (#564) * chore: add css changes needed for new ls data-flow * chore: remove unnecessary css * theme specific background image --- media/views/snykCode/suggestion/suggestionLS.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media/views/snykCode/suggestion/suggestionLS.scss b/media/views/snykCode/suggestion/suggestionLS.scss index 3173b442e..a09e67dd9 100644 --- a/media/views/snykCode/suggestion/suggestionLS.scss +++ b/media/views/snykCode/suggestion/suggestionLS.scss @@ -1,6 +1,11 @@ @import '../../common/webview'; - +.vscode-dark .data-flow-number{ + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075)); +} +.vscode-light .data-flow-number{ + background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)); +} .data-flow-text { font-family: "Courier New", Courier, monospace; }