Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/platform/actionWidget/browser/tabbedActionListWidget.css
13397 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
/* Tab bar rendered above the action list inside a TabbedActionListWidget
7
* popup. Styles are intentionally minimal so consumers can override via
8
* the `tabBarClassName` option. */
9
10
.action-widget .tabbed-action-list-tabbar {
11
display: flex;
12
align-items: center;
13
padding: 4px 4px 8px;
14
}
15
16
.action-widget .tabbed-action-list-tabbar .monaco-custom-radio {
17
width: 100%;
18
gap: 8px;
19
}
20
21
.action-widget .tabbed-action-list-tabbar .monaco-custom-radio > .monaco-button {
22
border: none;
23
border-radius: 4px;
24
}
25
26
.action-widget .tabbed-action-list-tabbar .monaco-custom-radio > .monaco-button:not(.active) {
27
color: var(--vscode-descriptionForeground);
28
}
29
30