From a7432116d14bb984016c2046ac2b9e06388b2dfc Mon Sep 17 00:00:00 2001 From: Federico Ponzi Date: Fri, 11 Oct 2024 18:21:09 +0100 Subject: [PATCH] Add colored background to highlightchanges to the state: removal, addition and update Signed-off-by: Federico Ponzi --- src/webview/checkResultView/errorTraceSection/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webview/checkResultView/errorTraceSection/index.css b/src/webview/checkResultView/errorTraceSection/index.css index 130472a..eb61819 100644 --- a/src/webview/checkResultView/errorTraceSection/index.css +++ b/src/webview/checkResultView/errorTraceSection/index.css @@ -102,10 +102,12 @@ } .value-A { + background-color: rgba(128, 255, 73, 0.1); text-decoration: underline var(--vscode-gitDecoration-addedResourceForeground); } .value-M { + background-color: rgba(245, 254, 145, 0.1); text-decoration: underline dotted var(--vscode-gitDecoration-modifiedResourceForeground); }