Path: blob/main/src/vs/workbench/contrib/debug/browser/media/debug.contribution.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.codicon-debug-hint {6cursor: pointer;7}89.codicon-debug-hint:not([class*='codicon-debug-breakpoint']):not([class*='codicon-debug-stackframe']) {10opacity: 0.4 !important;11}1213.inline-breakpoint-widget.codicon {14display: flex !important;15align-items: center;16}1718.inline-breakpoint-widget.codicon-debug-breakpoint-disabled {19opacity: 0.7;20}2122.monaco-editor .inline-breakpoint-widget.line-start {23left: -8px !important;24}2526.monaco-editor .debug-breakpoint-placeholder {27width: 0.9em;28display: inline-flex;29vertical-align: middle;30margin-top: -1px;31}323334.codicon-debug-breakpoint-conditional.codicon-debug-stackframe-focused::after,35.codicon-debug-breakpoint-conditional.codicon-debug-stackframe::after,36.codicon-debug-breakpoint.codicon-debug-stackframe-focused::after,37.codicon-debug-breakpoint.codicon-debug-stackframe::after {38content: var(--vscode-icon-debug-stackframe-dot-content);39font-family: var(--vscode-icon-debug-stackframe-dot-font-family);40position: absolute;41}4243.monaco-editor .debug-top-stack-frame-column {44font: normal normal normal 16px/1 codicon;45text-rendering: auto;46-webkit-font-smoothing: antialiased;47-moz-osx-font-smoothing: grayscale;48margin-left: 0;49margin-right: 4px;50margin-top: -1px; /* TODO @misolori: figure out a way to not use negative margin for alignment */51align-items: center;52width: 0.9em;53display: inline-flex;54vertical-align: middle;55}5657.debug-var-hover-pre {58margin: 0;59}6061.debug-var-hover-pre span {62display: inline !important;63}6465/* Do not push text with inline decoration when decoration on start of line */66.monaco-editor .debug-top-stack-frame-column.start-of-line {67position: absolute;68top: 50%;69transform: translate(-17px, -50%);70margin-top: 0px; /* TODO @misolori: figure out a way to not use negative margin for alignment */71}7273.monaco-editor .inline-breakpoint-widget {74cursor: pointer;75}7677.monaco-workbench .debug-view-content .monaco-list-row .monaco-tl-contents {78overflow: hidden;79text-overflow: ellipsis;80}8182/* Expressions */838485.monaco-workbench .monaco-list-row .expression {86display: flex;87}8889.monaco-workbench .debug-pane .monaco-list-row .expression,90.monaco-workbench .debug-hover-widget .monaco-list-row .expression {91font-size: 13px;92overflow: hidden;93text-overflow: ellipsis;94font-family: var(--monaco-monospace-font);95white-space: pre;96}9798.monaco-workbench.mac .debug-pane .monaco-list-row .expression,99.monaco-workbench.mac .debug-hover-widget .monaco-list-row .expression {100font-size: 11px;101}102103.monaco-workbench .monaco-list-row .expression .value {104margin-left: 6px;105}106107.monaco-workbench .monaco-list-row .expression .lazy-button {108margin-left: 3px;109display: none;110border-radius: 5px;111align-self: center;112}113114.monaco-workbench .monaco-list-row .expression.lazy .lazy-button {115display: inline;116}117118/* Links */119120.monaco-workbench .monaco-list-row .expression .value a.link:hover {121text-decoration: underline;122}123124.monaco-workbench .monaco-list-row .expression .value a.link.pointer {125cursor: pointer;126}127128/* White color when element is selected and list is focused. White looks better on blue selection background. */129.monaco-workbench .monaco-list:focus .monaco-list-row.selected .expression .name,130.monaco-workbench .monaco-list:focus .monaco-list-row.selected .expression .value {131color: inherit;132}133134.monaco-workbench .monaco-list-row .expression .name.virtual {135opacity: 0.5;136}137138.monaco-workbench .monaco-list-row .expression .name.internal {139opacity: 0.5;140}141142.monaco-workbench .monaco-list-row .expression .unavailable {143font-style: italic;144}145146.monaco-workbench .debug-inline-value {147background-color: var(--vscode-editor-inlineValuesBackground);148color: var(--vscode-editor-inlineValuesForeground);149}150151152