diff options
| author | kennytm <kennytm@gmail.com> | 2017-12-02 01:38:59 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-02 01:38:59 +0800 |
| commit | edaec072b9cd1c7424d6ac6b5751798a0f751eb3 (patch) | |
| tree | 8617dce5c108445d67bdd81ae3ed646ff3d66a29 | |
| parent | bc8e8fabbff6c3c481b980dc42f0afd8ff3c2e10 (diff) | |
| parent | c00ba79f5cc683182c8cd37b1f2b1b07f108db0a (diff) | |
| download | rust-edaec072b9cd1c7424d6ac6b5751798a0f751eb3.tar.gz rust-edaec072b9cd1c7424d6ac6b5751798a0f751eb3.zip | |
Rollup merge of #46392 - GuillaumeGomez:fix-tooltip, r=QuietMisdreavus
Invert colors in important traits tooltip Part of #46352. r? @QuietMisdreavus
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index d7f4674908c..7efe7e1ae3e 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -920,6 +920,12 @@ span.since { border-color: transparent black transparent transparent; } +.important-traits .tooltip .tooltiptext { + background-color: white; + color: black; + border: 1px solid #000; +} + pre.rust { position: relative; } |
