Use CSS whitespace rather than padding to indent

This commit is contained in:
Dirk Gadsden 2014-12-28 12:24:27 -05:00
parent 4477c7c52e
commit 57a3ef3f9b

View file

@ -306,8 +306,10 @@ nav.sub {
font-size: 1em;
position: relative;
}
/* Shift "where ..." part of method definition down a line and indent it */
.content .method .where { display: block; padding-left: 3.75em; }
/* Shift "where ..." part of method definition down a line */
.content .method .where { display: block; }
/* Bit of whitespace to indent it */
.content .method .where::before { content: ' '; }
.content .methods .docblock { margin-left: 40px; }