From ccee8b3c13b014b266aa25daaee4c789a674b3fb Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 14 Apr 2016 07:53:29 -0400 Subject: [PATCH] fix blockquote font size The blockquote font size is 17.5px in bootstrap where normal text is 14px. This is because blockquote is thought of for doing pull quotes. However sphinx uses block quote for indented text, and it should thus be the same as the body text. Part of bp:api-ref-in-rst Change-Id: I4135686416d84f5ca113a031534c3486a4c2b1c5 --- api-ref/source/_static/api-site.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api-ref/source/_static/api-site.css b/api-ref/source/_static/api-site.css index 2de3c9f1a3..13f046ec3f 100644 --- a/api-ref/source/_static/api-site.css +++ b/api-ref/source/_static/api-site.css @@ -7,6 +7,10 @@ tt.literal { border-radius: 4px; } +/* bootstrap users blockquote for pull quotes, so they are much +larger, we need them smaller */ +blockquote { font-size: 1em; } + pre { display: block; padding: 9.5px;