Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css
4780 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
.monaco-editor .inlineSuggestionsHints {
6
padding: 4px;
7
8
.warningMessage p {
9
margin: 0;
10
}
11
}
12
13
.monaco-editor .inlineSuggestionsHints.withBorder {
14
z-index: 39;
15
color: var(--vscode-editorHoverWidget-foreground);
16
background-color: var(--vscode-editorHoverWidget-background);
17
border: 1px solid var(--vscode-editorHoverWidget-border);
18
}
19
20
.monaco-editor .inlineSuggestionsHints a {
21
color: var(--vscode-foreground) !important;
22
}
23
24
.monaco-editor .inlineSuggestionsHints a:hover {
25
color: var(--vscode-foreground) !important;
26
}
27
28
.monaco-editor .inlineSuggestionsHints .keybinding {
29
display: flex;
30
margin-left: 4px;
31
opacity: 0.6;
32
}
33
34
.monaco-editor .inlineSuggestionsHints .keybinding .monaco-keybinding-key {
35
font-size: 8px;
36
padding: 2px 3px;
37
}
38
39
.monaco-editor .inlineSuggestionsHints .availableSuggestionCount a {
40
display: flex;
41
min-width: 19px;
42
justify-content: center;
43
}
44
45
.monaco-editor .inlineSuggestionStatusBarItemLabel {
46
margin-right: 2px;
47
}
48
49