Merge "Allow an alternate, generic header font to be specified for certain languages"

This commit is contained in:
jenkins-bot 2016-07-06 20:52:58 +00:00 committed by Gerrit Code Review
commit e368fb1e40
2 changed files with 9 additions and 0 deletions

View File

@ -55,6 +55,14 @@ body {
line-height: @heading-line-height;
margin-bottom: 0.25em;
padding: 0;
/* Fallback heading font for scripts which render poorly in @content-heading-font-family. */
/* See T73240 */
&:lang( ja ), /* See T65817 */
&:lang( he ), /* See T65843 and T65844 */
&:lang( ko ) { /* See T65827 */
font-family: @content-heading-font-family-generic;
}
}
h1 {

View File

@ -11,6 +11,7 @@
@content-padding: 1em;
@content-heading-font-size: 1.8em;
@content-heading-font-family: "Linux Libertine", Georgia, Times, serif;
@content-heading-font-family-generic: sans-serif;
@body-background-color: #fff;
@heading-line-height: 1.3;