Don't show debug hint on stackframes

This commit is contained in:
Miguel Solorio 2019-12-12 11:42:46 -08:00
parent 0050cdc653
commit c7654067ee
2 changed files with 2 additions and 2 deletions

View file

@ -641,7 +641,7 @@ registerThemingParticipant((theme, collector) => {
.monaco-workbench .codicon-debug-breakpoint-function,
.monaco-workbench .codicon-debug-breakpoint-data,
.monaco-workbench .codicon-debug-breakpoint-unsupported,
.monaco-workbench .codicon-debug-hint:not([class*='codicon-debug-breakpoint']),
.monaco-workbench .codicon-debug-hint:not([class*='codicon-debug-breakpoint']):not([class*='codicon-debug-stackframe']),
.monaco-workbench .codicon-debug-breakpoint.codicon-debug-stackframe-focused::after,
.monaco-workbench .codicon-debug-breakpoint.codicon-debug-stackframe::after {
color: ${debugIconBreakpointColor} !important;

View file

@ -7,7 +7,7 @@
cursor: pointer;
}
.codicon-debug-hint:not([class*='codicon-debug-breakpoint']) {
.codicon-debug-hint:not([class*='codicon-debug-breakpoint']):not([class*='codicon-debug-stackframe']) {
opacity: 0.4 !important;
}