Added Activity Bar Top Active Background Color (#207808)

Added color activity bar top active background #203036
This commit is contained in:
Benjamin Christopher Simmonds 2024-03-15 09:19:54 +01:00 committed by GitHub
parent b22f435d48
commit 7c49f4f7a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 0 deletions

View file

@ -16,6 +16,7 @@
"--vscode-activityBarTop-foreground",
"--vscode-activityBarTop-inactiveForeground",
"--vscode-activityBarTop-background",
"--vscode-activityBarTop-activeBackground",
"--vscode-badge-background",
"--vscode-badge-foreground",
"--vscode-banner-background",

View file

@ -270,6 +270,11 @@
width: calc(100% - 4px);
}
.monaco-workbench .pane-composite-part > .title > .composite-bar-container >.composite-bar > .monaco-action-bar .action-item.icon.checked,
.monaco-workbench .pane-composite-part > .header-or-footer > .composite-bar-container >.composite-bar > .monaco-action-bar .action-item.icon.checked {
background-color: var(--vscode-activityBarTop-activeBackground);
}
.monaco-workbench .pane-composite-part > .title > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item.checked .active-item-indicator:before,
.monaco-workbench .pane-composite-part > .title > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item:focus .active-item-indicator:before,
.monaco-workbench .pane-composite-part > .header-or-footer > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item.checked .active-item-indicator:before,

View file

@ -709,6 +709,13 @@ export const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor('activityBarTop.acti
hcLight: '#B5200D'
}, localize('activityBarTopActiveFocusBorder', "Focus border color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."));
export const ACTIVITY_BAR_TOP_ACTIVE_BACKGROUND = registerColor('activityBarTop.activeBackground', {
dark: null,
light: null,
hcDark: null,
hcLight: null
}, localize('activityBarTopActiveBackground', "Background color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."));
export const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor('activityBarTop.inactiveForeground', {
dark: transparent(ACTIVITY_BAR_TOP_FOREGROUND, 0.6),
light: transparent(ACTIVITY_BAR_TOP_FOREGROUND, 0.75),