aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2023-04-29 20:17:19 +0200
committerMario Vavti <mario@mariovavti.com>2023-04-29 20:17:19 +0200
commitfb295d53f12c3376779dc052dc2341c242c631d9 (patch)
treeff6b3181374955c9affbef343e4a767a9f125700 /vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md
parent95d07974f49c8e0123a29c631fa475815cf40cbd (diff)
parent39d78064da3748ed31f71c9a219433bfe9cd2d56 (diff)
downloadvolse-hubzilla-fb295d53f12c3376779dc052dc2341c242c631d9.tar.gz
volse-hubzilla-fb295d53f12c3376779dc052dc2341c242c631d9.tar.bz2
volse-hubzilla-fb295d53f12c3376779dc052dc2341c242c631d9.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md')
-rw-r--r--vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md15
1 files changed, 10 insertions, 5 deletions
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md b/vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md
index 5b3cd028b..f7c030da6 100644
--- a/vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md
+++ b/vendor/twbs/bootstrap/site/content/docs/5.3/utilities/text.md
@@ -90,6 +90,7 @@ Quickly change the `font-weight` or `font-style` of text with these utilities. `
<p class="fw-bold">Bold text.</p>
<p class="fw-bolder">Bolder weight text (relative to the parent element).</p>
<p class="fw-semibold">Semibold weight text.</p>
+<p class="fw-medium">Medium weight text.</p>
<p class="fw-normal">Normal weight text.</p>
<p class="fw-light">Light weight text.</p>
<p class="fw-lighter">Lighter weight text (relative to the parent element).</p>
@@ -121,7 +122,7 @@ Change a selection to our monospace font stack with `.font-monospace`.
Reset a text or link's color with `.text-reset`, so that it inherits the color from its parent.
{{< example >}}
-<p class="text-muted">
+<p class="text-body-secondary">
Muted text with a <a href="#" class="text-reset">reset link</a>.
</p>
{{< /example >}}
@@ -136,19 +137,23 @@ Decorate text in components with text decoration classes.
<a href="#" class="text-decoration-none">This link has its text decoration removed</a>
{{< /example >}}
-## Sass
+## CSS
-### Variables
+### Sass variables
+
+Default type and font related Sass variables:
{{< scss-docs name="font-variables" file="scss/_variables.scss" >}}
-### Maps
+### Sass maps
Font-size utilities are generated from this map, in combination with our utilities API.
{{< scss-docs name="font-sizes" file="scss/_variables.scss" >}}
-### Utilities API
+{{< scss-docs name="theme-text-map" file="scss/_maps.scss" >}}
+
+## Utilities API
Font and text utilities are declared in our utilities API in `scss/_utilities.scss`. [Learn how to use the utilities API.]({{< docsref "/utilities/api#using-the-api" >}})