Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaël Poupard <ffoodd@users.noreply.github.com>2020-02-17 21:40:08 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-02-17 22:33:54 +0300
commit473d36ff387ddf17930793805cfbd027732909bc (patch)
treecf86826a41fe2c1b820438a34ae92d8d285e1993 /site/docs/4.4
parent4a7cbd5b9f1e94186a1f81af594d1fcd7ffbc51e (diff)
docs(theming): improve headings hierarchy under Sass → Functions (#30207)
Diffstat (limited to 'site/docs/4.4')
-rw-r--r--site/docs/4.4/getting-started/theming.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/4.4/getting-started/theming.md b/site/docs/4.4/getting-started/theming.md
index 99c5066c58..32f83f3080 100644
--- a/site/docs/4.4/getting-started/theming.md
+++ b/site/docs/4.4/getting-started/theming.md
@@ -193,7 +193,7 @@ In practice, you'd call the function and pass in two parameters: the name of the
Additional functions could be added in the future or your own custom Sass to create level functions for additional Sass maps, or even a generic one if you wanted to be more verbose.
-### Color contrast
+#### Color contrast
An additional function we include in Bootstrap is the color contrast function, `color-yiq`. It utilizes the [YIQ color space](https://en.wikipedia.org/wiki/YIQ) to automatically return a light (`#fff`) or dark (`#111`) contrast color based on the specified base color. This function is especially useful for mixins or loops where you're generating multiple classes.
@@ -223,11 +223,11 @@ You can also specify a base color with our color map functions:
}
{% endhighlight %}
-## Escape SVG
+#### Escape SVG
We use the `escape-svg` function to escape the `<`, `>` and `#` characters for SVG background images. These characters need to be escaped to properly render the background images in IE.
-## Add and Subtract functions
+#### Add and Subtract functions
We use the `add` and `subtract` functions to wrap the CSS `calc` function. The primary purpose of these functions is to avoid errors when a "unitless" `0` value is passed into a `calc` expression. Expressions like `calc(10px - 0)` will return an error in all browsers, despite being mathematically correct.