Skip to content

Commit 2c804a6

Browse files
Fix Tree Quick Pick sticky scroll background color mismatch (microsoft#259586)
* Initial plan * Fix Tree Quick Pick sticky scroll background color mismatch Co-authored-by: TylerLeonhardt <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: TylerLeonhardt <[email protected]>
1 parent 176b1db commit 2c804a6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/vs/platform/quickinput/browser/quickInputController.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,7 @@ export class QuickInputController extends Disposable {
881881
this.ui.container.style.border = widgetBorder ? `1px solid ${widgetBorder}` : '';
882882
this.ui.container.style.boxShadow = widgetShadow ? `0 0 8px 2px ${widgetShadow}` : '';
883883
this.ui.list.style(this.styles.list);
884+
this.ui.tree.tree.style(this.styles.list);
884885

885886
const content: string[] = [];
886887
if (this.styles.pickerGroup.pickerGroupBorder) {

src/vs/platform/quickinput/browser/quickInputService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ export class QuickInputService extends Themable implements IQuickInputService {
240240
listInactiveFocusBackground: quickInputListFocusBackground,
241241
listFocusOutline: activeContrastBorder,
242242
listInactiveFocusOutline: activeContrastBorder,
243+
treeStickyScrollBackground: quickInputBackground,
243244
}),
244245
pickerGroup: {
245246
pickerGroupBorder: asCssVariable(pickerGroupBorder),

0 commit comments

Comments
 (0)