Twenty Twenty: Add Noto Serif as a fallback font before Garamond.
This aims to provide better experience on Chromebooks. Noto Serif is also the fallback font for Android devices. Follow-up to [46271]. Props sabernhardt, nmschaller. Fixes #50723. Built from https://develop.svn.wordpress.org/trunk@52661 git-svn-id: http://core.svn.wordpress.org/trunk@52250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a5c45366cb
commit
051bd96994
|
@ -115,7 +115,7 @@ Inter variable font. Usage:
|
|||
.editor-styles-wrapper ul,
|
||||
.editor-styles-wrapper dl,
|
||||
.editor-styles-wrapper dt {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -115,7 +115,7 @@ Inter variable font. Usage:
|
|||
.editor-styles-wrapper ul,
|
||||
.editor-styles-wrapper dl,
|
||||
.editor-styles-wrapper dt {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ body#tinymce.wp-editor.content ol,
|
|||
body#tinymce.wp-editor.content ul,
|
||||
body#tinymce.wp-editor.content dl,
|
||||
body#tinymce.wp-editor.content dt {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ body#tinymce.wp-editor.content ol,
|
|||
body#tinymce.wp-editor.content ul,
|
||||
body#tinymce.wp-editor.content dl,
|
||||
body#tinymce.wp-editor.content dt {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -3525,7 +3525,7 @@ figure.wp-block-table.is-style-stripes {
|
|||
/* Font Families ----------------------------- */
|
||||
|
||||
.entry-content {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
@ -4120,7 +4120,7 @@ div.comment:first-of-type {
|
|||
.widget_text dl,
|
||||
.widget_text dt,
|
||||
.widget-content .rssSummary {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -3547,7 +3547,7 @@ figure.wp-block-table.is-style-stripes {
|
|||
/* Font Families ----------------------------- */
|
||||
|
||||
.entry-content {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
@ -4154,7 +4154,7 @@ div.comment:first-of-type {
|
|||
.widget_text dl,
|
||||
.widget_text dt,
|
||||
.widget-content .rssSummary {
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
|
||||
font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52660';
|
||||
$wp_version = '6.0-alpha-52661';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue