We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b7a4d0 commit 841fa33Copy full SHA for 841fa33
plugin/src/main/java/io/snyk/eclipse/plugin/html/OssHtmlProvider.java
@@ -14,9 +14,8 @@ public static OssHtmlProvider getInstance() {
14
15
@Override
16
public String replaceCssVariables(String html) {
17
- html = super.replaceCssVariables(html);
18
- html = html.replace("var(--container-background-color)",
+ var returnValue = super.replaceCssVariables(html);
+ return returnValue.replace("var(--container-background-color)",
19
super.getColorAsHex("org.eclipse.ui.workbench.DARK_BACKGROUND", "#F0F0F0"));
20
- return html;
21
}
22
0 commit comments