Skip to content

Commit 04a1079

Browse files
authored
1 parent 8b889f1 commit 04a1079

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/browser/parts/titlebar/titlebarPart.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ registerThemingParticipant((theme, collector) => {
594594
const titlebarActiveFg = theme.getColor(TITLE_BAR_ACTIVE_FOREGROUND);
595595
if (titlebarActiveFg) {
596596
collector.addRule(`
597-
.monaco-workbench .part.titlebar > .window-controls-container .window-icon {
597+
.monaco-workbench .part.titlebar .window-controls-container .window-icon {
598598
color: ${titlebarActiveFg};
599599
}
600600
`);
@@ -603,7 +603,7 @@ registerThemingParticipant((theme, collector) => {
603603
const titlebarInactiveFg = theme.getColor(TITLE_BAR_INACTIVE_FOREGROUND);
604604
if (titlebarInactiveFg) {
605605
collector.addRule(`
606-
.monaco-workbench .part.titlebar.inactive > .window-controls-container .window-icon {
606+
.monaco-workbench .part.titlebar.inactive .window-controls-container .window-icon {
607607
color: ${titlebarInactiveFg};
608608
}
609609
`);

0 commit comments

Comments
 (0)