diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-06-13 21:49:10 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-06-13 21:49:10 +0200 |
| commit | a8318e420d19c364b1eec33956a86164941f6df4 (patch) | |
| tree | 372754812871a05fc505e605f7bfc3ae7eab1e31 | |
| parent | 60f1a2fc4b535ead9c85ce085fdce49b1b097531 (diff) | |
| download | rust-a8318e420d19c364b1eec33956a86164941f6df4.tar.gz rust-a8318e420d19c364b1eec33956a86164941f6df4.zip | |
Fix font-weight
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index d8684641a30..7535145caa5 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -137,9 +137,9 @@ h1.fqn > .in-band > a:hover { h2, h3, h4 { border-bottom: 1px solid; } -.impl, .method, -.type:not(.container-rustdoc), .associatedconstant, -.associatedtype { +.impl, .impl-items .method, +.impl-items .type, .impl-items .associatedconstant, +.impl-items .associatedtype { flex-basis: 100%; font-weight: 600; margin-top: 16px; |
