fix(css): distinguish code/pre from #message

This commit is contained in:
RhodeCode Admin 2024-10-24 14:55:30 +02:00
parent 3aec79cd17
commit 17f3b8d895

View file

@ -287,10 +287,18 @@ div.markdown-block #message {
font-family: @text-monospace;
font-size: 11px;
.border-radius(@border-radius);
background-color: transparent;
color: @grey3;
}
div.markdown-block code,
div.markdown-block pre {
background-color: transparent;
}
div.markdown-block #ws,
div.markdown-block #message {
background-color: white;
}
div.markdown-block code {
border: @border-thickness solid @grey6;