summaryrefslogtreecommitdiff
path: root/api-ref/source
diff options
context:
space:
mode:
authorSean Dague <sean@dague.net>2016-04-14 07:53:29 -0400
committerSean Dague <sean@dague.net>2016-04-15 07:43:06 -0400
commitccee8b3c13b014b266aa25daaee4c789a674b3fb (patch)
treed39dd3ac29182b95453d20bbf8213bb4e470ac29 /api-ref/source
parente51b8f43e1bcbbc94d6f290b1a0108afe77bc32f (diff)
downloadnova-ccee8b3c13b014b266aa25daaee4c789a674b3fb.tar.gz
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
Diffstat (limited to 'api-ref/source')
-rw-r--r--api-ref/source/_static/api-site.css4
1 files changed, 4 insertions, 0 deletions
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;