Path: blob/main/src/vs/workbench/contrib/debug/browser/media/callStackWidget.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.multiCallStackFrame {6.header {7display: flex;89align-items: center;10height: 24px;11background: var(--vscode-multiDiffEditor-headerBackground);12border-top: 1px solid var(--vscode-multiDiffEditor-border);13color: var(--vscode-foreground);14padding: 0 5px;15}1617.title {18flex-grow: 1;19overflow: hidden;20text-overflow: ellipsis;21white-space: nowrap;2223&[role="link"] {24cursor: pointer;25}2627.monaco-icon-label::before {28height: auto;29}30}3132&.collapsed {33.header {34border-bottom: 1px solid var(--vscode-multiDiffEditor-border);35}3637.editorParent {38display: none;39}40}4142.collapse-button {43width: 16px;44min-height: 1px; /* show even if empty */45line-height: 0;4647a {48cursor: pointer;49}50}5152.actions {53display: flex;54align-items: center;55gap: 8px;56margin-right: 12px;57}58}5960.multiCallStackWidget {61.multiCallStackFrameContainer {62background: none !important;63}64}6566.monaco-editor .call-stack-go-to-file-link {67text-decoration: underline;68cursor: pointer;69color: var(--vscode-editorLink-activeForeground) !important;70}717273