Skip to content

Commit

Permalink
rustdoc: Fix left margin for type aliases
Browse files Browse the repository at this point in the history
Fixes #24655

Margin for associated types was applied to type aliases (in return
value) by mistake.
  • Loading branch information
Ulrik Sverdrup committed May 18, 2015
1 parent 4daa62a commit 24b1d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/main.css
Expand Up @@ -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;
}

Expand Down

0 comments on commit 24b1d21

Please sign in to comment.