diff options
| author | Ulrik Sverdrup <bluss@users.noreply.github.com> | 2016-09-23 20:31:14 +0200 |
|---|---|---|
| committer | Ulrik Sverdrup <bluss@users.noreply.github.com> | 2016-09-23 20:31:14 +0200 |
| commit | e82d13ea4b4f0cb678fe733af9fd6c107a98609a (patch) | |
| tree | 34a9d92ef402b43c79d489c0788a174d8b9418ba | |
| parent | a5dbf8a0f8843c5466c3866cc2a288c0ef7051d2 (diff) | |
rustdoc css: Put `where` in trait listings on a new line
This is about the gray area at the top of a trait's documentation page, that lists all methods and their signatures. A big trait page like Iterator is very crowded without this tweak.
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index c97cacd10c3..ba6f56788b9 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -378,6 +378,11 @@ h4 > code, h3 > code, invisible > code { font-size: 90%; } +/* Shift where in trait listing down a line */ +pre.trait .where::before { + content: '\a '; +} + nav { border-bottom: 1px solid; padding-bottom: 10px; |
