Path: blob/main/src/vs/editor/contrib/codelens/browser/codelensWidget.css
4779 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 .codelens-decoration {6overflow: hidden;7display: inline-flex !important; /* !important to override inline display:block style */8align-items: center;9text-overflow: ellipsis;10white-space: nowrap;11color: var(--vscode-editorCodeLens-foreground);12line-height: var(--vscode-editorCodeLens-lineHeight);13font-size: var(--vscode-editorCodeLens-fontSize);14padding-right: calc(var(--vscode-editorCodeLens-fontSize)*0.5);15font-feature-settings: var(--vscode-editorCodeLens-fontFeatureSettings);16font-family: var(--vscode-editorCodeLens-fontFamily), var(--vscode-editorCodeLens-fontFamilyDefault);17}1819.monaco-editor .codelens-decoration > span,20.monaco-editor .codelens-decoration > a {21user-select: none;22-webkit-user-select: none;23white-space: nowrap;24vertical-align: sub;25display: inline-flex;26align-items: center;27}2829.monaco-editor .codelens-decoration > a {30text-decoration: none;31}3233.monaco-editor .codelens-decoration > a:hover {34cursor: pointer;35color: var(--vscode-editorLink-activeForeground) !important;36}3738.monaco-editor .codelens-decoration > a:hover .codicon {39color: var(--vscode-editorLink-activeForeground) !important;40}4142.monaco-editor .codelens-decoration .codicon[class*='codicon-'] {43vertical-align: middle;44color: currentColor !important;45color: var(--vscode-editorCodeLens-foreground);46line-height: var(--vscode-editorCodeLens-lineHeight);47font-size: var(--vscode-editorCodeLens-fontSize);48}495051.monaco-editor .codelens-decoration > a:hover .codicon::before {52cursor: pointer;53}5455@keyframes fadein {560% { opacity: 0;}57100% { opacity: 1;}58}5960.monaco-editor .codelens-decoration.fadein {61animation: fadein 0.1s linear;62}636465