Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/sessions/browser/media/sidebarActionButton.css
13394 views
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
.sidebar-action-list .actions-container {
7
gap: 4px;
8
}
9
10
.sidebar-action > .action-label {
11
/* Hide the default action-label rendered by ActionViewItem */
12
display: none;
13
}
14
15
/* Shared styling for interactive sidebar action buttons (account widget, customization links, etc.) */
16
.sidebar-action-button {
17
display: flex;
18
align-items: center;
19
border: none;
20
padding: 4px 8px;
21
margin: 0;
22
font-size: 12px;
23
height: auto;
24
white-space: nowrap;
25
overflow: hidden;
26
text-overflow: ellipsis;
27
background: transparent;
28
color: var(--vscode-agentsPanel-foreground, var(--vscode-foreground));
29
width: 100%;
30
text-align: left;
31
justify-content: flex-start;
32
text-decoration: none;
33
border-radius: 4px;
34
cursor: pointer;
35
gap: 10px;
36
display: flex;
37
}
38
39
.sidebar-action-button:hover {
40
background-color: var(--vscode-toolbar-hoverBackground);
41
}
42
43
.sidebar-action-button.monaco-text-button:focus {
44
outline-offset: -1px !important;
45
}
46
47
.sidebar-action-button.monaco-text-button .codicon {
48
margin: 0;
49
}
50
51