diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-03-31 11:43:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-31 11:43:33 -0400 |
| commit | 488a7b39450f58c0f9dca8e2ac08bd7b74f1af8b (patch) | |
| tree | 1c7903ee5b59fa4d639a66f4de615ebbb94fe712 /src | |
| parent | 7ccd0b994faa92755feda2bda91d9893fc4af808 (diff) | |
| parent | 2040daee472033ae5a0d369ae05bd07706595854 (diff) | |
Rollup merge of #40888 - wesleywiser:rustdoc_src_sidebar, r=GuillaumeGomez
Make the rustdoc sidebar white on `src` pages Fixes #40724
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/html/layout.rs | 4 | ||||
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 6 | ||||
| -rw-r--r-- | src/librustdoc/html/static/styles/main.css | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/src/librustdoc/html/layout.rs b/src/librustdoc/html/layout.rs index 06a81641296..d6033a69da7 100644 --- a/src/librustdoc/html/layout.rs +++ b/src/librustdoc/html/layout.rs @@ -54,7 +54,7 @@ r##"<!DOCTYPE html> {favicon} {in_header} </head> -<body class="rustdoc"> +<body class="rustdoc {css_class}"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky @@ -80,7 +80,7 @@ r##"<!DOCTYPE html> </form> </nav> - <section id='main' class="content {css_class}">{content}</section> + <section id='main' class="content">{content}</section> <section id='search' class="content hidden"></section> <section class="footer"></section> diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index 3df120eece9..4edf6309346 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -141,7 +141,7 @@ pre { padding: 14px; } -.source pre { +.source .content pre { padding: 20px; } @@ -149,7 +149,7 @@ img { max-width: 100%; } -.content.source { +.source .content { margin-top: 50px; max-width: none; overflow: visible; @@ -231,7 +231,7 @@ nav.sub { padding: 15px 0; } -.content.source pre.rust { +.source .content pre.rust { white-space: pre; overflow: auto; padding-left: 0; diff --git a/src/librustdoc/html/static/styles/main.css b/src/librustdoc/html/static/styles/main.css index 74ec3691b38..c0310199088 100644 --- a/src/librustdoc/html/static/styles/main.css +++ b/src/librustdoc/html/static/styles/main.css @@ -45,6 +45,10 @@ pre { background-color: #fff; } +.source .sidebar { + background-color: #fff; +} + .sidebar .location { border-color: #000; background-color: #fff; |
