Path: blob/main/src/vs/sessions/browser/media/sidebarActionButton.css
13394 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.sidebar-action-list .actions-container {6gap: 4px;7}89.sidebar-action > .action-label {10/* Hide the default action-label rendered by ActionViewItem */11display: none;12}1314/* Shared styling for interactive sidebar action buttons (account widget, customization links, etc.) */15.sidebar-action-button {16display: flex;17align-items: center;18border: none;19padding: 4px 8px;20margin: 0;21font-size: 12px;22height: auto;23white-space: nowrap;24overflow: hidden;25text-overflow: ellipsis;26background: transparent;27color: var(--vscode-agentsPanel-foreground, var(--vscode-foreground));28width: 100%;29text-align: left;30justify-content: flex-start;31text-decoration: none;32border-radius: 4px;33cursor: pointer;34gap: 10px;35display: flex;36}3738.sidebar-action-button:hover {39background-color: var(--vscode-toolbar-hoverBackground);40}4142.sidebar-action-button.monaco-text-button:focus {43outline-offset: -1px !important;44}4546.sidebar-action-button.monaco-text-button .codicon {47margin: 0;48}495051