Fix: style printed math formulas with serif font

When printed, math formulas appear best rendered in the same font as the
body, serif. Override dl and other sans-serif styling rules for all
printed images. e.g.: https://en.wikipedia.org/wiki/Frame-dragging.

Bug: T181138
Change-Id: I9755a23cbec8388964c27d938a7aea8e25fe2f7f
This commit is contained in:
Stephen Niedzielski 2018-01-11 16:25:01 -06:00
parent 4885722aaf
commit 08e68d600a
1 changed files with 5 additions and 0 deletions

View File

@ -51,6 +51,11 @@
font-family: @font-family-sans-serif;
}
// Images, such as formulas, render best in serif.
img {
font-family: @font-family-serif;
}
// Normalize Blue links in the article
a {
border-bottom: 1px solid #aaa;