File size: 841 Bytes
bae9410 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
.root {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.link-container {
display: inline-flex;
padding: 2px 4px 2px 2px;
min-width: 0;
}
.header {
display: flex;
gap: 0.25rem;
align-items: center;
}
.context-item-link {
background: none;
border: none;
color: var(--vscode-textLink-foreground);
font-size: inherit;
padding: 0;
margin: 0;
text-align: left;
font-weight: normal;
display: flex;
align-items: center;
gap: 0.125rem;
overflow: hidden;
}
/* In light high contrast, --vscode-textLink-foreground provides little
contrast; instead inherit the --code-foreground color from the container. */
body[data-vscode-theme-kind='vscode-high-contrast-light'] .context-item-link {
color: inherit;
}
.code-block {
margin-bottom: 0.25rem;
}
|