Skip to content

Commit bc07a5d

Browse files
authored
1 parent b3434bf commit bc07a5d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/vs/workbench/browser/parts/activitybar/activitybarActions.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,11 @@ export class ProfilesActivityActionViewItem extends MenuActivityActionViewItem {
363363
super(ManageProfilesSubMenu, action, contextMenuActionsProvider, (<IProfileActivity>action.activity).icon, colors, hoverOptions, themeService, hoverService, menuService, contextMenuService, contextKeyService, configurationService, environmentService, keybindingService);
364364
}
365365

366+
override render(container: HTMLElement): void {
367+
super.render(container);
368+
this.container.classList.add('profile-activity-item');
369+
}
370+
366371
protected override async resolveContextMenuActions(disposables: DisposableStore): Promise<IAction[]> {
367372
const actions = await super.resolveContextMenuActions(disposables);
368373

@@ -573,6 +578,10 @@ registerThemingParticipant((theme, collector) => {
573578
z-index: 1;
574579
}
575580
581+
.monaco-workbench .activitybar > .content :not(.monaco-menu) > .monaco-action-bar .action-item.profile-activity-item:before {
582+
top: -6px;
583+
}
584+
576585
.monaco-workbench .activitybar > .content :not(.monaco-menu) > .monaco-action-bar .action-item.active:before,
577586
.monaco-workbench .activitybar > .content :not(.monaco-menu) > .monaco-action-bar .action-item.active:hover:before,
578587
.monaco-workbench .activitybar > .content :not(.monaco-menu) > .monaco-action-bar .action-item.checked:before,

0 commit comments

Comments
 (0)