2023-05-19 00:22:16 -04:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
2023-05-20 09:17:57 -04:00
|
|
|
html, body {
|
2023-05-19 00:22:16 -04:00
|
|
|
font-family: var(--markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", system-ui, "Ubuntu", "Droid Sans", sans-serif);
|
|
|
|
font-size: var(--markdown-font-size, 14px);
|
|
|
|
padding: 0 26px;
|
|
|
|
line-height: var(--markdown-line-height, 22px);
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
padding-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset margin top for elements */
|
|
|
|
h1, h2, h3, h4, h5, h6,
|
|
|
|
p, ol, ul, pre {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-bottom: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#code-csp-warning {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
color: white;
|
|
|
|
margin: 16px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
background-color:#444444;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 6px;
|
|
|
|
box-shadow: 1px 1px 1px rgba(0,0,0,.25);
|
|
|
|
}
|
|
|
|
|
|
|
|
#code-csp-warning:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color:#007acc;
|
|
|
|
box-shadow: 2px 2px 2px rgba(0,0,0,.25);
|
|
|
|
}
|
|
|
|
|
|
|
|
body.scrollBeyondLastLine {
|
|
|
|
margin-bottom: calc(100vh - 22px);
|
|
|
|
}
|
|
|
|
|
|
|
|
body.showEditorSelection .code-line {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.showEditorSelection :not(tr,ul,ol).code-active-line:before,
|
|
|
|
body.showEditorSelection :not(tr,ul,ol).code-line:hover:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: -12px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-high-contrast.showEditorSelection :not(tr,ul,ol).code-line .code-line:hover:before {
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.showEditorSelection li.code-active-line:before,
|
|
|
|
body.showEditorSelection li.code-line:hover:before {
|
|
|
|
left: -30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-light.showEditorSelection .code-active-line:before {
|
|
|
|
border-left: 3px solid rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-light.showEditorSelection .code-line:hover:before {
|
|
|
|
border-left: 3px solid rgba(0, 0, 0, 0.40);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-dark.showEditorSelection .code-active-line:before {
|
|
|
|
border-left: 3px solid rgba(255, 255, 255, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-dark.showEditorSelection .code-line:hover:before {
|
|
|
|
border-left: 3px solid rgba(255, 255, 255, 0.60);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-high-contrast.showEditorSelection .code-active-line:before {
|
|
|
|
border-left: 3px solid rgba(255, 160, 0, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vscode-high-contrast.showEditorSelection .code-line:hover:before {
|
|
|
|
border-left: 3px solid rgba(255, 160, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prevent `sub` and `sup` elements from affecting line height */
|
|
|
|
sub,
|
|
|
|
sup {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul ul,
|
|
|
|
ul ol,
|
2023-05-20 09:17:57 -04:00
|
|
|
ol ul
|