From 0ac24d6bffd2381358c164969f002b2c9f3c1316 Mon Sep 17 00:00:00 2001 From: Ulrik Sverdrup Date: Sun, 31 May 2015 22:46:19 +0200 Subject: [PATCH] rustdoc: Tweak css of function where clauses Method where clauses are put indented on a new line, do the same tweak to free functions, which makes it cleaner and easier to read. --- src/librustdoc/html/static/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustdoc/html/static/main.css b/src/librustdoc/html/static/main.css index 575322e6352..aaebdc34cd4 100644 --- a/src/librustdoc/html/static/main.css +++ b/src/librustdoc/html/static/main.css @@ -338,10 +338,10 @@ nav.sub { font-size: 1em; position: relative; } -/* Shift "where ..." part of method definition down a line */ -.content .method .where { display: block; } +/* Shift "where ..." part of method or fn definition down a line */ +.content .method .where, .content .fn .where { display: block; } /* Bit of whitespace to indent it */ -.content .method .where::before { content: ' '; } +.content .method .where::before, .content .fn .where::before { content: ' '; } .content .methods > div { margin-left: 40px; }