Skip to content

Commit 70f47d4

Browse files
fmalbpasero
authored andcommitted
set background-color explicitly instead of shorthand declaration, fixes microsoft#47752 (microsoft#47785)
1 parent 7c62e56 commit 70f47d4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/browser/parts/editor/tabsTitleControl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
925925
if (tabHoverBackground) {
926926
collector.addRule(`
927927
.monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title.active .tabs-container > .tab:hover {
928-
background: ${tabHoverBackground} !important;
928+
background-color: ${tabHoverBackground} !important;
929929
}
930930
`);
931931
}
@@ -934,7 +934,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
934934
if (tabUnfocusedHoverBackground) {
935935
collector.addRule(`
936936
.monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title.inactive .tabs-container > .tab:hover {
937-
background: ${tabUnfocusedHoverBackground} !important;
937+
background-color: ${tabUnfocusedHoverBackground} !important;
938938
}
939939
`);
940940
}

0 commit comments

Comments
 (0)