debug: color record codicon in debug view the same color as stop

This commit is contained in:
Connor Peet 2020-06-23 12:09:20 -07:00
parent b02a4f7af5
commit 69f3921efa
No known key found for this signature in database
GPG key ID: CF8FD2EA0DBC61BD

View file

@ -364,7 +364,7 @@ registerThemingParticipant((theme, collector) => {
const debugIconStopColor = theme.getColor(debugIconStopForeground);
if (debugIconStopColor) {
collector.addRule(`.monaco-workbench .codicon-debug-stop { color: ${debugIconStopColor} !important; }`);
collector.addRule(`.monaco-workbench .codicon-debug-stop, .monaco-workbench .debug-view-content .codicon-record { color: ${debugIconStopColor} !important; }`);
}
const debugIconDisconnectColor = theme.getColor(debugIconDisconnectForeground);