mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
140 lines
3.0 KiB
CSS
140 lines
3.0 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.monaco-hover {
|
|
cursor: default;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
z-index: 50;
|
|
user-select: text;
|
|
-webkit-user-select: text;
|
|
-ms-user-select: text;
|
|
box-sizing: initial;
|
|
animation: fadein 100ms linear;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.monaco-hover.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.monaco-hover .hover-contents {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) {
|
|
max-width: 500px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) hr {
|
|
/* This is a strange rule but it avoids https://github.com/microsoft/vscode/issues/96795, just 100vw on its own caused the actual hover width to increase */
|
|
min-width: calc(100% + 100vw);
|
|
}
|
|
|
|
.monaco-hover p,
|
|
.monaco-hover .code,
|
|
.monaco-hover ul {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.monaco-hover code {
|
|
font-family: var(--monaco-monospace-font);
|
|
}
|
|
|
|
.monaco-hover hr {
|
|
margin-top: 4px;
|
|
margin-bottom: -4px;
|
|
margin-left: -10px;
|
|
margin-right: -10px;
|
|
height: 1px;
|
|
}
|
|
|
|
.monaco-hover p:first-child,
|
|
.monaco-hover .code:first-child,
|
|
.monaco-hover ul:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.monaco-hover p:last-child,
|
|
.monaco-hover .code:last-child,
|
|
.monaco-hover ul:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* MarkupContent Layout */
|
|
.monaco-hover ul {
|
|
padding-left: 20px;
|
|
}
|
|
.monaco-hover ol {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.monaco-hover li > p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.monaco-hover li > ul {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.monaco-hover code {
|
|
border-radius: 3px;
|
|
padding: 0 0.4em;
|
|
}
|
|
|
|
.monaco-hover .monaco-tokenized-source {
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.monaco-hover .hover-row.status-bar {
|
|
font-size: 12px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.monaco-hover .hover-row.status-bar .actions {
|
|
display: flex;
|
|
padding: 0px 8px;
|
|
}
|
|
|
|
.monaco-hover .hover-row.status-bar .actions .action-container {
|
|
margin-right: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.monaco-hover .hover-row.status-bar .actions .action-container .action .icon {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.monaco-hover .markdown-hover .hover-contents .codicon {
|
|
color: inherit;
|
|
font-size: inherit;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.monaco-hover .hover-contents a.code-link:before {
|
|
content: '(';
|
|
}
|
|
.monaco-hover .hover-contents a.code-link:after {
|
|
content: ')';
|
|
}
|
|
|
|
.monaco-hover .hover-contents a.code-link {
|
|
color: inherit;
|
|
}
|
|
.monaco-hover .hover-contents a.code-link > span {
|
|
text-decoration: underline;
|
|
/** Hack to force underline to show **/
|
|
border-bottom: 1px solid transparent;
|
|
text-underline-position: under;
|
|
}
|
|
|
|
/** Spans in markdown hovers need a margin-bottom to avoid looking cramped: https://github.com/microsoft/vscode/issues/101496 **/
|
|
.monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents) span {
|
|
margin-bottom: 4px;
|
|
display: inline-block;
|
|
}
|