Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/debug/browser/media/debugHover.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 .debug-hover-widget {
7
position: absolute;
8
z-index: 50;
9
animation-duration: 0.15s;
10
animation-name: fadeIn;
11
user-select: text;
12
-webkit-user-select: text;
13
word-break: break-all;
14
white-space: pre;
15
}
16
17
.monaco-editor .debug-hover-widget .complex-value {
18
max-width: 550px;
19
}
20
21
.monaco-editor .debug-hover-widget .complex-value .title,
22
.monaco-editor .debug-hover-widget .complex-value .tip {
23
padding-left: 15px;
24
padding-right: 2px;
25
font-size: 11px;
26
line-height: 18px;
27
word-break: normal;
28
text-overflow: ellipsis;
29
height: 18px;
30
overflow: hidden;
31
white-space: pre;
32
}
33
34
.monaco-editor .debug-hover-widget .complex-value .title {
35
border-bottom: 1px solid rgba(128, 128, 128, 0.35);
36
}
37
38
.monaco-editor .debug-hover-widget .complex-value .tip {
39
border-top: 1px solid rgba(128, 128, 128, 0.35);
40
opacity: 0.5;
41
}
42
43
.monaco-editor .debug-hover-widget .debug-hover-tree {
44
line-height: 18px;
45
cursor: pointer;
46
}
47
48
.monaco-editor .debug-hover-widget .debug-hover-tree .monaco-list-row .monaco-tl-contents {
49
user-select: text;
50
-webkit-user-select: text;
51
white-space: pre;
52
}
53
54
/* Disable tree highlight in debug hover tree. */
55
.monaco-editor .debug-hover-widget .debug-hover-tree .monaco-list-rows .monaco-list-row:hover:not(.highlighted):not(.selected):not(.focused) {
56
background-color: inherit;
57
}
58
59
.monaco-editor .debug-hover-widget pre {
60
margin-top: 0;
61
margin-bottom: 0;
62
}
63
64
.monaco-editor .debugHoverHighlight {
65
background-color: rgba(173, 214, 255, 0.15);
66
}
67
68
.monaco-editor .debug-hover-widget > .monaco-scrollable-element > .value {
69
color: rgba(108, 108, 108, 0.8);
70
overflow: auto;
71
font-family: var(--monaco-monospace-font);
72
max-height: 500px;
73
padding: 4px 5px;
74
white-space: pre-wrap;
75
}
76
77
.monaco-editor.vs-dark .debugHoverHighlight,
78
.monaco-editor.hc-theme .debugHoverHighlight {
79
background-color: rgba(38, 79, 120, 0.25);
80
}
81
82