diff options
| author | Ulrik Sverdrup <root@localhost> | 2015-05-19 01:44:04 +0200 |
|---|---|---|
| committer | Ulrik Sverdrup <root@localhost> | 2015-05-19 01:44:04 +0200 |
| commit | 24b1d2150d8deda07a95bf1b3d2263ccd5ab5b1b (patch) | |
| tree | 4cf82d15c0438696c57f96fa1d34326dba79aa76 | |
| parent | 4daa62a55f906bd7ec7ad265cb23d49d9d0db66a (diff) | |
| download | rust-24b1d2150d8deda07a95bf1b3d2263ccd5ab5b1b.tar.gz rust-24b1d2150d8deda07a95bf1b3d2263ccd5ab5b1b.zip | |
rustdoc: Fix left margin for type aliases
Fixes #24655 Margin for associated types was applied to type aliases (in return value) by mistake.
| -rw-r--r-- | src/librustdoc/html/static/main.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/main.css b/src/librustdoc/html/static/main.css index 2dc5ea99067..957ed27db4c 100644 --- a/src/librustdoc/html/static/main.css +++ b/src/librustdoc/html/static/main.css @@ -348,7 +348,7 @@ nav.sub { .content .impl-items .docblock, .content .impl-items .stability { margin-left: 40px; } -.content .impl-items .method, .content .impl-items .type { +.content .impl-items .method, .content .impl-items > .type { margin-left: 20px; } |
