diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-07-14 14:47:54 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-07-14 14:47:54 +0200 |
| commit | 749cd8f9af63a5a96c0fa362f801ad8c04ecea8a (patch) | |
| tree | fda1a60cdccbe39ee205ee57601505bde5b2c5b4 | |
| parent | 1f0db5e0a315a252946a9e52a76c73579da53dd0 (diff) | |
| download | rust-749cd8f9af63a5a96c0fa362f801ad8c04ecea8a.tar.gz rust-749cd8f9af63a5a96c0fa362f801ad8c04ecea8a.zip | |
Fix color for <code> which are not in doc blocks
| -rw-r--r-- | src/librustdoc/html/static/css/themes/ayu.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/themes/ayu.css b/src/librustdoc/html/static/css/themes/ayu.css index 171d06c0a36..5aee92967a5 100644 --- a/src/librustdoc/html/static/css/themes/ayu.css +++ b/src/librustdoc/html/static/css/themes/ayu.css @@ -34,7 +34,7 @@ h4 { background: rgba(0, 0, 0, 0); } -code { +.docblock code { color: #ffb454; } h3 > code, h4 > code, h5 > code { |
