Merge "Use operating system font stack for monospace fonts"

This commit is contained in:
jenkins-bot 2019-04-17 20:24:32 +00:00 committed by Gerrit Code Review
commit ad7e941bde
1 changed files with 9 additions and 1 deletions

View File

@ -84,7 +84,15 @@
// typography
@fontFamilyHeading: 'Linux Libertine', 'Georgia', 'Times', serif;
@fontFamilyMonospace: monospace, monospace;
/**
* System font stack for monospace fonts, see T221043.
*
* `Menlo` macOS 10.6+
* `Consolas` Windows Vista & newer
* `Liberation Mono` Fedora, Ubuntu, … OFL licensed
* `Courier New` (Generic) web font fallback
*/
@fontFamilyMonospace: 'Menlo', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
@fontScalingFactor: 1;
@contentLineHeight: 1.65;