Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/markdown/browser/media/markdown.css
4780 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
/* Alert color mappings using theme variables */
7
blockquote[data-severity="note"] {
8
--vscode-textBlockQuote-border: var(--vscode-markdownAlert-note-foreground);
9
}
10
11
blockquote[data-severity="tip"] {
12
--vscode-textBlockQuote-border: var(--vscode-markdownAlert-tip-foreground);
13
}
14
15
blockquote[data-severity="important"] {
16
--vscode-textBlockQuote-border: var(--vscode-markdownAlert-important-foreground);
17
}
18
19
blockquote[data-severity="warning"] {
20
--vscode-textBlockQuote-border: var(--vscode-markdownAlert-warning-foreground);
21
}
22
23
blockquote[data-severity="caution"] {
24
--vscode-textBlockQuote-border: var(--vscode-markdownAlert-caution-foreground);
25
}
26
27
/* Alert title styling */
28
blockquote[data-severity] > p > :first-child {
29
display: inline-flex;
30
align-items: center;
31
color: var(--vscode-textBlockQuote-border);
32
font-weight: bolder;
33
}
34
35
blockquote[data-severity] > p > :first-child .codicon {
36
color: var(--vscode-textBlockQuote-border);
37
padding-right: 6px;
38
}
39
40