From eab9d3bb3714dbcdb69e91aac3c97ca6368f00bb Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 25 Jul 2023 08:21:22 -0700 Subject: [PATCH 1/5] Write up v5.3.1 post --- src/content/posts/2023/bootstrap-5-3-1.md | 51 +++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/content/posts/2023/bootstrap-5-3-1.md diff --git a/src/content/posts/2023/bootstrap-5-3-1.md b/src/content/posts/2023/bootstrap-5-3-1.md new file mode 100644 index 000000000..dfe7e0217 --- /dev/null +++ b/src/content/posts/2023/bootstrap-5-3-1.md @@ -0,0 +1,51 @@ +--- +author: mdo +date: "2023-07-26T07:35:00Z" +title: Bootstrap 5.3.1 +keywords: + - bootstrap + - release +video: +--- + +Bootstrap v5.3.1 is here with bug fixes, documentation improvements, and more follow-up enhancements for color modes. Keep reading for the highlights! + +- **Color modes:** + - Increased color contrast for dark mode by replacing `$gray-500` with `$gray-300` for the body color. + - Added our color mode switcher JavaScript to our examples ZIP download + +- **Components:** + - Improved disabled styling for all `.nav-link`s, providing `.disabled` and `:disabled` for use with anchors and buttons. + - Add support for `Home` and `End` keys for navigating tabs by keyboard + - Added some basic styling to toggle buttons when no modifier class is present. + - Fixed carousel colors in dark mode + +- **Forms:** + - Fixed floating label disabled text color + +- **Utilities:** + - `.text-bg-*` utilities now use CSS variables + +- **Sass:** + - Add new `$navbar-dark-icon-color` Sass variable + - Removed duplicate `$alert` Sass variables + - Added a new variable for `$vr-border-width` to customize the vertical rule helper width. + +- **Documentation:** + - Added search to our homepage + - Improved responsive behavior on Dashboard example + - Improved dark mode rendering of Cheatsheet examples + +## Get the release + +**Head to for the latest.** It's also been pushed to npm: + +```sh +npm i bootstrap@v5.3.1 +``` + +[Read the GitHub v5.3.0 changelog](https://github.com/twbs/bootstrap/releases/tag/v5.3.1) for a complete list of changes in this release. + +## Support the team + +Visit our [Open Collective page]({{< param "opencollective" >}}) or our [team members](https://github.com/orgs/twbs/people)' GitHub profiles to help support the maintainers contributing to Bootstrap. From 861fd4e43096e84b32afb47f030c35505b44691b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 25 Jul 2023 08:22:07 -0700 Subject: [PATCH 2/5] Edits --- src/content/posts/2023/bootstrap-5-3-1.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/content/posts/2023/bootstrap-5-3-1.md b/src/content/posts/2023/bootstrap-5-3-1.md index dfe7e0217..36a2e9250 100644 --- a/src/content/posts/2023/bootstrap-5-3-1.md +++ b/src/content/posts/2023/bootstrap-5-3-1.md @@ -13,24 +13,19 @@ Bootstrap v5.3.1 is here with bug fixes, documentation improvements, and more fo - **Color modes:** - Increased color contrast for dark mode by replacing `$gray-500` with `$gray-300` for the body color. - Added our color mode switcher JavaScript to our examples ZIP download - - **Components:** - Improved disabled styling for all `.nav-link`s, providing `.disabled` and `:disabled` for use with anchors and buttons. - Add support for `Home` and `End` keys for navigating tabs by keyboard - Added some basic styling to toggle buttons when no modifier class is present. - Fixed carousel colors in dark mode - - **Forms:** - Fixed floating label disabled text color - - **Utilities:** - `.text-bg-*` utilities now use CSS variables - - **Sass:** - Add new `$navbar-dark-icon-color` Sass variable - Removed duplicate `$alert` Sass variables - Added a new variable for `$vr-border-width` to customize the vertical rule helper width. - - **Documentation:** - Added search to our homepage - Improved responsive behavior on Dashboard example From 2f2e47c1e49efecb4af483b02f5eea29fd642f9f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 25 Jul 2023 08:31:16 -0700 Subject: [PATCH 3/5] add video --- src/content/posts/2023/bootstrap-5-3-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/posts/2023/bootstrap-5-3-1.md b/src/content/posts/2023/bootstrap-5-3-1.md index 36a2e9250..7e6c26493 100644 --- a/src/content/posts/2023/bootstrap-5-3-1.md +++ b/src/content/posts/2023/bootstrap-5-3-1.md @@ -5,7 +5,7 @@ title: Bootstrap 5.3.1 keywords: - bootstrap - release -video: +video: WJ1I3ZmEozQ --- Bootstrap v5.3.1 is here with bug fixes, documentation improvements, and more follow-up enhancements for color modes. Keep reading for the highlights! From 79fa2ff5b801c2e51f326132f60a5f4470e654da Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 26 Jul 2023 10:45:21 +0300 Subject: [PATCH 4/5] Update bootstrap-5-3-1.md --- src/content/posts/2023/bootstrap-5-3-1.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/posts/2023/bootstrap-5-3-1.md b/src/content/posts/2023/bootstrap-5-3-1.md index 7e6c26493..84760ec82 100644 --- a/src/content/posts/2023/bootstrap-5-3-1.md +++ b/src/content/posts/2023/bootstrap-5-3-1.md @@ -11,12 +11,12 @@ video: WJ1I3ZmEozQ Bootstrap v5.3.1 is here with bug fixes, documentation improvements, and more follow-up enhancements for color modes. Keep reading for the highlights! - **Color modes:** - - Increased color contrast for dark mode by replacing `$gray-500` with `$gray-300` for the body color. + - Increased color contrast for dark mode by replacing `$gray-500` with `$gray-300` for the body color - Added our color mode switcher JavaScript to our examples ZIP download - **Components:** - - Improved disabled styling for all `.nav-link`s, providing `.disabled` and `:disabled` for use with anchors and buttons. + - Improved disabled styling for all `.nav-link`s, providing `.disabled` and `:disabled` for use with anchors and buttons - Add support for `Home` and `End` keys for navigating tabs by keyboard - - Added some basic styling to toggle buttons when no modifier class is present. + - Added some basic styling to toggle buttons when no modifier class is present - Fixed carousel colors in dark mode - **Forms:** - Fixed floating label disabled text color @@ -25,7 +25,7 @@ Bootstrap v5.3.1 is here with bug fixes, documentation improvements, and more fo - **Sass:** - Add new `$navbar-dark-icon-color` Sass variable - Removed duplicate `$alert` Sass variables - - Added a new variable for `$vr-border-width` to customize the vertical rule helper width. + - Added a new variable for `$vr-border-width` to customize the vertical rule helper width - **Documentation:** - Added search to our homepage - Improved responsive behavior on Dashboard example @@ -39,7 +39,7 @@ Bootstrap v5.3.1 is here with bug fixes, documentation improvements, and more fo npm i bootstrap@v5.3.1 ``` -[Read the GitHub v5.3.0 changelog](https://github.com/twbs/bootstrap/releases/tag/v5.3.1) for a complete list of changes in this release. +[Read the GitHub v5.3.1 changelog](https://github.com/twbs/bootstrap/releases/tag/v5.3.1) for a complete list of changes in this release. ## Support the team From cf574ad022f24da000fc7de2492134d35e4a6dd1 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 26 Jul 2023 11:04:35 +0300 Subject: [PATCH 5/5] Update bootstrap-5-3-1.md --- src/content/posts/2023/bootstrap-5-3-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/posts/2023/bootstrap-5-3-1.md b/src/content/posts/2023/bootstrap-5-3-1.md index 84760ec82..660accbe1 100644 --- a/src/content/posts/2023/bootstrap-5-3-1.md +++ b/src/content/posts/2023/bootstrap-5-3-1.md @@ -1,6 +1,6 @@ --- author: mdo -date: "2023-07-26T07:35:00Z" +date: "2023-07-26T08:05:00Z" title: Bootstrap 5.3.1 keywords: - bootstrap