Fix markdown code blocks getting two backgrounds in preview

Fixes #53246
This commit is contained in:
Matt Bierner
2018-06-28 15:17:19 -07:00
parent 6622f2d2b2
commit a2974a0782

View File

@@ -196,18 +196,15 @@ pre code {
}
.vscode-light pre:not(.hljs),
.vscode-light code > div {
.vscode-light pre {
background-color: rgba(220, 220, 220, 0.4);
}
.vscode-dark pre:not(.hljs),
.vscode-dark code > div {
.vscode-dark pre {
background-color: rgba(10, 10, 10, 0.4);
}
.vscode-high-contrast pre:not(.hljs),
.vscode-high-contrast code > div {
.vscode-high-contrast pre {
background-color: rgb(0, 0, 0);
}