Overwrite background-color for highlighted sections.

This commit is contained in:
tastytea 2019-12-04 20:01:02 +01:00
parent 981a0e5fc8
commit c1c9b24f79
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,8 @@
:root
{
--bg: #1d1f21;
--bg-code: #10111280;
--bg-code: #101112;
--bg-code-trans: #10111280;
--bg-hover: #282a2e;
--sel: #373b41;
--bg-admonition: #1d1d1d;
@ -104,7 +105,7 @@ code, kbd, pre, samp
p > code, td > code
{
background-color: var(--bg-code);
background-color: var(--bg-code-trans);
}
div.admonitionblock td.icon
@ -141,3 +142,9 @@ div.warning td.icon
{
color: OrangeRed;
}
/* Overwrite background color for highlighted sections. */
.highlight
{
background-color: var(--bg-code) !important;
}