From 5eb6572277ab8f83acc51f96ec94db4e074d01b2 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 6 Mar 2024 13:57:07 +0000 Subject: update composer libs --- .../site/content/docs/5.3/components/accordion.md | 6 +- .../site/content/docs/5.3/components/alerts.md | 4 +- .../site/content/docs/5.3/components/badge.md | 12 +- .../site/content/docs/5.3/components/card.md | 2 +- .../site/content/docs/5.3/components/list-group.md | 14 +- .../site/content/docs/5.3/components/modal.md | 2 +- .../site/content/docs/5.3/components/offcanvas.md | 3 +- .../site/content/docs/5.3/components/popovers.md | 2 +- .../site/content/docs/5.3/content/reboot.md | 2 +- .../site/content/docs/5.3/content/tables.md | 2 +- .../site/content/docs/5.3/customize/color.md | 672 +++++++++++---------- .../site/content/docs/5.3/customize/sass.md | 17 +- .../content/docs/5.3/examples/blog-rtl/index.html | 6 +- .../site/content/docs/5.3/examples/blog/blog.css | 2 +- .../content/docs/5.3/examples/blog/blog.rtl.css | 2 +- .../site/content/docs/5.3/examples/blog/index.html | 6 +- .../docs/5.3/examples/cheatsheet-rtl/index.html | 6 +- .../docs/5.3/examples/cheatsheet/index.html | 6 +- .../docs/5.3/examples/heroes/bootstrap-docs.png | Bin 369569 -> 369528 bytes .../content/docs/5.3/examples/product/index.html | 6 +- .../site/content/docs/5.3/forms/checks-radios.md | 2 +- .../content/docs/5.3/getting-started/parcel.md | 6 +- .../site/content/docs/5.3/getting-started/vite.md | 12 +- .../content/docs/5.3/getting-started/webpack.md | 6 +- .../site/content/docs/5.3/helpers/stacks.md | 2 +- .../bootstrap/site/content/docs/5.3/migration.md | 114 ++-- .../site/content/docs/5.3/utilities/background.md | 7 +- .../site/content/docs/5.3/utilities/position.md | 2 +- .../site/content/docs/5.3/utilities/text.md | 2 +- .../twbs/bootstrap/site/content/docs/versions.md | 2 +- 30 files changed, 468 insertions(+), 459 deletions(-) (limited to 'vendor/twbs/bootstrap/site/content') diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/components/accordion.md b/vendor/twbs/bootstrap/site/content/docs/5.3/components/accordion.md index 227d11a86..8b22686ad 100644 --- a/vendor/twbs/bootstrap/site/content/docs/5.3/components/accordion.md +++ b/vendor/twbs/bootstrap/site/content/docs/5.3/components/accordion.md @@ -11,7 +11,7 @@ toc: true ## How it works -The accordion uses [collapse]({{< docsref "/components/collapse" >}}) internally to make it collapsible. To render an accordion that's expanded, add the `.open` class on the `.accordion`. +The accordion uses [collapse]({{< docsref "/components/collapse" >}}) internally to make it collapsible. {{< callout info >}} {{< partial "callouts/info-prefersreducedmotion.md" >}} @@ -21,6 +21,10 @@ The accordion uses [collapse]({{< docsref "/components/collapse" >}}) internally Click the accordions below to expand/collapse the accordion content. +To render an accordion that's expanded by default: +- add the `.show` class on the `.accordion-collapse` element. +- drop the `.collapsed` class from the `.accordion-button` element and set its `aria-expanded` attribute to `true`. + {{< example >}}
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/components/alerts.md b/vendor/twbs/bootstrap/site/content/docs/5.3/components/alerts.md index 9eb64dfe3..6103898bc 100644 --- a/vendor/twbs/bootstrap/site/content/docs/5.3/components/alerts.md +++ b/vendor/twbs/bootstrap/site/content/docs/5.3/components/alerts.md @@ -162,13 +162,11 @@ As part of Bootstrap's evolving CSS variables approach, alerts now use local CSS {{< deprecated-in "5.3.0" >}} -Used in combination with `$theme-colors` to create contextual modifier classes for our alerts. - {{< scss-docs name="alert-variant-mixin" file="scss/mixins/_alert.scss" >}} ### Sass loops -Loop that generates the modifier classes with the `alert-variant()` mixin. +Loop that generates the modifier classes with an overriding of CSS variables. {{< scss-docs name="alert-modifiers" file="scss/_alert.scss" >}} diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/components/badge.md b/vendor/twbs/bootstrap/site/content/docs/5.3/components/badge.md index c07387850..56ade490d 100644 --- a/vendor/twbs/bootstrap/site/content/docs/5.3/components/badge.md +++ b/vendor/twbs/bootstrap/site/content/docs/5.3/components/badge.md @@ -13,12 +13,12 @@ Badges scale to match the size of the immediate parent element by using relative ### Headings {{< example >}} -

