Skip to content

Commit

Permalink
Improve the style of the sidebar in rustdoc output
Browse files Browse the repository at this point in the history
Makes the sidebar a light grey and highlights the currently viewed item
in the sidebar more prominently.

All visual design credit goes to @johnwhelchel (#37856)
  • Loading branch information
wesleywiser committed Mar 6, 2017
1 parent ba07bd5 commit 2bb2a29
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 10 additions & 1 deletion src/librustdoc/html/static/rustdoc.css
Expand Up @@ -167,7 +167,11 @@ nav.sub {
position: absolute;
left: 0;
top: 0;
min-height: 100%;
min-height: 100vh;
}

.sidebar .current {
margin-right: -20px;
}

.content, nav { max-width: 960px; }
Expand All @@ -185,11 +189,16 @@ nav.sub {
}

.sidebar .location {
border: 1px solid;
font-size: 17px;
margin: 30px 0 20px 0;
text-align: center;
}

.location:empty {
border: none;
}

.location a:first-child { font-weight: 500; }

.block {
Expand Down
11 changes: 10 additions & 1 deletion src/librustdoc/html/static/styles/main.css
Expand Up @@ -37,8 +37,17 @@ pre {
background-color: #F5F5F5;
}

.sidebar {
background-color: #F1F1F1;
}

.sidebar .current {
background-color: #fff;
}

.sidebar .location {
background: #e1e1e1;
border-color: #000;
background-color: #fff;
color: #333;
}

Expand Down

0 comments on commit 2bb2a29

Please sign in to comment.