You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The workbench.colorCustomizations in user settings.json seems to only allow you to customize the scrollbar itself, not the track color behind it.
I tried using the "Custom CSS and JS Loader" extension, but the track is a canvas, meaning I cannot use CSS to modify the background color. I tried using JavaScript, but it does not seem to work:
var canvas = document.querySelector(".decorationsOverviewRuler");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "#FFFF00";
The text was updated successfully, but these errors were encountered:
The
workbench.colorCustomizations
in user settings.json seems to only allow you to customize the scrollbar itself, not the track color behind it.I tried using the "Custom CSS and JS Loader" extension, but the track is a canvas, meaning I cannot use CSS to modify the background color. I tried using JavaScript, but it does not seem to work:
The text was updated successfully, but these errors were encountered: