Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.css
4779 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
.floating-menu-overlay-widget {
7
padding: 0px;
8
color: var(--vscode-button-foreground);
9
background-color: var(--vscode-button-background);
10
border-radius: 2px;
11
border: 1px solid var(--vscode-contrastBorder);
12
display: flex;
13
align-items: center;
14
z-index: 10;
15
box-shadow: 0 2px 8px var(--vscode-widget-shadow);
16
overflow: hidden;
17
18
.action-item > .action-label {
19
padding: 5px;
20
font-size: 12px;
21
border-radius: 2px;
22
}
23
24
.action-item > .action-label.codicon, .action-item .codicon {
25
color: var(--vscode-button-foreground);
26
}
27
28
.action-item > .action-label.codicon:not(.separator) {
29
padding-top: 6px;
30
padding-bottom: 6px;
31
}
32
33
.action-item:first-child > .action-label {
34
padding-left: 7px;
35
}
36
37
.action-item:last-child > .action-label {
38
padding-right: 7px;
39
}
40
41
.action-item .action-label.separator {
42
background-color: var(--vscode-button-separator);
43
}
44
}
45
46