Path: blob/main/src/vs/workbench/contrib/chat/browser/media/chatCodeBlockPill.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.chat-codeblock-pill-widget {6border: 1px solid var(--vscode-chat-requestBorder, var(--vscode-input-background, transparent));7border-radius: 4px;8text-wrap: nowrap;9width: fit-content;10font-weight: normal;11text-decoration: none;12font-size: var(--vscode-chat-font-size-body-xs);13padding: 0 3px;14cursor: pointer;15}1617.chat-codeblock-pill-widget .icon-label {18padding: 0px 3px;19text-wrap: wrap;20}2122.interactive-item-container .value .rendered-markdown .chat-codeblock-pill-widget {23color: inherit;24}2526.chat-codeblock-pill-widget:hover {27background-color: var(--vscode-list-hoverBackground);28}2930.chat-codeblock-pill-widget .icon {31vertical-align: middle;32line-height: 1em;33font-size: 90%;34overflow: hidden;35}3637.show-file-icons.chat-codeblock-pill-widget .icon::before {38display: inline-block;39line-height: 100%;40overflow: hidden;41background-size: contain;42background-position: center;43background-repeat: no-repeat;44flex-shrink: 0;45}4647span.label-detail {48padding-left: 4px;49font-style: italic;50color: var(--vscode-descriptionForeground);5152&:empty {53display: none;54}55}5657span.label-added {58font-weight: bold;59padding-left: 4px;60color: var(--vscode-chat-linesAddedForeground);61}6263span.label-removed {64font-weight: bold;65padding-left: 4px;66color: var(--vscode-chat-linesRemovedForeground);67}686970