Adjust debug toolbar shadow (fixes #110422)

This commit is contained in:
Miguel Solorio 2020-11-12 09:26:51 -08:00
parent 561501492a
commit 753a1c095a
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@
"tab.border": "#1e1f1c",
"tab.inactiveForeground": "#ccccc7", // needs to be bright so it's readable when another editor group is focused
"tab.lastPinnedBorder": "#414339",
"widget.shadow": "#000000",
"widget.shadow": "#00000098",
"progressBar.background": "#75715E",
"badge.background": "#75715E",
"badge.foreground": "#f8f8f2",

View file

@ -180,7 +180,7 @@ export class DebugToolBar extends Themable implements IWorkbenchContribution {
this.$el.style.backgroundColor = this.getColor(debugToolBarBackground) || '';
const widgetShadowColor = this.getColor(widgetShadow);
this.$el.style.boxShadow = widgetShadowColor ? `0 0 12px 8px ${widgetShadowColor}` : '';
this.$el.style.boxShadow = widgetShadowColor ? `0 0 8px 2px ${widgetShadowColor}` : '';
const contrastBorderColor = this.getColor(contrastBorder);
const borderColor = this.getColor(debugToolBarBorder);