Path: blob/main/src/vs/sessions/contrib/aiCustomizationTreeView/browser/media/aiCustomizationTreeView.css
13405 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.ai-customization-view {6height: 100%;7}89.ai-customization-view .tree-container {10height: 100%;11}1213/* Tree item styling */14.ai-customization-view .ai-customization-tree-item {15display: flex;16align-items: center;17height: 22px;18line-height: 22px;19padding-right: 8px;20}2122.ai-customization-view .ai-customization-tree-item .icon {23flex-shrink: 0;24width: 16px;25height: 16px;26margin-right: 6px;27display: flex;28align-items: center;29justify-content: center;30}3132.ai-customization-view .ai-customization-tree-item .name {33flex: 1;34overflow: hidden;35text-overflow: ellipsis;36white-space: nowrap;37}3839.ai-customization-view .ai-customization-tree-item .actions {40display: none;41flex-shrink: 0;42max-width: fit-content;43}4445.ai-customization-view .monaco-list .monaco-list-row:hover .ai-customization-tree-item > .actions,46.ai-customization-view .monaco-list .monaco-list-row.focused .ai-customization-tree-item > .actions,47.ai-customization-view .monaco-list .monaco-list-row.selected .ai-customization-tree-item > .actions {48display: flex;49}5051.ai-customization-view .ai-customization-tree-item .description {52flex-shrink: 1;53color: var(--vscode-descriptionForeground);54font-size: 0.9em;55margin-left: 8px;56overflow: hidden;57text-overflow: ellipsis;58white-space: nowrap;59opacity: 0.8;60}6162/* Group headers */63.ai-customization-view .ai-customization-group-header {64display: flex;65align-items: center;66height: 22px;67font-weight: 600;68text-transform: uppercase;69font-size: 11px;70letter-spacing: 0.5px;71color: var(--vscode-descriptionForeground);72}7374.ai-customization-view .ai-customization-group-header .label {75overflow: hidden;76text-overflow: ellipsis;77white-space: nowrap;78}7980/* Category headers (top-level types like "Custom Agents", "Skills") */81.ai-customization-view .ai-customization-category {82display: flex;83align-items: center;84height: 22px;85line-height: 22px;86font-weight: 600;87}8889.ai-customization-view .ai-customization-category .icon {90flex-shrink: 0;91width: 16px;92height: 16px;93margin-right: 6px;94display: flex;95align-items: center;96justify-content: center;97}9899.ai-customization-view .ai-customization-category .label {100overflow: hidden;101text-overflow: ellipsis;102white-space: nowrap;103}104105/* Disabled items */106.ai-customization-view .ai-customization-tree-item.disabled {107opacity: 0.5;108}109110/* Empty state */111.ai-customization-view .empty-message {112padding: 10px;113color: var(--vscode-descriptionForeground);114text-align: center;115}116117118