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
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-keybinding {
7
display: flex;
8
align-items: center;
9
line-height: 10px;
10
}
11
12
.monaco-keybinding > .monaco-keybinding-key {
13
display: inline-block;
14
border-style: solid;
15
border-width: 1px;
16
border-radius: 3px;
17
vertical-align: middle;
18
font-size: 11px;
19
padding: 3px 5px;
20
margin: 0 2px;
21
}
22
23
.monaco-keybinding > .monaco-keybinding-key:first-child {
24
margin-left: 0;
25
}
26
27
.monaco-keybinding > .monaco-keybinding-key:last-child {
28
margin-right: 0;
29
}
30
31
.monaco-keybinding > .monaco-keybinding-key-separator {
32
display: inline-block;
33
}
34
35
.monaco-keybinding > .monaco-keybinding-key-chord-separator {
36
width: 6px;
37
}
38
39