Adjust debug toolbar shadow (fixes #110422)
parent
561501492a
commit
753a1c095a
|
@ -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",
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue