[Doc] Fixed colors for code elements, no more red, also different color for links
This commit is contained in:
parent
c12b0f5fee
commit
b17730137a
1 changed files with 17 additions and 1 deletions
18
docs/_static/theme_overrides.css
vendored
18
docs/_static/theme_overrides.css
vendored
|
|
@ -35,4 +35,20 @@
|
|||
/* make whitespace visualization in code listings not appear on same vertical position as dashes */
|
||||
.highlight .w {
|
||||
vertical-align: 10%;
|
||||
}
|
||||
}
|
||||
|
||||
/* make code tags non-red again */
|
||||
code,
|
||||
.rst-content tt {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
a code,
|
||||
.rst-content a tt {
|
||||
color: #2980B9;
|
||||
}
|
||||
|
||||
a:visited code,
|
||||
.rst-content a:visited tt {
|
||||
color: #9B59B6;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue