N°3800 Fix color for highlighted code blocks

We want content in a simple code tag to be black
But the color set by Highligh.js must be kept
This commit is contained in:
Pierre Goiffon
2021-08-31 16:44:59 +02:00
parent 79954d3cee
commit 5b78820b32

View File

@@ -159,7 +159,13 @@ body.ibo-has-fullscreen-descendant {
width: unset !important;
max-width: max-content;
}
code {
& > code {
color: initial;
}
/* hljs is the CSS class for Highlight.js block codes */
:not(pre.hljs) code {
color: initial;
}
}