diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-01-24 19:15:41 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-01-24 19:15:41 +0100 |
| commit | e1e991d3d20158823bb517c9eb3ad984ea4b6f81 (patch) | |
| tree | 178887917e40314a715807a80d4811ac2e38810c | |
| parent | a0dcecff90c45ad5d4eb60859e22bb3f1b03842a (diff) | |
| download | rust-e1e991d3d20158823bb517c9eb3ad984ea4b6f81.tar.gz rust-e1e991d3d20158823bb517c9eb3ad984ea4b6f81.zip | |
Fix experimental text display on default theme
| -rw-r--r-- | src/librustdoc/html/static/themes/main.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/themes/main.css b/src/librustdoc/html/static/themes/main.css index 84b21e7239f..1c3b6cb9c6d 100644 --- a/src/librustdoc/html/static/themes/main.css +++ b/src/librustdoc/html/static/themes/main.css @@ -189,6 +189,10 @@ a.test-arrow { .stab.deprecated { background: #F3DFFF; border-color: #7F0087; } .stab.portability { background: #C4ECFF; border-color: #7BA5DB; } +.module-item .stab { + color: #000; +} + #help > div { background: #e9e9e9; border-color: #bfbfbf; |
