Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/preferences/browser/media/keybindings.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
.defineKeybindingWidget {
7
padding: 10px;
8
position: absolute;
9
}
10
11
.defineKeybindingWidget .message {
12
width: 400px;
13
text-align: center;
14
}
15
16
.defineKeybindingWidget .monaco-inputbox,
17
.defineKeybindingWidget .output,
18
.defineKeybindingWidget .existing {
19
margin-top:10px;
20
width: 400px;
21
display: block;
22
text-align: center;
23
}
24
25
.defineKeybindingWidget .input {
26
text-align: center;
27
}
28
29
.defineKeybindingWidget .output {
30
display: flex;
31
justify-content: center;
32
}
33
34
.defineKeybindingWidget .existing .existingText {
35
text-decoration: underline;
36
cursor: pointer;
37
}
38
39
.defineKeybindingWidget .output .monaco-keybinding {
40
margin: 0px 4px;
41
}
42
43
/* Editor decorations */
44
.monaco-editor .keybindingInfo {
45
box-shadow: inset 0 0 0 1px #B9B9B9;
46
background-color: rgba(100, 100, 250, 0.2);
47
}
48
49
.monaco-editor .keybindingError {
50
box-shadow: inset 0 0 0 1px #B9B9B9;
51
background-color: rgba(250, 100, 100, 0.2);
52
}
53
54