Path: blob/main/src/vs/editor/contrib/message/browser/messageController.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 .monaco-editor-overlaymessage {6padding-bottom: 8px;7z-index: 10000;8}910.monaco-editor .monaco-editor-overlaymessage.below {11padding-bottom: 0;12padding-top: 8px;13z-index: 10000;14}1516@keyframes fadeIn {17from { opacity: 0; }18to { opacity: 1; }19}20.monaco-editor .monaco-editor-overlaymessage.fadeIn {21animation: fadeIn 150ms ease-out;22}2324@keyframes fadeOut {25from { opacity: 1; }26to { opacity: 0; }27}28.monaco-editor .monaco-editor-overlaymessage.fadeOut {29animation: fadeOut 100ms ease-out;30}3132.monaco-editor .monaco-editor-overlaymessage .message {33padding: 2px 4px;34color: var(--vscode-editorHoverWidget-foreground);35background-color: var(--vscode-editorHoverWidget-background);36border: 1px solid var(--vscode-inputValidation-infoBorder);37border-radius: 3px;38}3940.monaco-editor .monaco-editor-overlaymessage .message p {41margin-block: 0px;42}4344.monaco-editor .monaco-editor-overlaymessage .message a {45color: var(--vscode-textLink-foreground);46}4748.monaco-editor .monaco-editor-overlaymessage .message a:hover {49color: var(--vscode-textLink-activeForeground);50}5152.monaco-editor.hc-black .monaco-editor-overlaymessage .message,53.monaco-editor.hc-light .monaco-editor-overlaymessage .message {54border-width: 2px;55}5657.monaco-editor .monaco-editor-overlaymessage .anchor {58width: 0 !important;59height: 0 !important;60border-color: transparent;61border-style: solid;62z-index: 1000;63border-width: 8px;64position: absolute;65left: 2px;66}6768.monaco-editor .monaco-editor-overlaymessage .anchor.top {69border-bottom-color: var(--vscode-inputValidation-infoBorder);70}7172.monaco-editor .monaco-editor-overlaymessage .anchor.below {73border-top-color: var(--vscode-inputValidation-infoBorder);74}7576.monaco-editor .monaco-editor-overlaymessage:not(.below) .anchor.top,77.monaco-editor .monaco-editor-overlaymessage.below .anchor.below {78display: none;79}8081.monaco-editor .monaco-editor-overlaymessage.below .anchor.top {82display: inherit;83top: -8px;84}858687