From ca5c67364a3a3c842779b32c72524c0b2484114b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 27 Apr 2020 10:18:36 -0700 Subject: [PATCH] Remove mentions of Bootstrap 4 in a few places, replacing with updated guidance where appropriate --- site/content/docs/4.3/content/reboot.md | 2 +- site/content/docs/4.3/customize/sass.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/docs/4.3/content/reboot.md b/site/content/docs/4.3/content/reboot.md index c9323b082f..bc5722f3f0 100644 --- a/site/content/docs/4.3/content/reboot.md +++ b/site/content/docs/4.3/content/reboot.md @@ -29,7 +29,7 @@ The `` and `` elements are updated to provide better page-wide defau ## Native font stack -The default web fonts (Helvetica Neue, Helvetica, and Arial) have been dropped in Bootstrap 4 and replaced with a "native font stack" for optimum text rendering on every device and OS. Read more about [native font stacks in this *Smashing Magazine* article](https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/). +Bootstrap utilizes a "native font stack" or "system font stack" for optimum text rendering on every device and OS. These system fonts have been designed specifically with today's devices in mind, with improved rendering on screens, variable font support, and more. Read more about [native font stacks in this *Smashing Magazine* article](https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/). {{< highlight scss >}} $font-family-sans-serif: diff --git a/site/content/docs/4.3/customize/sass.md b/site/content/docs/4.3/customize/sass.md index 402b75fc5d..47b2f0a6e4 100644 --- a/site/content/docs/4.3/customize/sass.md +++ b/site/content/docs/4.3/customize/sass.md @@ -65,7 +65,7 @@ With that setup in place, you can begin to modify any of the Sass variables and ## Variable defaults -Every Sass variable in Bootstrap 4 includes the `!default` flag allowing you to override the variable's default value in your own Sass without modifying Bootstrap's source code. Copy and paste variables as needed, modify their values, and remove the `!default` flag. If a variable has already been assigned, then it won't be re-assigned by the default values in Bootstrap. +Every Sass variable in Bootstrap includes the `!default` flag allowing you to override the variable's default value in your own Sass without modifying Bootstrap's source code. Copy and paste variables as needed, modify their values, and remove the `!default` flag. If a variable has already been assigned, then it won't be re-assigned by the default values in Bootstrap. You will find the complete list of Bootstrap's variables in `scss/_variables.scss`. Some variables are set to `null`, these variables don't output the property unless they are overridden in your configuration. @@ -86,7 +86,7 @@ Repeat as necessary for any variable in Bootstrap, including the global options ## Maps and loops -Bootstrap 4 includes a handful of Sass maps, key value pairs that make it easier to generate families of related CSS. We use Sass maps for our colors, grid breakpoints, and more. Just like Sass variables, all Sass maps include the `!default` flag and can be overridden and extended. +Bootstrap includes a handful of Sass maps, key value pairs that make it easier to generate families of related CSS. We use Sass maps for our colors, grid breakpoints, and more. Just like Sass variables, all Sass maps include the `!default` flag and can be overridden and extended. Some of our Sass maps are merged into empty ones by default. This is done to allow easy expansion of a given Sass map, but comes at the cost of making _removing_ items from a map slightly more difficult.