Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/standalone/browser/inspectTokens/inspectTokens.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-editor .tokens-inspect-widget {
7
z-index: 50;
8
user-select: text;
9
-webkit-user-select: text;
10
padding: 10px;
11
color: var(--vscode-editorHoverWidget-foreground);
12
background-color: var(--vscode-editorHoverWidget-background);
13
border: 1px solid var(--vscode-editorHoverWidget-border);
14
}
15
.monaco-editor.hc-black .tokens-inspect-widget, .monaco-editor.hc-light .tokens-inspect-widget {
16
border-width: 2px;
17
}
18
19
.monaco-editor .tokens-inspect-widget .tokens-inspect-separator {
20
height: 1px;
21
border: 0;
22
background-color: var(--vscode-editorHoverWidget-border);
23
}
24
25
.monaco-editor .tokens-inspect-widget .tm-token {
26
font-family: var(--monaco-monospace-font);
27
}
28
29
.monaco-editor .tokens-inspect-widget .tm-token-length {
30
font-weight: normal;
31
font-size: 60%;
32
float: right;
33
}
34
35
.monaco-editor .tokens-inspect-widget .tm-metadata-table {
36
width: 100%;
37
}
38
39
.monaco-editor .tokens-inspect-widget .tm-metadata-value {
40
font-family: var(--monaco-monospace-font);
41
text-align: right;
42
}
43
44
.monaco-editor .tokens-inspect-widget .tm-token-type {
45
font-family: var(--monaco-monospace-font);
46
}
47
48