Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.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
.quick-input-widget {
7
font-size: 13px;
8
}
9
10
.quick-input-widget .monaco-highlighted-label .highlight,
11
.quick-input-widget .monaco-highlighted-label .highlight {
12
color: #0066BF;
13
}
14
15
.vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight,
16
.vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
17
color: #9DDDFF;
18
}
19
20
.vs-dark .quick-input-widget .monaco-highlighted-label .highlight,
21
.vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
22
color: #0097fb;
23
}
24
25
.hc-black .quick-input-widget .monaco-highlighted-label .highlight,
26
.hc-black .quick-input-widget .monaco-highlighted-label .highlight {
27
color: #F38518;
28
}
29
30
.hc-light .quick-input-widget .monaco-highlighted-label .highlight,
31
.hc-light .quick-input-widget .monaco-highlighted-label .highlight {
32
color: #0F4A85;
33
}
34
35
.monaco-keybinding > .monaco-keybinding-key {
36
background-color: rgba(221, 221, 221, 0.4);
37
border: solid 1px rgba(204, 204, 204, 0.4);
38
border-bottom-color: rgba(187, 187, 187, 0.4);
39
box-shadow: inset 0 -1px 0 rgba(187, 187, 187, 0.4);
40
color: #555;
41
}
42
43
.hc-black .monaco-keybinding > .monaco-keybinding-key {
44
background-color: transparent;
45
border: solid 1px rgb(111, 195, 223);
46
box-shadow: none;
47
color: #fff;
48
}
49
50
.hc-light .monaco-keybinding > .monaco-keybinding-key {
51
background-color: transparent;
52
border: solid 1px #0F4A85;
53
box-shadow: none;
54
color: #292929;
55
}
56
57
.vs-dark .monaco-keybinding > .monaco-keybinding-key {
58
background-color: rgba(128, 128, 128, 0.17);
59
border: solid 1px rgba(51, 51, 51, 0.6);
60
border-bottom-color: rgba(68, 68, 68, 0.6);
61
box-shadow: inset 0 -1px 0 rgba(68, 68, 68, 0.6);
62
color: #ccc;
63
}
64
65