This reverts commit 667a09b159
.
This commit is contained in:
parent
f24d2b926f
commit
a97ac905d1
|
@ -1,3 +1,5 @@
|
||||||
|
/* originally based on github.com style (c) Vasily Polovnyov <vast@whiteants.net> */
|
||||||
|
|
||||||
p > code,
|
p > code,
|
||||||
li > code,
|
li > code,
|
||||||
pre > code,
|
pre > code,
|
||||||
|
@ -10,9 +12,13 @@ em > code {
|
||||||
border-radius: var(--d-button-border-radius);
|
border-radius: var(--d-button-border-radius);
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: calc((13 + 4) / 13);
|
line-height: calc((13 + 4) / 13);
|
||||||
padding: 12px;
|
}
|
||||||
|
|
||||||
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
max-height: 500px;
|
padding: 12px;
|
||||||
|
color: var(--primary-very-high);
|
||||||
|
background-color: var(--hljs-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
|
|
|
@ -920,6 +920,15 @@ aside.quote {
|
||||||
pre {
|
pre {
|
||||||
max-height: 2000px;
|
max-height: 2000px;
|
||||||
|
|
||||||
|
code {
|
||||||
|
word-wrap: normal;
|
||||||
|
display: block;
|
||||||
|
padding: 0.5em;
|
||||||
|
color: var(--primary);
|
||||||
|
background: var(--blend-primary-secondary-5);
|
||||||
|
max-height: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
.bidi-warning,
|
.bidi-warning,
|
||||||
.bidi-warning span {
|
.bidi-warning span {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
|
Loading…
Reference in New Issue