Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/dropdown/dropdown.css
3296 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-dropdown {
7
height: 100%;
8
padding: 0;
9
}
10
11
.monaco-dropdown > .dropdown-label {
12
cursor: pointer;
13
height: 100%;
14
display: flex;
15
align-items: center;
16
justify-content: center;
17
}
18
19
.monaco-dropdown > .dropdown-label > .action-label.disabled {
20
cursor: default;
21
}
22
23
.monaco-dropdown-with-primary {
24
display: flex !important;
25
flex-direction: row;
26
border-radius: 5px;
27
}
28
29
.monaco-dropdown-with-primary > .action-container > .action-label {
30
margin-right: 0;
31
}
32
33
.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*='codicon-'] {
34
font-size: 12px;
35
padding-left: 0px;
36
padding-right: 0px;
37
line-height: 16px;
38
margin-left: -3px;
39
}
40
41
.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
42
display: block;
43
background-size: 16px;
44
background-position: center center;
45
background-repeat: no-repeat;
46
}
47
48