Skip to content

Commit 7d206cd

Browse files
committed
Fix success terminal decoration color
This was happening because the rule was moved to CSS which made it appear before the general .codicon rule which means it had higher specificity. Fixes microsoft#166163
1 parent c0ae2f6 commit 7d206cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/terminal/browser/media/terminal.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -450,15 +450,15 @@
450450
top: 50%;
451451
}
452452

453-
.terminal-command-decoration:not(.default):hover {
453+
.monaco-workbench .terminal .terminal-command-decoration:not(.default):hover {
454454
cursor: pointer;
455455
border-radius: 5px;
456456
background-color: var(--vscode-toolbar-hoverBackground);
457457
}
458-
.terminal-command-decoration {
458+
.monaco-workbench .terminal .terminal-command-decoration {
459459
color: var(--vscode-terminalCommandDecoration-successBackground);
460460
}
461-
.terminal-command-decoration.error {
461+
.monaco-workbench .terminal .terminal-command-decoration.error {
462462
color: var(--vscode-terminalCommandDecoration-errorBackground);
463463
}
464464
.terminal-command-decoration.default {

0 commit comments

Comments
 (0)