Example heading New

-

Example heading New

-

Example heading New

-

Example heading New

-
Example heading New
-
Example heading New
+

Example heading New

+

Example heading New

+

Example heading New

+

Example heading New

+
Example heading New
+
Example heading New
{{< /example >}} ### Buttons diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/components/card.md b/vendor/twbs/bootstrap/site/content/docs/5.3/components/card.md index 6138c3d92..c504fef61 100644 --- a/vendor/twbs/bootstrap/site/content/docs/5.3/components/card.md +++ b/vendor/twbs/bootstrap/site/content/docs/5.3/components/card.md @@ -63,7 +63,7 @@ Subtitles are used by adding a `.card-subtitle` to a `` tag. If the `.card-t ### Images -`.card-img-top` places an image to the top of the card. With `.card-text`, text can be added to the card. Text within `.card-text` can also be styled with the standard HTML tags. +`.card-img-top` and `.card-img-bottom` respectively set the top and bottom corners rounded to match the card's borders. With `.card-text`, text can be added to the card. Text within `.card-text` can also be styled with the standard HTML tags. {{< example >}}
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/components/list-group.md b/vendor/twbs/bootstrap/site/content/docs/5.3/components/list-group.md index 598bb38d6..7f7e1457c 100644 --- a/vendor/twbs/bootstrap/site/content/docs/5.3/components/list-group.md +++ b/vendor/twbs/bootstrap/site/content/docs/5.3/components/list-group.md @@ -117,21 +117,21 @@ These work great with custom content as well.
Subheading
Content for list item
- 14 + 14
  • Subheading
    Content for list item
    - 14 + 14
  • Subheading
    Content for list item
    - 14 + 14
  • {{< /example >}} @@ -200,15 +200,15 @@ Add badges to any list group item to show unread counts, activity, and more with
    • A list item - 14 + 14
    • A second list item - 2 + 2
    • A third list item - 1 + 1
    {{< /example >}} @@ -321,8 +321,6 @@ As part of Bootstrap's evolving CSS variables approach, list groups now use loca {{< deprecated-in "5.3.0" >}} -Used in combination with `$theme-colors` to generate the [contextual variant classes](#variants) for `.list-group-item`s. - {{< scss-docs name="list-group-mixin" file="scss/mixins/_list-group.scss" >}} ### Sass loops diff --git a/vendor/twbs/bootstrap/site/content/docs/5.3/components/modal.md b/vendor/twbs/bootstrap/site/content/docs/5.3/components/modal.md index ba2a51a6e..3ca7cc4d2 100644 --- a/vendor/twbs/bootstrap/site/content/docs/5.3/components/modal.md +++ b/vendor/twbs/bootstrap/site/content/docs/5.3/components/modal.md @@ -218,7 +218,7 @@ When modals become too long for the user's viewport or device, they scroll indep
    -You can also create a scrollable modal that allows scroll the modal body by adding `.modal-dialog-scrollable` to `.modal-dialog`. +You can also create a scrollable modal that allows scrolling the modal body by adding `.modal-dialog-scrollable` to `.modal-dialog`.