diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-01-25 15:52:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-25 15:52:17 +0100 |
| commit | 6f2a0c6f689797e9c2c876109b5acb4926c28634 (patch) | |
| tree | dc4ea20a66f27f90999419a9dbf6e4c5274b2498 | |
| parent | f769b9de026bb26ca284946581a50367344b73f4 (diff) | |
| parent | e1e991d3d20158823bb517c9eb3ad984ea4b6f81 (diff) | |
| download | rust-6f2a0c6f689797e9c2c876109b5acb4926c28634.tar.gz rust-6f2a0c6f689797e9c2c876109b5acb4926c28634.zip | |
Rollup merge of #47721 - GuillaumeGomez:experimental-color, r=QuietMisdreavus
Fix experimental text display on default theme r? @QuietMisdreavus
| -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 9d650f92664..e0764640e91 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; |
