Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/platform/actions/browser/menuEntryActionViewItem.css
3294 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
.monaco-action-bar .action-item.menu-entry .action-label.icon {
7
width: 16px;
8
height: 16px;
9
background-repeat: no-repeat;
10
background-position: 50%;
11
background-size: 16px;
12
}
13
14
.monaco-action-bar .action-item.menu-entry.text-only .action-label {
15
color: var(--vscode-descriptionForeground);
16
overflow: hidden;
17
border-radius: 2px;
18
}
19
20
.monaco-action-bar .action-item.menu-entry.text-only.use-comma:not(:last-of-type) .action-label::after {
21
content: ', ';
22
}
23
24
.monaco-action-bar .action-item.menu-entry.text-only + .action-item:not(.text-only) > .monaco-dropdown .action-label {
25
color: var(--vscode-descriptionForeground);
26
}
27
28
.monaco-dropdown-with-default {
29
display: flex !important;
30
flex-direction: row;
31
border-radius: 5px;
32
}
33
34
.monaco-dropdown-with-default > .action-container > .action-label {
35
margin-right: 0;
36
}
37
38
.monaco-dropdown-with-default > .action-container.menu-entry > .action-label.icon {
39
width: 16px;
40
height: 16px;
41
background-repeat: no-repeat;
42
background-position: 50%;
43
background-size: 16px;
44
}
45
46
.monaco-dropdown-with-default:hover {
47
background-color: var(--vscode-toolbar-hoverBackground);
48
}
49
50
.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
51
font-size: 12px;
52
padding-left: 0px;
53
padding-right: 0px;
54
line-height: 16px;
55
margin-left: -3px;
56
}
57
58
.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
59
display: block;
60
background-size: 16px;
61
background-position: center center;
62
background-repeat: no-repeat;
63
}
64
65