Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css
5223 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-keybinding {
7
display: flex;
8
align-items: center;
9
line-height: 10px;
10
}
11
12
.monaco-keybinding > .monaco-keybinding-key {
13
display: inline-flex;
14
align-items: center;
15
border-style: solid;
16
border-width: 1px;
17
border-radius: 3px;
18
justify-content: center;
19
min-width: 12px;
20
font-size: 11px;
21
padding: 3px 5px;
22
margin: 0 2px;
23
}
24
25
.monaco-keybinding > .monaco-keybinding-key:first-child {
26
margin-left: 0;
27
}
28
29
.monaco-keybinding > .monaco-keybinding-key:last-child {
30
margin-right: 0;
31
}
32
33
.monaco-keybinding > .monaco-keybinding-key-separator {
34
display: inline-block;
35
}
36
37
.monaco-keybinding > .monaco-keybinding-key-chord-separator {
38
width: 6px;
39
}
40
41