From: XhmikosR Date: Thu, 29 Aug 2019 08:10:06 +0000 (+0300) Subject: theming.md: bring `:root` up to par with Scss. (#29323) X-Git-Tag: v5.0.0-alpha1~807 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84cba07246f935ed43e8e7a1b000ef32febf333f;p=thirdparty%2Fbootstrap.git theming.md: bring `:root` up to par with Scss. (#29323) Also, add a warning in _root.scss so that we don't miss it again. --- diff --git a/scss/_root.scss b/scss/_root.scss index 055ac32fb0..dcad3ee013 100644 --- a/scss/_root.scss +++ b/scss/_root.scss @@ -1,3 +1,4 @@ +// Do not forget to update getting-started/theming.md! :root { // Custom variable values only support SassScript inside `#{}`. @each $color, $value in $colors { diff --git a/site/content/docs/4.3/getting-started/theming.md b/site/content/docs/4.3/getting-started/theming.md index 28b57e4ad1..b999e49093 100644 --- a/site/content/docs/4.3/getting-started/theming.md +++ b/site/content/docs/4.3/getting-started/theming.md @@ -391,7 +391,7 @@ Here are the variables we include (note that the `:root` is required). They're l --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } {{< /highlight >}}