Path: blob/main/src/vs/workbench/contrib/debug/browser/media/debugHover.css
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.monaco-editor .debug-hover-widget {6position: absolute;7z-index: 50;8animation-duration: 0.15s;9animation-name: fadeIn;10user-select: text;11-webkit-user-select: text;12word-break: break-all;13white-space: pre;14}1516.monaco-editor .debug-hover-widget .complex-value {17max-width: 550px;18}1920.monaco-editor .debug-hover-widget .complex-value .title,21.monaco-editor .debug-hover-widget .complex-value .tip {22padding-left: 15px;23padding-right: 2px;24font-size: 11px;25line-height: 18px;26word-break: normal;27text-overflow: ellipsis;28height: 18px;29overflow: hidden;30white-space: pre;31}3233.monaco-editor .debug-hover-widget .complex-value .title {34border-bottom: 1px solid rgba(128, 128, 128, 0.35);35}3637.monaco-editor .debug-hover-widget .complex-value .tip {38border-top: 1px solid rgba(128, 128, 128, 0.35);39opacity: 0.5;40}4142.monaco-editor .debug-hover-widget .debug-hover-tree {43line-height: 18px;44cursor: pointer;45}4647.monaco-editor .debug-hover-widget .debug-hover-tree .monaco-list-row .monaco-tl-contents {48user-select: text;49-webkit-user-select: text;50white-space: pre;51}5253/* Disable tree highlight in debug hover tree. */54.monaco-editor .debug-hover-widget .debug-hover-tree .monaco-list-rows .monaco-list-row:hover:not(.highlighted):not(.selected):not(.focused) {55background-color: inherit;56}5758.monaco-editor .debug-hover-widget pre {59margin-top: 0;60margin-bottom: 0;61}6263.monaco-editor .debugHoverHighlight {64background-color: rgba(173, 214, 255, 0.15);65}6667.monaco-editor .debug-hover-widget > .monaco-scrollable-element > .value {68color: rgba(108, 108, 108, 0.8);69overflow: auto;70font-family: var(--monaco-monospace-font);71max-height: 500px;72padding: 4px 5px;73white-space: pre-wrap;74}7576.monaco-editor.vs-dark .debugHoverHighlight,77.monaco-editor.hc-theme .debugHoverHighlight {78background-color: rgba(38, 79, 120, 0.25);79}808182