Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/selectBox/selectBox.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-select-box {
7
width: 100%;
8
cursor: pointer;
9
border-radius: 2px;
10
}
11
12
.monaco-select-box-dropdown-container {
13
font-size: 13px;
14
font-weight: normal;
15
text-transform: none;
16
}
17
18
/** Actions */
19
20
.monaco-action-bar .action-item.select-container {
21
cursor: default;
22
}
23
24
.monaco-action-bar .action-item .monaco-select-box {
25
cursor: pointer;
26
min-width: 100px;
27
min-height: 18px;
28
padding: 2px 23px 2px 8px;
29
}
30
31
.mac .monaco-action-bar .action-item .monaco-select-box {
32
font-size: 11px;
33
border-radius: 3px;
34
min-height: 24px;
35
}
36
37