Path: blob/main/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.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 .peekview-widget .head {6box-sizing: border-box;7display: flex;8justify-content: space-between;9flex-wrap: nowrap;10}1112.monaco-editor .peekview-widget .head .peekview-title {13display: flex;14align-items: baseline;15font-size: 13px;16margin-left: 20px;17min-width: 0;18text-overflow: ellipsis;19overflow: hidden;20}2122.monaco-editor .peekview-widget .head .peekview-title.clickable {23cursor: pointer;24}2526.monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty) {27font-size: 0.9em;28margin-left: 0.5em;29}3031.monaco-editor .peekview-widget .head .peekview-title .meta {32white-space: nowrap;33overflow: hidden;34text-overflow: ellipsis;35}3637.monaco-editor .peekview-widget .head .peekview-title .dirname {38overflow: hidden;39text-overflow: ellipsis;40white-space: nowrap;41}4243.monaco-editor .peekview-widget .head .peekview-title .filename {44overflow: hidden;45text-overflow: ellipsis;46white-space: nowrap;47}4849.monaco-editor .peekview-widget .head .peekview-title .meta:not(:empty)::before {50content: '-';51padding: 0 0.3em;52}5354.monaco-editor .peekview-widget .head .peekview-actions {55flex: 1;56text-align: right;57padding-right: 2px;58}5960.monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar {61display: inline-block;62}6364.monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar,65.monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar > .actions-container {66height: 100%;67}6869.monaco-editor .peekview-widget > .body {70border-top: 1px solid;71position: relative;72}7374.monaco-editor .peekview-widget .head .peekview-title .codicon {75margin-right: 4px;76align-self: center;77}7879.monaco-editor .peekview-widget .monaco-list .monaco-list-row.focused .codicon {80color: inherit !important;81}828384