Skip to content

Commit

Permalink
Fix UI issues on Implementations on Foreign types
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Aug 29, 2018
1 parent 8785e34 commit e08a84a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/librustdoc/html/static/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,9 @@ h4 > code, h3 > code, .invisible > code {
top: -9px;
left: -13px;
}
.methods > .stability {
margin-top: -8px;
}

nav {
border-bottom: 1px solid;
Expand Down
4 changes: 4 additions & 0 deletions src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -407,3 +407,7 @@ kbd {
.search-results td span.grey {
color: #ccc;
}

.impl-items code {
background-color: rgba(0, 0, 0, 0);
}
4 changes: 4 additions & 0 deletions src/librustdoc/html/static/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -401,3 +401,7 @@ kbd {
.search-results td span.grey {
color: #999;
}

.impl-items code {
background-color: rgba(0, 0, 0, 0);
}

0 comments on commit e08a84a

Please sign in to comment.