1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6/* ---- Changes titlebar action spacing ---- */ 7 8/* Remove leftover spacing between local-session actions (Run, VS Code) and fixed toggles (Terminal, Changes). 9 * Targets the action following the VS Code icon (any Codicon.vscode variant). */ 10.agent-sessions-workbench .titlebar-session-actions-container .monaco-action-bar .actions-container > .action-item:has(.codicon[class*="codicon-vscode"]) + .action-item { 11 margin-left: 0; 12} 13 14