From fe257823ecca31cf5e582e9b8380a0ad0204075e Mon Sep 17 00:00:00 2001 From: Tiger Oakes Date: Tue, 12 Apr 2022 08:07:25 -0700 Subject: Use Babel and ES6 in docs JS files (#31607) * Pass docs js through Babel * Use ES6 in docs js * Only run babel on src files * Allow babel in Hugo * Update scripts.html * Inherit from the root .eslintrc.json * Use `Array.from` * Drop Babel from docs * Prefer template * replace IIFE with arrow functions Co-authored-by: XhmikosR Co-authored-by: GeoSot --- site/static/docs/5.1/assets/js/validate-forms.js | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.1/assets/js/validate-forms.js b/site/static/docs/5.1/assets/js/validate-forms.js index f8fd583de..30ea0aa6b 100644 --- a/site/static/docs/5.1/assets/js/validate-forms.js +++ b/site/static/docs/5.1/assets/js/validate-forms.js @@ -1,20 +1,19 @@ // Example starter JavaScript for disabling form submissions if there are invalid fields -(function () { +(() => { 'use strict' // Fetch all the forms we want to apply custom Bootstrap validation styles to - var forms = document.querySelectorAll('.needs-validation') + const forms = document.querySelectorAll('.needs-validation') // Loop over them and prevent submission - Array.prototype.slice.call(forms) - .forEach(function (form) { - form.addEventListener('submit', function (event) { - if (!form.checkValidity()) { - event.preventDefault() - event.stopPropagation() - } + Array.from(forms).forEach(form => { + form.addEventListener('submit', event => { + if (!form.checkValidity()) { + event.preventDefault() + event.stopPropagation() + } - form.classList.add('was-validated') - }, false) - }) + form.classList.add('was-validated') + }, false) + }) })() -- cgit v1.2.3 From 195440f2fb1e94c014a9cf08f3eae40f3d224620 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 17 Apr 2022 22:17:50 -0700 Subject: v5.2.0 design refresh, plus responsive offcanvas classes (#35736) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add responsive offcanvas classes - Updates navbar-expand classes to de-dupe some styles—these shouldn't interfere now. - Adds some JS to the offcanvas component to help with responsiveness Co-Authored-By: GeoSot * Redesign homepage, docs, and examples Homepage: - New Bootstrap purple navbar - Redesigned masthead - Rewrote and redesigned homepage content - Replace Copy text with icons like Bootstrap Icons site across all ClipboardJS instances - Fixed padding issues in site footer - Match homepage button styles to examples page, use gap instead of tons of responsive margin utils Docs: - New navbar, no more subnav. Migrated search and version picker into the main navbar and refreshed the design of it all, including the responsive toggles. - New sidebar navigation is always expanded, and now features Bootstrap Icons alongside section headings - Sidebar navigation autoscrolls to active link for better usability - Subnav and navbar padding issues ironed out - Enhanced the version picker in anticipation of v5.2: we can now link right to the same page in the previous version. - Redesign callouts to add more color to our pages - Collapse table of contents on mobile - Cleanup and redesign button styles with CSS variables - Update design for subnav version dropdown - Update highlight and example to be full-width until md - Improve the Added In badges - Turn the ToC into a well on mobile - Redesign code snippets to better house two action buttons Examples: - Redesign Examples page layout - Add new example for responsive offcanvases in navbars * Convert offcanvas to CSS vars * Feat: add resize handler to Offcanvas.js. If we could use as default the `.offcanvas` class without modifiers, we then, could add a simplified selector The selector itself, ignores the .offcanvas class as it doesn't have any responsive behavior The `aria-modal` addon is to protect us, selection backdrop elements * Separate examples code, Add some selectors, fix stackblitz btn Co-authored-by: GeoSot --- .../docs/5.1/assets/img/examples/navbars-offcanvas.png | Bin 0 -> 6919 bytes .../5.1/assets/img/examples/navbars-offcanvas@2x.png | Bin 0 -> 17121 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png create mode 100644 site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png new file mode 100644 index 000000000..81b000dbf Binary files /dev/null and b/site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png new file mode 100644 index 000000000..af5313436 Binary files /dev/null and b/site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png differ -- cgit v1.2.3 From f7e8ca91e03165abb82d4c82555dc4ef96340cc9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 6 May 2022 23:57:58 +0300 Subject: Prepare v5.2.0-beta1 --- .../docs/5.1/assets/brand/bootstrap-logo-black.svg | 1 - .../docs/5.1/assets/brand/bootstrap-logo-shadow.png | Bin 48625 -> 0 bytes .../docs/5.1/assets/brand/bootstrap-logo-white.svg | 1 - .../static/docs/5.1/assets/brand/bootstrap-logo.svg | 1 - .../docs/5.1/assets/brand/bootstrap-social-logo.png | Bin 145590 -> 0 bytes .../docs/5.1/assets/brand/bootstrap-social.png | Bin 54961 -> 0 bytes site/static/docs/5.1/assets/img/bootstrap-icons.png | Bin 40798 -> 0 bytes .../docs/5.1/assets/img/bootstrap-icons@2x.png | Bin 125571 -> 0 bytes .../5.1/assets/img/bootstrap-themes-collage.png | Bin 74829 -> 0 bytes .../5.1/assets/img/bootstrap-themes-collage@2x.png | Bin 244640 -> 0 bytes .../static/docs/5.1/assets/img/bootstrap-themes.png | Bin 88695 -> 0 bytes .../docs/5.1/assets/img/bootstrap-themes@2x.png | Bin 278159 -> 0 bytes .../docs/5.1/assets/img/examples/album-rtl.png | Bin 6392 -> 0 bytes .../docs/5.1/assets/img/examples/album-rtl@2x.png | Bin 15450 -> 0 bytes site/static/docs/5.1/assets/img/examples/album.png | Bin 10760 -> 0 bytes .../docs/5.1/assets/img/examples/album@2x.png | Bin 25026 -> 0 bytes .../docs/5.1/assets/img/examples/blog-rtl.png | Bin 12545 -> 0 bytes .../docs/5.1/assets/img/examples/blog-rtl@2x.png | Bin 31035 -> 0 bytes site/static/docs/5.1/assets/img/examples/blog.png | Bin 15245 -> 0 bytes .../static/docs/5.1/assets/img/examples/blog@2x.png | Bin 36944 -> 0 bytes .../docs/5.1/assets/img/examples/carousel-rtl.png | Bin 10344 -> 0 bytes .../5.1/assets/img/examples/carousel-rtl@2x.png | Bin 24535 -> 0 bytes .../docs/5.1/assets/img/examples/carousel.png | Bin 13314 -> 0 bytes .../docs/5.1/assets/img/examples/carousel@2x.png | Bin 31465 -> 0 bytes .../docs/5.1/assets/img/examples/cheatsheet-rtl.png | Bin 6089 -> 0 bytes .../5.1/assets/img/examples/cheatsheet-rtl@2x.png | Bin 13863 -> 0 bytes .../docs/5.1/assets/img/examples/cheatsheet.png | Bin 8132 -> 0 bytes .../docs/5.1/assets/img/examples/cheatsheet@2x.png | Bin 19324 -> 0 bytes .../docs/5.1/assets/img/examples/checkout-rtl.png | Bin 8848 -> 0 bytes .../5.1/assets/img/examples/checkout-rtl@2x.png | Bin 21965 -> 0 bytes .../docs/5.1/assets/img/examples/checkout.png | Bin 7639 -> 0 bytes .../docs/5.1/assets/img/examples/checkout@2x.png | Bin 19105 -> 0 bytes site/static/docs/5.1/assets/img/examples/cover.png | Bin 7240 -> 0 bytes .../docs/5.1/assets/img/examples/cover@2x.png | Bin 17927 -> 0 bytes .../docs/5.1/assets/img/examples/dashboard-rtl.png | Bin 8261 -> 0 bytes .../5.1/assets/img/examples/dashboard-rtl@2x.png | Bin 19399 -> 0 bytes .../docs/5.1/assets/img/examples/dashboard.png | Bin 11914 -> 0 bytes .../docs/5.1/assets/img/examples/dashboard@2x.png | Bin 26556 -> 0 bytes .../docs/5.1/assets/img/examples/dropdowns.png | Bin 6146 -> 0 bytes .../docs/5.1/assets/img/examples/dropdowns@2x.png | Bin 15203 -> 0 bytes .../docs/5.1/assets/img/examples/features.png | Bin 6067 -> 0 bytes .../docs/5.1/assets/img/examples/features@2x.png | Bin 15002 -> 0 bytes .../static/docs/5.1/assets/img/examples/footers.png | Bin 4324 -> 0 bytes .../docs/5.1/assets/img/examples/footers@2x.png | Bin 10238 -> 0 bytes site/static/docs/5.1/assets/img/examples/grid.png | Bin 14485 -> 0 bytes .../static/docs/5.1/assets/img/examples/grid@2x.png | Bin 34834 -> 0 bytes .../static/docs/5.1/assets/img/examples/headers.png | Bin 5197 -> 0 bytes .../docs/5.1/assets/img/examples/headers@2x.png | Bin 12639 -> 0 bytes site/static/docs/5.1/assets/img/examples/heroes.png | Bin 9017 -> 0 bytes .../docs/5.1/assets/img/examples/heroes@2x.png | Bin 23433 -> 0 bytes .../docs/5.1/assets/img/examples/jumbotron.png | Bin 9155 -> 0 bytes .../docs/5.1/assets/img/examples/jumbotron@2x.png | Bin 23316 -> 0 bytes .../docs/5.1/assets/img/examples/list-groups.png | Bin 7134 -> 0 bytes .../docs/5.1/assets/img/examples/list-groups@2x.png | Bin 17804 -> 0 bytes .../static/docs/5.1/assets/img/examples/masonry.png | Bin 15253 -> 0 bytes .../docs/5.1/assets/img/examples/masonry@2x.png | Bin 37733 -> 0 bytes site/static/docs/5.1/assets/img/examples/modals.png | Bin 4814 -> 0 bytes .../docs/5.1/assets/img/examples/modals@2x.png | Bin 11689 -> 0 bytes .../docs/5.1/assets/img/examples/navbar-bottom.png | Bin 4873 -> 0 bytes .../5.1/assets/img/examples/navbar-bottom@2x.png | Bin 11666 -> 0 bytes .../docs/5.1/assets/img/examples/navbar-fixed.png | Bin 5911 -> 0 bytes .../5.1/assets/img/examples/navbar-fixed@2x.png | Bin 14103 -> 0 bytes .../docs/5.1/assets/img/examples/navbar-static.png | Bin 6624 -> 0 bytes .../5.1/assets/img/examples/navbar-static@2x.png | Bin 15155 -> 0 bytes .../5.1/assets/img/examples/navbars-offcanvas.png | Bin 6919 -> 0 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 17121 -> 0 bytes .../static/docs/5.1/assets/img/examples/navbars.png | Bin 13126 -> 0 bytes .../docs/5.1/assets/img/examples/navbars@2x.png | Bin 31168 -> 0 bytes .../5.1/assets/img/examples/offcanvas-navbar.png | Bin 9691 -> 0 bytes .../5.1/assets/img/examples/offcanvas-navbar@2x.png | Bin 23975 -> 0 bytes .../static/docs/5.1/assets/img/examples/pricing.png | Bin 11621 -> 0 bytes .../docs/5.1/assets/img/examples/pricing@2x.png | Bin 29088 -> 0 bytes .../static/docs/5.1/assets/img/examples/product.png | Bin 12906 -> 0 bytes .../docs/5.1/assets/img/examples/product@2x.png | Bin 27953 -> 0 bytes .../docs/5.1/assets/img/examples/sidebars.png | Bin 12287 -> 0 bytes .../docs/5.1/assets/img/examples/sidebars@2x.png | Bin 33499 -> 0 bytes .../static/docs/5.1/assets/img/examples/sign-in.png | Bin 2199 -> 0 bytes .../docs/5.1/assets/img/examples/sign-in@2x.png | Bin 4568 -> 0 bytes .../5.1/assets/img/examples/starter-template.png | Bin 7753 -> 0 bytes .../5.1/assets/img/examples/starter-template@2x.png | Bin 20134 -> 0 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 6979 -> 0 bytes .../assets/img/examples/sticky-footer-navbar@2x.png | Bin 15836 -> 0 bytes .../docs/5.1/assets/img/examples/sticky-footer.png | Bin 4280 -> 0 bytes .../5.1/assets/img/examples/sticky-footer@2x.png | Bin 9665 -> 0 bytes .../assets/img/favicons/android-chrome-192x192.png | Bin 8364 -> 0 bytes .../assets/img/favicons/android-chrome-512x512.png | Bin 23832 -> 0 bytes .../5.1/assets/img/favicons/apple-touch-icon.png | Bin 7650 -> 0 bytes .../docs/5.1/assets/img/favicons/favicon-16x16.png | Bin 529 -> 0 bytes .../docs/5.1/assets/img/favicons/favicon-32x32.png | Bin 1159 -> 0 bytes .../static/docs/5.1/assets/img/favicons/favicon.ico | Bin 15086 -> 0 bytes .../docs/5.1/assets/img/favicons/manifest.json | 20 -------------------- .../5.1/assets/img/favicons/safari-pinned-tab.svg | 1 - site/static/docs/5.1/assets/js/validate-forms.js | 19 ------------------- .../docs/5.2/assets/brand/bootstrap-logo-black.svg | 1 + .../docs/5.2/assets/brand/bootstrap-logo-shadow.png | Bin 0 -> 48625 bytes .../docs/5.2/assets/brand/bootstrap-logo-white.svg | 1 + .../static/docs/5.2/assets/brand/bootstrap-logo.svg | 1 + .../docs/5.2/assets/brand/bootstrap-social-logo.png | Bin 0 -> 145590 bytes .../docs/5.2/assets/brand/bootstrap-social.png | Bin 0 -> 54961 bytes site/static/docs/5.2/assets/img/bootstrap-icons.png | Bin 0 -> 40798 bytes .../docs/5.2/assets/img/bootstrap-icons@2x.png | Bin 0 -> 125571 bytes .../5.2/assets/img/bootstrap-themes-collage.png | Bin 0 -> 74829 bytes .../5.2/assets/img/bootstrap-themes-collage@2x.png | Bin 0 -> 244640 bytes .../static/docs/5.2/assets/img/bootstrap-themes.png | Bin 0 -> 88695 bytes .../docs/5.2/assets/img/bootstrap-themes@2x.png | Bin 0 -> 278159 bytes .../docs/5.2/assets/img/examples/album-rtl.png | Bin 0 -> 6392 bytes .../docs/5.2/assets/img/examples/album-rtl@2x.png | Bin 0 -> 15450 bytes site/static/docs/5.2/assets/img/examples/album.png | Bin 0 -> 10760 bytes .../docs/5.2/assets/img/examples/album@2x.png | Bin 0 -> 25026 bytes .../docs/5.2/assets/img/examples/blog-rtl.png | Bin 0 -> 12545 bytes .../docs/5.2/assets/img/examples/blog-rtl@2x.png | Bin 0 -> 31035 bytes site/static/docs/5.2/assets/img/examples/blog.png | Bin 0 -> 15245 bytes .../static/docs/5.2/assets/img/examples/blog@2x.png | Bin 0 -> 36944 bytes .../docs/5.2/assets/img/examples/carousel-rtl.png | Bin 0 -> 10344 bytes .../5.2/assets/img/examples/carousel-rtl@2x.png | Bin 0 -> 24535 bytes .../docs/5.2/assets/img/examples/carousel.png | Bin 0 -> 13314 bytes .../docs/5.2/assets/img/examples/carousel@2x.png | Bin 0 -> 31465 bytes .../docs/5.2/assets/img/examples/cheatsheet-rtl.png | Bin 0 -> 6089 bytes .../5.2/assets/img/examples/cheatsheet-rtl@2x.png | Bin 0 -> 13863 bytes .../docs/5.2/assets/img/examples/cheatsheet.png | Bin 0 -> 8132 bytes .../docs/5.2/assets/img/examples/cheatsheet@2x.png | Bin 0 -> 19324 bytes .../docs/5.2/assets/img/examples/checkout-rtl.png | Bin 0 -> 8848 bytes .../5.2/assets/img/examples/checkout-rtl@2x.png | Bin 0 -> 21965 bytes .../docs/5.2/assets/img/examples/checkout.png | Bin 0 -> 7639 bytes .../docs/5.2/assets/img/examples/checkout@2x.png | Bin 0 -> 19105 bytes site/static/docs/5.2/assets/img/examples/cover.png | Bin 0 -> 7240 bytes .../docs/5.2/assets/img/examples/cover@2x.png | Bin 0 -> 17927 bytes .../docs/5.2/assets/img/examples/dashboard-rtl.png | Bin 0 -> 8261 bytes .../5.2/assets/img/examples/dashboard-rtl@2x.png | Bin 0 -> 19399 bytes .../docs/5.2/assets/img/examples/dashboard.png | Bin 0 -> 11914 bytes .../docs/5.2/assets/img/examples/dashboard@2x.png | Bin 0 -> 26556 bytes .../docs/5.2/assets/img/examples/dropdowns.png | Bin 0 -> 6146 bytes .../docs/5.2/assets/img/examples/dropdowns@2x.png | Bin 0 -> 15203 bytes .../docs/5.2/assets/img/examples/features.png | Bin 0 -> 6067 bytes .../docs/5.2/assets/img/examples/features@2x.png | Bin 0 -> 15002 bytes .../static/docs/5.2/assets/img/examples/footers.png | Bin 0 -> 4324 bytes .../docs/5.2/assets/img/examples/footers@2x.png | Bin 0 -> 10238 bytes site/static/docs/5.2/assets/img/examples/grid.png | Bin 0 -> 14485 bytes .../static/docs/5.2/assets/img/examples/grid@2x.png | Bin 0 -> 34834 bytes .../static/docs/5.2/assets/img/examples/headers.png | Bin 0 -> 5197 bytes .../docs/5.2/assets/img/examples/headers@2x.png | Bin 0 -> 12639 bytes site/static/docs/5.2/assets/img/examples/heroes.png | Bin 0 -> 9017 bytes .../docs/5.2/assets/img/examples/heroes@2x.png | Bin 0 -> 23433 bytes .../docs/5.2/assets/img/examples/jumbotron.png | Bin 0 -> 9155 bytes .../docs/5.2/assets/img/examples/jumbotron@2x.png | Bin 0 -> 23316 bytes .../docs/5.2/assets/img/examples/list-groups.png | Bin 0 -> 7134 bytes .../docs/5.2/assets/img/examples/list-groups@2x.png | Bin 0 -> 17804 bytes .../static/docs/5.2/assets/img/examples/masonry.png | Bin 0 -> 15253 bytes .../docs/5.2/assets/img/examples/masonry@2x.png | Bin 0 -> 37733 bytes site/static/docs/5.2/assets/img/examples/modals.png | Bin 0 -> 4814 bytes .../docs/5.2/assets/img/examples/modals@2x.png | Bin 0 -> 11689 bytes .../docs/5.2/assets/img/examples/navbar-bottom.png | Bin 0 -> 4873 bytes .../5.2/assets/img/examples/navbar-bottom@2x.png | Bin 0 -> 11666 bytes .../docs/5.2/assets/img/examples/navbar-fixed.png | Bin 0 -> 5911 bytes .../5.2/assets/img/examples/navbar-fixed@2x.png | Bin 0 -> 14103 bytes .../docs/5.2/assets/img/examples/navbar-static.png | Bin 0 -> 6624 bytes .../5.2/assets/img/examples/navbar-static@2x.png | Bin 0 -> 15155 bytes .../5.2/assets/img/examples/navbars-offcanvas.png | Bin 0 -> 6919 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 0 -> 17121 bytes .../static/docs/5.2/assets/img/examples/navbars.png | Bin 0 -> 13126 bytes .../docs/5.2/assets/img/examples/navbars@2x.png | Bin 0 -> 31168 bytes .../5.2/assets/img/examples/offcanvas-navbar.png | Bin 0 -> 9691 bytes .../5.2/assets/img/examples/offcanvas-navbar@2x.png | Bin 0 -> 23975 bytes .../static/docs/5.2/assets/img/examples/pricing.png | Bin 0 -> 11621 bytes .../docs/5.2/assets/img/examples/pricing@2x.png | Bin 0 -> 29088 bytes .../static/docs/5.2/assets/img/examples/product.png | Bin 0 -> 12906 bytes .../docs/5.2/assets/img/examples/product@2x.png | Bin 0 -> 27953 bytes .../docs/5.2/assets/img/examples/sidebars.png | Bin 0 -> 12287 bytes .../docs/5.2/assets/img/examples/sidebars@2x.png | Bin 0 -> 33499 bytes .../static/docs/5.2/assets/img/examples/sign-in.png | Bin 0 -> 2199 bytes .../docs/5.2/assets/img/examples/sign-in@2x.png | Bin 0 -> 4568 bytes .../5.2/assets/img/examples/starter-template.png | Bin 0 -> 7753 bytes .../5.2/assets/img/examples/starter-template@2x.png | Bin 0 -> 20134 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 0 -> 6979 bytes .../assets/img/examples/sticky-footer-navbar@2x.png | Bin 0 -> 15836 bytes .../docs/5.2/assets/img/examples/sticky-footer.png | Bin 0 -> 4280 bytes .../5.2/assets/img/examples/sticky-footer@2x.png | Bin 0 -> 9665 bytes .../assets/img/favicons/android-chrome-192x192.png | Bin 0 -> 8364 bytes .../assets/img/favicons/android-chrome-512x512.png | Bin 0 -> 23832 bytes .../5.2/assets/img/favicons/apple-touch-icon.png | Bin 0 -> 7650 bytes .../docs/5.2/assets/img/favicons/favicon-16x16.png | Bin 0 -> 529 bytes .../docs/5.2/assets/img/favicons/favicon-32x32.png | Bin 0 -> 1159 bytes .../static/docs/5.2/assets/img/favicons/favicon.ico | Bin 0 -> 15086 bytes .../docs/5.2/assets/img/favicons/manifest.json | 20 ++++++++++++++++++++ .../5.2/assets/img/favicons/safari-pinned-tab.svg | 1 + site/static/docs/5.2/assets/js/validate-forms.js | 19 +++++++++++++++++++ 186 files changed, 43 insertions(+), 43 deletions(-) delete mode 100644 site/static/docs/5.1/assets/brand/bootstrap-logo-black.svg delete mode 100644 site/static/docs/5.1/assets/brand/bootstrap-logo-shadow.png delete mode 100644 site/static/docs/5.1/assets/brand/bootstrap-logo-white.svg delete mode 100644 site/static/docs/5.1/assets/brand/bootstrap-logo.svg delete mode 100644 site/static/docs/5.1/assets/brand/bootstrap-social-logo.png delete mode 100644 site/static/docs/5.1/assets/brand/bootstrap-social.png delete mode 100644 site/static/docs/5.1/assets/img/bootstrap-icons.png delete mode 100644 site/static/docs/5.1/assets/img/bootstrap-icons@2x.png delete mode 100644 site/static/docs/5.1/assets/img/bootstrap-themes-collage.png delete mode 100644 site/static/docs/5.1/assets/img/bootstrap-themes-collage@2x.png delete mode 100644 site/static/docs/5.1/assets/img/bootstrap-themes.png delete mode 100644 site/static/docs/5.1/assets/img/bootstrap-themes@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/album-rtl.png delete mode 100644 site/static/docs/5.1/assets/img/examples/album-rtl@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/album.png delete mode 100644 site/static/docs/5.1/assets/img/examples/album@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/blog-rtl.png delete mode 100644 site/static/docs/5.1/assets/img/examples/blog-rtl@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/blog.png delete mode 100644 site/static/docs/5.1/assets/img/examples/blog@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/carousel-rtl.png delete mode 100644 site/static/docs/5.1/assets/img/examples/carousel-rtl@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/carousel.png delete mode 100644 site/static/docs/5.1/assets/img/examples/carousel@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/cheatsheet-rtl.png delete mode 100644 site/static/docs/5.1/assets/img/examples/cheatsheet-rtl@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/cheatsheet.png delete mode 100644 site/static/docs/5.1/assets/img/examples/cheatsheet@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/checkout-rtl.png delete mode 100644 site/static/docs/5.1/assets/img/examples/checkout-rtl@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/checkout.png delete mode 100644 site/static/docs/5.1/assets/img/examples/checkout@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/cover.png delete mode 100644 site/static/docs/5.1/assets/img/examples/cover@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/dashboard-rtl.png delete mode 100644 site/static/docs/5.1/assets/img/examples/dashboard-rtl@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/dashboard.png delete mode 100644 site/static/docs/5.1/assets/img/examples/dashboard@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/dropdowns.png delete mode 100644 site/static/docs/5.1/assets/img/examples/dropdowns@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/features.png delete mode 100644 site/static/docs/5.1/assets/img/examples/features@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/footers.png delete mode 100644 site/static/docs/5.1/assets/img/examples/footers@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/grid.png delete mode 100644 site/static/docs/5.1/assets/img/examples/grid@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/headers.png delete mode 100644 site/static/docs/5.1/assets/img/examples/headers@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/heroes.png delete mode 100644 site/static/docs/5.1/assets/img/examples/heroes@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/jumbotron.png delete mode 100644 site/static/docs/5.1/assets/img/examples/jumbotron@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/list-groups.png delete mode 100644 site/static/docs/5.1/assets/img/examples/list-groups@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/masonry.png delete mode 100644 site/static/docs/5.1/assets/img/examples/masonry@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/modals.png delete mode 100644 site/static/docs/5.1/assets/img/examples/modals@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbar-bottom.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbar-bottom@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbar-fixed.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbar-fixed@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbar-static.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbar-static@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbars.png delete mode 100644 site/static/docs/5.1/assets/img/examples/navbars@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/offcanvas-navbar.png delete mode 100644 site/static/docs/5.1/assets/img/examples/offcanvas-navbar@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/pricing.png delete mode 100644 site/static/docs/5.1/assets/img/examples/pricing@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/product.png delete mode 100644 site/static/docs/5.1/assets/img/examples/product@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sidebars.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sidebars@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sign-in.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sign-in@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/starter-template.png delete mode 100644 site/static/docs/5.1/assets/img/examples/starter-template@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sticky-footer-navbar.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sticky-footer-navbar@2x.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sticky-footer.png delete mode 100644 site/static/docs/5.1/assets/img/examples/sticky-footer@2x.png delete mode 100644 site/static/docs/5.1/assets/img/favicons/android-chrome-192x192.png delete mode 100644 site/static/docs/5.1/assets/img/favicons/android-chrome-512x512.png delete mode 100644 site/static/docs/5.1/assets/img/favicons/apple-touch-icon.png delete mode 100644 site/static/docs/5.1/assets/img/favicons/favicon-16x16.png delete mode 100644 site/static/docs/5.1/assets/img/favicons/favicon-32x32.png delete mode 100644 site/static/docs/5.1/assets/img/favicons/favicon.ico delete mode 100644 site/static/docs/5.1/assets/img/favicons/manifest.json delete mode 100644 site/static/docs/5.1/assets/img/favicons/safari-pinned-tab.svg delete mode 100644 site/static/docs/5.1/assets/js/validate-forms.js create mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg create mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png create mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg create mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo.svg create mode 100644 site/static/docs/5.2/assets/brand/bootstrap-social-logo.png create mode 100644 site/static/docs/5.2/assets/brand/bootstrap-social.png create mode 100644 site/static/docs/5.2/assets/img/bootstrap-icons.png create mode 100644 site/static/docs/5.2/assets/img/bootstrap-icons@2x.png create mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes-collage.png create mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png create mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes.png create mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/album-rtl.png create mode 100644 site/static/docs/5.2/assets/img/examples/album-rtl@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/album.png create mode 100644 site/static/docs/5.2/assets/img/examples/album@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/blog-rtl.png create mode 100644 site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/blog.png create mode 100644 site/static/docs/5.2/assets/img/examples/blog@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/carousel-rtl.png create mode 100644 site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/carousel.png create mode 100644 site/static/docs/5.2/assets/img/examples/carousel@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png create mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet.png create mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/checkout-rtl.png create mode 100644 site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/checkout.png create mode 100644 site/static/docs/5.2/assets/img/examples/checkout@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/cover.png create mode 100644 site/static/docs/5.2/assets/img/examples/cover@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/dashboard-rtl.png create mode 100644 site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/dashboard.png create mode 100644 site/static/docs/5.2/assets/img/examples/dashboard@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/dropdowns.png create mode 100644 site/static/docs/5.2/assets/img/examples/dropdowns@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/features.png create mode 100644 site/static/docs/5.2/assets/img/examples/features@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/footers.png create mode 100644 site/static/docs/5.2/assets/img/examples/footers@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/grid.png create mode 100644 site/static/docs/5.2/assets/img/examples/grid@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/headers.png create mode 100644 site/static/docs/5.2/assets/img/examples/headers@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/heroes.png create mode 100644 site/static/docs/5.2/assets/img/examples/heroes@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/jumbotron.png create mode 100644 site/static/docs/5.2/assets/img/examples/jumbotron@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/list-groups.png create mode 100644 site/static/docs/5.2/assets/img/examples/list-groups@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/masonry.png create mode 100644 site/static/docs/5.2/assets/img/examples/masonry@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/modals.png create mode 100644 site/static/docs/5.2/assets/img/examples/modals@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbar-bottom.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbar-fixed.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbar-static.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbar-static@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbars.png create mode 100644 site/static/docs/5.2/assets/img/examples/navbars@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png create mode 100644 site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/pricing.png create mode 100644 site/static/docs/5.2/assets/img/examples/pricing@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/product.png create mode 100644 site/static/docs/5.2/assets/img/examples/product@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/sidebars.png create mode 100644 site/static/docs/5.2/assets/img/examples/sidebars@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/sign-in.png create mode 100644 site/static/docs/5.2/assets/img/examples/sign-in@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/starter-template.png create mode 100644 site/static/docs/5.2/assets/img/examples/starter-template@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png create mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png create mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer.png create mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png create mode 100644 site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png create mode 100644 site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png create mode 100644 site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png create mode 100644 site/static/docs/5.2/assets/img/favicons/favicon-16x16.png create mode 100644 site/static/docs/5.2/assets/img/favicons/favicon-32x32.png create mode 100644 site/static/docs/5.2/assets/img/favicons/favicon.ico create mode 100644 site/static/docs/5.2/assets/img/favicons/manifest.json create mode 100644 site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg create mode 100644 site/static/docs/5.2/assets/js/validate-forms.js (limited to 'site/static/docs') diff --git a/site/static/docs/5.1/assets/brand/bootstrap-logo-black.svg b/site/static/docs/5.1/assets/brand/bootstrap-logo-black.svg deleted file mode 100644 index 31e66e1e9..000000000 --- a/site/static/docs/5.1/assets/brand/bootstrap-logo-black.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site/static/docs/5.1/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.1/assets/brand/bootstrap-logo-shadow.png deleted file mode 100644 index 3643b912e..000000000 Binary files a/site/static/docs/5.1/assets/brand/bootstrap-logo-shadow.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/brand/bootstrap-logo-white.svg b/site/static/docs/5.1/assets/brand/bootstrap-logo-white.svg deleted file mode 100644 index f73d7ca2a..000000000 --- a/site/static/docs/5.1/assets/brand/bootstrap-logo-white.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site/static/docs/5.1/assets/brand/bootstrap-logo.svg b/site/static/docs/5.1/assets/brand/bootstrap-logo.svg deleted file mode 100644 index f0189652b..000000000 --- a/site/static/docs/5.1/assets/brand/bootstrap-logo.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/site/static/docs/5.1/assets/brand/bootstrap-social-logo.png b/site/static/docs/5.1/assets/brand/bootstrap-social-logo.png deleted file mode 100644 index 9dbb732a4..000000000 Binary files a/site/static/docs/5.1/assets/brand/bootstrap-social-logo.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/brand/bootstrap-social.png b/site/static/docs/5.1/assets/brand/bootstrap-social.png deleted file mode 100644 index c7adc6f85..000000000 Binary files a/site/static/docs/5.1/assets/brand/bootstrap-social.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/bootstrap-icons.png b/site/static/docs/5.1/assets/img/bootstrap-icons.png deleted file mode 100644 index 9c418d5f3..000000000 Binary files a/site/static/docs/5.1/assets/img/bootstrap-icons.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.1/assets/img/bootstrap-icons@2x.png deleted file mode 100644 index 8d08df766..000000000 Binary files a/site/static/docs/5.1/assets/img/bootstrap-icons@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.1/assets/img/bootstrap-themes-collage.png deleted file mode 100644 index 0a3bf5d69..000000000 Binary files a/site/static/docs/5.1/assets/img/bootstrap-themes-collage.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.1/assets/img/bootstrap-themes-collage@2x.png deleted file mode 100644 index ad165eb19..000000000 Binary files a/site/static/docs/5.1/assets/img/bootstrap-themes-collage@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/bootstrap-themes.png b/site/static/docs/5.1/assets/img/bootstrap-themes.png deleted file mode 100644 index d43dba2a7..000000000 Binary files a/site/static/docs/5.1/assets/img/bootstrap-themes.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/bootstrap-themes@2x.png b/site/static/docs/5.1/assets/img/bootstrap-themes@2x.png deleted file mode 100644 index 13c32337d..000000000 Binary files a/site/static/docs/5.1/assets/img/bootstrap-themes@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/album-rtl.png b/site/static/docs/5.1/assets/img/examples/album-rtl.png deleted file mode 100644 index 8bec58f1c..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/album-rtl.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.1/assets/img/examples/album-rtl@2x.png deleted file mode 100644 index 47b5b9a4a..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/album-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/album.png b/site/static/docs/5.1/assets/img/examples/album.png deleted file mode 100644 index 9f628babf..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/album.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/album@2x.png b/site/static/docs/5.1/assets/img/examples/album@2x.png deleted file mode 100644 index 00c938df8..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/album@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/blog-rtl.png b/site/static/docs/5.1/assets/img/examples/blog-rtl.png deleted file mode 100644 index 5d01bb092..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/blog-rtl.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/blog-rtl@2x.png b/site/static/docs/5.1/assets/img/examples/blog-rtl@2x.png deleted file mode 100644 index 56554e2bf..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/blog-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/blog.png b/site/static/docs/5.1/assets/img/examples/blog.png deleted file mode 100644 index 3ce428418..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/blog.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/blog@2x.png b/site/static/docs/5.1/assets/img/examples/blog@2x.png deleted file mode 100644 index f5480314b..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/blog@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/carousel-rtl.png b/site/static/docs/5.1/assets/img/examples/carousel-rtl.png deleted file mode 100644 index 1fb5ae6a8..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/carousel-rtl.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.1/assets/img/examples/carousel-rtl@2x.png deleted file mode 100644 index 2beeca096..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/carousel-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/carousel.png b/site/static/docs/5.1/assets/img/examples/carousel.png deleted file mode 100644 index b8ea3ce1c..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/carousel.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/carousel@2x.png b/site/static/docs/5.1/assets/img/examples/carousel@2x.png deleted file mode 100644 index 39df35930..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/carousel@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/cheatsheet-rtl.png b/site/static/docs/5.1/assets/img/examples/cheatsheet-rtl.png deleted file mode 100644 index 93fd59324..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/cheatsheet-rtl.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/cheatsheet-rtl@2x.png b/site/static/docs/5.1/assets/img/examples/cheatsheet-rtl@2x.png deleted file mode 100644 index fa895cec0..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/cheatsheet-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/cheatsheet.png b/site/static/docs/5.1/assets/img/examples/cheatsheet.png deleted file mode 100644 index 074be0015..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/cheatsheet.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/cheatsheet@2x.png b/site/static/docs/5.1/assets/img/examples/cheatsheet@2x.png deleted file mode 100644 index c958b6cb6..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/cheatsheet@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/checkout-rtl.png b/site/static/docs/5.1/assets/img/examples/checkout-rtl.png deleted file mode 100644 index f3cb89ea4..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/checkout-rtl.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/checkout-rtl@2x.png b/site/static/docs/5.1/assets/img/examples/checkout-rtl@2x.png deleted file mode 100644 index 5d7b801cf..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/checkout-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/checkout.png b/site/static/docs/5.1/assets/img/examples/checkout.png deleted file mode 100644 index cb81ef2d7..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/checkout.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/checkout@2x.png b/site/static/docs/5.1/assets/img/examples/checkout@2x.png deleted file mode 100644 index 79c7b4bb8..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/checkout@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/cover.png b/site/static/docs/5.1/assets/img/examples/cover.png deleted file mode 100644 index 5458ff11d..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/cover.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/cover@2x.png b/site/static/docs/5.1/assets/img/examples/cover@2x.png deleted file mode 100644 index eacd82e98..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/cover@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/dashboard-rtl.png b/site/static/docs/5.1/assets/img/examples/dashboard-rtl.png deleted file mode 100644 index 7f5b5bb9d..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/dashboard-rtl.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/dashboard-rtl@2x.png b/site/static/docs/5.1/assets/img/examples/dashboard-rtl@2x.png deleted file mode 100644 index 26b031a99..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/dashboard-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/dashboard.png b/site/static/docs/5.1/assets/img/examples/dashboard.png deleted file mode 100644 index 52988da73..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/dashboard.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/dashboard@2x.png b/site/static/docs/5.1/assets/img/examples/dashboard@2x.png deleted file mode 100644 index 52b23dff6..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/dashboard@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/dropdowns.png b/site/static/docs/5.1/assets/img/examples/dropdowns.png deleted file mode 100644 index 64fc8f2f0..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/dropdowns.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/dropdowns@2x.png b/site/static/docs/5.1/assets/img/examples/dropdowns@2x.png deleted file mode 100644 index 35fecb49a..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/dropdowns@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/features.png b/site/static/docs/5.1/assets/img/examples/features.png deleted file mode 100644 index c77ed09bb..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/features.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/features@2x.png b/site/static/docs/5.1/assets/img/examples/features@2x.png deleted file mode 100644 index 88bd33012..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/features@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/footers.png b/site/static/docs/5.1/assets/img/examples/footers.png deleted file mode 100644 index ac20b7f5d..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/footers.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/footers@2x.png b/site/static/docs/5.1/assets/img/examples/footers@2x.png deleted file mode 100644 index a9a07a2cf..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/footers@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/grid.png b/site/static/docs/5.1/assets/img/examples/grid.png deleted file mode 100644 index 2c18784c2..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/grid.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/grid@2x.png b/site/static/docs/5.1/assets/img/examples/grid@2x.png deleted file mode 100644 index e95c36365..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/grid@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/headers.png b/site/static/docs/5.1/assets/img/examples/headers.png deleted file mode 100644 index 8ad7f6cd2..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/headers.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/headers@2x.png b/site/static/docs/5.1/assets/img/examples/headers@2x.png deleted file mode 100644 index 234f9b1e6..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/headers@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/heroes.png b/site/static/docs/5.1/assets/img/examples/heroes.png deleted file mode 100644 index e9bc3e627..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/heroes.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/heroes@2x.png b/site/static/docs/5.1/assets/img/examples/heroes@2x.png deleted file mode 100644 index fff3a72c7..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/heroes@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/jumbotron.png b/site/static/docs/5.1/assets/img/examples/jumbotron.png deleted file mode 100644 index 48e0c9c0e..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/jumbotron.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/jumbotron@2x.png b/site/static/docs/5.1/assets/img/examples/jumbotron@2x.png deleted file mode 100644 index 229b63007..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/jumbotron@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/list-groups.png b/site/static/docs/5.1/assets/img/examples/list-groups.png deleted file mode 100644 index 9f49a54ad..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/list-groups.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/list-groups@2x.png b/site/static/docs/5.1/assets/img/examples/list-groups@2x.png deleted file mode 100644 index 575d19818..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/list-groups@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/masonry.png b/site/static/docs/5.1/assets/img/examples/masonry.png deleted file mode 100644 index 20137306f..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/masonry.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/masonry@2x.png b/site/static/docs/5.1/assets/img/examples/masonry@2x.png deleted file mode 100644 index 8d9a5cf97..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/masonry@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/modals.png b/site/static/docs/5.1/assets/img/examples/modals.png deleted file mode 100644 index 0c8876a67..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/modals.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/modals@2x.png b/site/static/docs/5.1/assets/img/examples/modals@2x.png deleted file mode 100644 index c18990ace..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/modals@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbar-bottom.png b/site/static/docs/5.1/assets/img/examples/navbar-bottom.png deleted file mode 100644 index af47666f1..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbar-bottom.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbar-bottom@2x.png b/site/static/docs/5.1/assets/img/examples/navbar-bottom@2x.png deleted file mode 100644 index 93a7cdc49..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbar-bottom@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbar-fixed.png b/site/static/docs/5.1/assets/img/examples/navbar-fixed.png deleted file mode 100644 index 97df67e96..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbar-fixed.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbar-fixed@2x.png b/site/static/docs/5.1/assets/img/examples/navbar-fixed@2x.png deleted file mode 100644 index 3e0f98b95..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbar-fixed@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbar-static.png b/site/static/docs/5.1/assets/img/examples/navbar-static.png deleted file mode 100644 index 8d54f182c..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbar-static.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbar-static@2x.png b/site/static/docs/5.1/assets/img/examples/navbar-static@2x.png deleted file mode 100644 index 9b057371d..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbar-static@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png deleted file mode 100644 index 81b000dbf..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbars-offcanvas.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png deleted file mode 100644 index af5313436..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbars-offcanvas@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbars.png b/site/static/docs/5.1/assets/img/examples/navbars.png deleted file mode 100644 index 4e7e5fa6a..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbars.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/navbars@2x.png b/site/static/docs/5.1/assets/img/examples/navbars@2x.png deleted file mode 100644 index dc0cea085..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/navbars@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/offcanvas-navbar.png b/site/static/docs/5.1/assets/img/examples/offcanvas-navbar.png deleted file mode 100644 index 1e75d2663..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/offcanvas-navbar.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/offcanvas-navbar@2x.png b/site/static/docs/5.1/assets/img/examples/offcanvas-navbar@2x.png deleted file mode 100644 index e5287dde8..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/offcanvas-navbar@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/pricing.png b/site/static/docs/5.1/assets/img/examples/pricing.png deleted file mode 100644 index ea7224615..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/pricing.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/pricing@2x.png b/site/static/docs/5.1/assets/img/examples/pricing@2x.png deleted file mode 100644 index 959d808a9..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/pricing@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/product.png b/site/static/docs/5.1/assets/img/examples/product.png deleted file mode 100644 index a95eff622..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/product.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/product@2x.png b/site/static/docs/5.1/assets/img/examples/product@2x.png deleted file mode 100644 index 1dfe45482..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/product@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sidebars.png b/site/static/docs/5.1/assets/img/examples/sidebars.png deleted file mode 100644 index 00efb311e..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sidebars.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sidebars@2x.png b/site/static/docs/5.1/assets/img/examples/sidebars@2x.png deleted file mode 100644 index cb167e535..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sidebars@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sign-in.png b/site/static/docs/5.1/assets/img/examples/sign-in.png deleted file mode 100644 index 8d57f561c..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sign-in.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sign-in@2x.png b/site/static/docs/5.1/assets/img/examples/sign-in@2x.png deleted file mode 100644 index 477335984..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sign-in@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/starter-template.png b/site/static/docs/5.1/assets/img/examples/starter-template.png deleted file mode 100644 index d4b20217a..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/starter-template.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/starter-template@2x.png b/site/static/docs/5.1/assets/img/examples/starter-template@2x.png deleted file mode 100644 index 9323837ca..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/starter-template@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.1/assets/img/examples/sticky-footer-navbar.png deleted file mode 100644 index cc88cfb2d..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sticky-footer-navbar.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.1/assets/img/examples/sticky-footer-navbar@2x.png deleted file mode 100644 index 9478901f6..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sticky-footer-navbar@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sticky-footer.png b/site/static/docs/5.1/assets/img/examples/sticky-footer.png deleted file mode 100644 index 4b5246d38..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sticky-footer.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/examples/sticky-footer@2x.png b/site/static/docs/5.1/assets/img/examples/sticky-footer@2x.png deleted file mode 100644 index 5a008a0ac..000000000 Binary files a/site/static/docs/5.1/assets/img/examples/sticky-footer@2x.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/android-chrome-192x192.png b/site/static/docs/5.1/assets/img/favicons/android-chrome-192x192.png deleted file mode 100644 index 1c276a531..000000000 Binary files a/site/static/docs/5.1/assets/img/favicons/android-chrome-192x192.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/android-chrome-512x512.png b/site/static/docs/5.1/assets/img/favicons/android-chrome-512x512.png deleted file mode 100644 index 936025e1c..000000000 Binary files a/site/static/docs/5.1/assets/img/favicons/android-chrome-512x512.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.1/assets/img/favicons/apple-touch-icon.png deleted file mode 100644 index e7053f970..000000000 Binary files a/site/static/docs/5.1/assets/img/favicons/apple-touch-icon.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/favicon-16x16.png b/site/static/docs/5.1/assets/img/favicons/favicon-16x16.png deleted file mode 100644 index 46ab7f8c8..000000000 Binary files a/site/static/docs/5.1/assets/img/favicons/favicon-16x16.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/favicon-32x32.png b/site/static/docs/5.1/assets/img/favicons/favicon-32x32.png deleted file mode 100644 index ca0593a21..000000000 Binary files a/site/static/docs/5.1/assets/img/favicons/favicon-32x32.png and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/favicon.ico b/site/static/docs/5.1/assets/img/favicons/favicon.ico deleted file mode 100644 index 054990620..000000000 Binary files a/site/static/docs/5.1/assets/img/favicons/favicon.ico and /dev/null differ diff --git a/site/static/docs/5.1/assets/img/favicons/manifest.json b/site/static/docs/5.1/assets/img/favicons/manifest.json deleted file mode 100644 index 8f2f0f76b..000000000 --- a/site/static/docs/5.1/assets/img/favicons/manifest.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "Bootstrap", - "short_name": "Bootstrap", - "icons": [ - { - "src": "android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "start_url": "/?utm_source=a2hs", - "theme_color": "#7952b3", - "background_color": "#7952b3", - "display": "standalone" -} diff --git a/site/static/docs/5.1/assets/img/favicons/safari-pinned-tab.svg b/site/static/docs/5.1/assets/img/favicons/safari-pinned-tab.svg deleted file mode 100644 index aa6e85cb9..000000000 --- a/site/static/docs/5.1/assets/img/favicons/safari-pinned-tab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site/static/docs/5.1/assets/js/validate-forms.js b/site/static/docs/5.1/assets/js/validate-forms.js deleted file mode 100644 index 30ea0aa6b..000000000 --- a/site/static/docs/5.1/assets/js/validate-forms.js +++ /dev/null @@ -1,19 +0,0 @@ -// Example starter JavaScript for disabling form submissions if there are invalid fields -(() => { - 'use strict' - - // Fetch all the forms we want to apply custom Bootstrap validation styles to - const forms = document.querySelectorAll('.needs-validation') - - // Loop over them and prevent submission - Array.from(forms).forEach(form => { - form.addEventListener('submit', event => { - if (!form.checkValidity()) { - event.preventDefault() - event.stopPropagation() - } - - form.classList.add('was-validated') - }, false) - }) -})() diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg b/site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg new file mode 100644 index 000000000..31e66e1e9 --- /dev/null +++ b/site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png new file mode 100644 index 000000000..3643b912e Binary files /dev/null and b/site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png differ diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg b/site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg new file mode 100644 index 000000000..f73d7ca2a --- /dev/null +++ b/site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo.svg b/site/static/docs/5.2/assets/brand/bootstrap-logo.svg new file mode 100644 index 000000000..f0189652b --- /dev/null +++ b/site/static/docs/5.2/assets/brand/bootstrap-logo.svg @@ -0,0 +1 @@ + diff --git a/site/static/docs/5.2/assets/brand/bootstrap-social-logo.png b/site/static/docs/5.2/assets/brand/bootstrap-social-logo.png new file mode 100644 index 000000000..9dbb732a4 Binary files /dev/null and b/site/static/docs/5.2/assets/brand/bootstrap-social-logo.png differ diff --git a/site/static/docs/5.2/assets/brand/bootstrap-social.png b/site/static/docs/5.2/assets/brand/bootstrap-social.png new file mode 100644 index 000000000..c7adc6f85 Binary files /dev/null and b/site/static/docs/5.2/assets/brand/bootstrap-social.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-icons.png b/site/static/docs/5.2/assets/img/bootstrap-icons.png new file mode 100644 index 000000000..9c418d5f3 Binary files /dev/null and b/site/static/docs/5.2/assets/img/bootstrap-icons.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png new file mode 100644 index 000000000..8d08df766 Binary files /dev/null and b/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.2/assets/img/bootstrap-themes-collage.png new file mode 100644 index 000000000..0a3bf5d69 Binary files /dev/null and b/site/static/docs/5.2/assets/img/bootstrap-themes-collage.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png new file mode 100644 index 000000000..ad165eb19 Binary files /dev/null and b/site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes.png b/site/static/docs/5.2/assets/img/bootstrap-themes.png new file mode 100644 index 000000000..d43dba2a7 Binary files /dev/null and b/site/static/docs/5.2/assets/img/bootstrap-themes.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes@2x.png b/site/static/docs/5.2/assets/img/bootstrap-themes@2x.png new file mode 100644 index 000000000..13c32337d Binary files /dev/null and b/site/static/docs/5.2/assets/img/bootstrap-themes@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/album-rtl.png b/site/static/docs/5.2/assets/img/examples/album-rtl.png new file mode 100644 index 000000000..8bec58f1c Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/album-rtl.png differ diff --git a/site/static/docs/5.2/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/album-rtl@2x.png new file mode 100644 index 000000000..47b5b9a4a Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/album-rtl@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/album.png b/site/static/docs/5.2/assets/img/examples/album.png new file mode 100644 index 000000000..9f628babf Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/album.png differ diff --git a/site/static/docs/5.2/assets/img/examples/album@2x.png b/site/static/docs/5.2/assets/img/examples/album@2x.png new file mode 100644 index 000000000..00c938df8 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/album@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/blog-rtl.png b/site/static/docs/5.2/assets/img/examples/blog-rtl.png new file mode 100644 index 000000000..5d01bb092 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/blog-rtl.png differ diff --git a/site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png new file mode 100644 index 000000000..56554e2bf Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/blog.png b/site/static/docs/5.2/assets/img/examples/blog.png new file mode 100644 index 000000000..3ce428418 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/blog.png differ diff --git a/site/static/docs/5.2/assets/img/examples/blog@2x.png b/site/static/docs/5.2/assets/img/examples/blog@2x.png new file mode 100644 index 000000000..f5480314b Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/blog@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel-rtl.png b/site/static/docs/5.2/assets/img/examples/carousel-rtl.png new file mode 100644 index 000000000..1fb5ae6a8 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/carousel-rtl.png differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png new file mode 100644 index 000000000..2beeca096 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel.png b/site/static/docs/5.2/assets/img/examples/carousel.png new file mode 100644 index 000000000..b8ea3ce1c Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/carousel.png differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel@2x.png b/site/static/docs/5.2/assets/img/examples/carousel@2x.png new file mode 100644 index 000000000..39df35930 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/carousel@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png b/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png new file mode 100644 index 000000000..93fd59324 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png new file mode 100644 index 000000000..fa895cec0 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet.png b/site/static/docs/5.2/assets/img/examples/cheatsheet.png new file mode 100644 index 000000000..074be0015 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/cheatsheet.png differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png b/site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png new file mode 100644 index 000000000..c958b6cb6 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout-rtl.png b/site/static/docs/5.2/assets/img/examples/checkout-rtl.png new file mode 100644 index 000000000..f3cb89ea4 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/checkout-rtl.png differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png new file mode 100644 index 000000000..5d7b801cf Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout.png b/site/static/docs/5.2/assets/img/examples/checkout.png new file mode 100644 index 000000000..cb81ef2d7 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/checkout.png differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout@2x.png b/site/static/docs/5.2/assets/img/examples/checkout@2x.png new file mode 100644 index 000000000..79c7b4bb8 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/checkout@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/cover.png b/site/static/docs/5.2/assets/img/examples/cover.png new file mode 100644 index 000000000..5458ff11d Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/cover.png differ diff --git a/site/static/docs/5.2/assets/img/examples/cover@2x.png b/site/static/docs/5.2/assets/img/examples/cover@2x.png new file mode 100644 index 000000000..eacd82e98 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/cover@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard-rtl.png b/site/static/docs/5.2/assets/img/examples/dashboard-rtl.png new file mode 100644 index 000000000..7f5b5bb9d Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/dashboard-rtl.png differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png new file mode 100644 index 000000000..26b031a99 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard.png b/site/static/docs/5.2/assets/img/examples/dashboard.png new file mode 100644 index 000000000..52988da73 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/dashboard.png differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard@2x.png b/site/static/docs/5.2/assets/img/examples/dashboard@2x.png new file mode 100644 index 000000000..52b23dff6 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/dashboard@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/dropdowns.png b/site/static/docs/5.2/assets/img/examples/dropdowns.png new file mode 100644 index 000000000..64fc8f2f0 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/dropdowns.png differ diff --git a/site/static/docs/5.2/assets/img/examples/dropdowns@2x.png b/site/static/docs/5.2/assets/img/examples/dropdowns@2x.png new file mode 100644 index 000000000..35fecb49a Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/dropdowns@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/features.png b/site/static/docs/5.2/assets/img/examples/features.png new file mode 100644 index 000000000..c77ed09bb Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/features.png differ diff --git a/site/static/docs/5.2/assets/img/examples/features@2x.png b/site/static/docs/5.2/assets/img/examples/features@2x.png new file mode 100644 index 000000000..88bd33012 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/features@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/footers.png b/site/static/docs/5.2/assets/img/examples/footers.png new file mode 100644 index 000000000..ac20b7f5d Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/footers.png differ diff --git a/site/static/docs/5.2/assets/img/examples/footers@2x.png b/site/static/docs/5.2/assets/img/examples/footers@2x.png new file mode 100644 index 000000000..a9a07a2cf Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/footers@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/grid.png b/site/static/docs/5.2/assets/img/examples/grid.png new file mode 100644 index 000000000..2c18784c2 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/grid.png differ diff --git a/site/static/docs/5.2/assets/img/examples/grid@2x.png b/site/static/docs/5.2/assets/img/examples/grid@2x.png new file mode 100644 index 000000000..e95c36365 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/grid@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/headers.png b/site/static/docs/5.2/assets/img/examples/headers.png new file mode 100644 index 000000000..8ad7f6cd2 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/headers.png differ diff --git a/site/static/docs/5.2/assets/img/examples/headers@2x.png b/site/static/docs/5.2/assets/img/examples/headers@2x.png new file mode 100644 index 000000000..234f9b1e6 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/headers@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/heroes.png b/site/static/docs/5.2/assets/img/examples/heroes.png new file mode 100644 index 000000000..e9bc3e627 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/heroes.png differ diff --git a/site/static/docs/5.2/assets/img/examples/heroes@2x.png b/site/static/docs/5.2/assets/img/examples/heroes@2x.png new file mode 100644 index 000000000..fff3a72c7 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/heroes@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/jumbotron.png b/site/static/docs/5.2/assets/img/examples/jumbotron.png new file mode 100644 index 000000000..48e0c9c0e Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/jumbotron.png differ diff --git a/site/static/docs/5.2/assets/img/examples/jumbotron@2x.png b/site/static/docs/5.2/assets/img/examples/jumbotron@2x.png new file mode 100644 index 000000000..229b63007 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/jumbotron@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/list-groups.png b/site/static/docs/5.2/assets/img/examples/list-groups.png new file mode 100644 index 000000000..9f49a54ad Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/list-groups.png differ diff --git a/site/static/docs/5.2/assets/img/examples/list-groups@2x.png b/site/static/docs/5.2/assets/img/examples/list-groups@2x.png new file mode 100644 index 000000000..575d19818 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/list-groups@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/masonry.png b/site/static/docs/5.2/assets/img/examples/masonry.png new file mode 100644 index 000000000..20137306f Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/masonry.png differ diff --git a/site/static/docs/5.2/assets/img/examples/masonry@2x.png b/site/static/docs/5.2/assets/img/examples/masonry@2x.png new file mode 100644 index 000000000..8d9a5cf97 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/modals.png b/site/static/docs/5.2/assets/img/examples/modals.png new file mode 100644 index 000000000..0c8876a67 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/modals.png differ diff --git a/site/static/docs/5.2/assets/img/examples/modals@2x.png b/site/static/docs/5.2/assets/img/examples/modals@2x.png new file mode 100644 index 000000000..c18990ace Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/modals@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-bottom.png b/site/static/docs/5.2/assets/img/examples/navbar-bottom.png new file mode 100644 index 000000000..af47666f1 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbar-bottom.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png b/site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png new file mode 100644 index 000000000..93a7cdc49 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-fixed.png b/site/static/docs/5.2/assets/img/examples/navbar-fixed.png new file mode 100644 index 000000000..97df67e96 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbar-fixed.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png b/site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png new file mode 100644 index 000000000..3e0f98b95 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-static.png b/site/static/docs/5.2/assets/img/examples/navbar-static.png new file mode 100644 index 000000000..8d54f182c Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbar-static.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-static@2x.png b/site/static/docs/5.2/assets/img/examples/navbar-static@2x.png new file mode 100644 index 000000000..9b057371d Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbar-static@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png new file mode 100644 index 000000000..81b000dbf Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png new file mode 100644 index 000000000..af5313436 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars.png b/site/static/docs/5.2/assets/img/examples/navbars.png new file mode 100644 index 000000000..4e7e5fa6a Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbars.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars@2x.png b/site/static/docs/5.2/assets/img/examples/navbars@2x.png new file mode 100644 index 000000000..dc0cea085 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/navbars@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png b/site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png new file mode 100644 index 000000000..1e75d2663 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png differ diff --git a/site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png b/site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png new file mode 100644 index 000000000..e5287dde8 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/pricing.png b/site/static/docs/5.2/assets/img/examples/pricing.png new file mode 100644 index 000000000..ea7224615 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/pricing.png differ diff --git a/site/static/docs/5.2/assets/img/examples/pricing@2x.png b/site/static/docs/5.2/assets/img/examples/pricing@2x.png new file mode 100644 index 000000000..959d808a9 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/pricing@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/product.png b/site/static/docs/5.2/assets/img/examples/product.png new file mode 100644 index 000000000..a95eff622 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/product.png differ diff --git a/site/static/docs/5.2/assets/img/examples/product@2x.png b/site/static/docs/5.2/assets/img/examples/product@2x.png new file mode 100644 index 000000000..1dfe45482 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/product@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sidebars.png b/site/static/docs/5.2/assets/img/examples/sidebars.png new file mode 100644 index 000000000..00efb311e Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sidebars.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sidebars@2x.png b/site/static/docs/5.2/assets/img/examples/sidebars@2x.png new file mode 100644 index 000000000..cb167e535 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sidebars@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sign-in.png b/site/static/docs/5.2/assets/img/examples/sign-in.png new file mode 100644 index 000000000..8d57f561c Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sign-in.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sign-in@2x.png b/site/static/docs/5.2/assets/img/examples/sign-in@2x.png new file mode 100644 index 000000000..477335984 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sign-in@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/starter-template.png b/site/static/docs/5.2/assets/img/examples/starter-template.png new file mode 100644 index 000000000..d4b20217a Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/starter-template.png differ diff --git a/site/static/docs/5.2/assets/img/examples/starter-template@2x.png b/site/static/docs/5.2/assets/img/examples/starter-template@2x.png new file mode 100644 index 000000000..9323837ca Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/starter-template@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png new file mode 100644 index 000000000..cc88cfb2d Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png new file mode 100644 index 000000000..9478901f6 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer.png b/site/static/docs/5.2/assets/img/examples/sticky-footer.png new file mode 100644 index 000000000..4b5246d38 Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sticky-footer.png differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png b/site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png new file mode 100644 index 000000000..5a008a0ac Binary files /dev/null and b/site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png b/site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png new file mode 100644 index 000000000..1c276a531 Binary files /dev/null and b/site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png b/site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png new file mode 100644 index 000000000..936025e1c Binary files /dev/null and b/site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png new file mode 100644 index 000000000..e7053f970 Binary files /dev/null and b/site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png b/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png new file mode 100644 index 000000000..46ab7f8c8 Binary files /dev/null and b/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon-32x32.png b/site/static/docs/5.2/assets/img/favicons/favicon-32x32.png new file mode 100644 index 000000000..ca0593a21 Binary files /dev/null and b/site/static/docs/5.2/assets/img/favicons/favicon-32x32.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon.ico b/site/static/docs/5.2/assets/img/favicons/favicon.ico new file mode 100644 index 000000000..054990620 Binary files /dev/null and b/site/static/docs/5.2/assets/img/favicons/favicon.ico differ diff --git a/site/static/docs/5.2/assets/img/favicons/manifest.json b/site/static/docs/5.2/assets/img/favicons/manifest.json new file mode 100644 index 000000000..8f2f0f76b --- /dev/null +++ b/site/static/docs/5.2/assets/img/favicons/manifest.json @@ -0,0 +1,20 @@ +{ + "name": "Bootstrap", + "short_name": "Bootstrap", + "icons": [ + { + "src": "android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "start_url": "/?utm_source=a2hs", + "theme_color": "#7952b3", + "background_color": "#7952b3", + "display": "standalone" +} diff --git a/site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg b/site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg new file mode 100644 index 000000000..aa6e85cb9 --- /dev/null +++ b/site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/static/docs/5.2/assets/js/validate-forms.js b/site/static/docs/5.2/assets/js/validate-forms.js new file mode 100644 index 000000000..30ea0aa6b --- /dev/null +++ b/site/static/docs/5.2/assets/js/validate-forms.js @@ -0,0 +1,19 @@ +// Example starter JavaScript for disabling form submissions if there are invalid fields +(() => { + 'use strict' + + // Fetch all the forms we want to apply custom Bootstrap validation styles to + const forms = document.querySelectorAll('.needs-validation') + + // Loop over them and prevent submission + Array.from(forms).forEach(form => { + form.addEventListener('submit', event => { + if (!form.checkValidity()) { + event.preventDefault() + event.stopPropagation() + } + + form.classList.add('was-validated') + }, false) + }) +})() -- cgit v1.2.3 From 3a327c9015eff72631151eb3771e066361c82589 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 20 May 2022 13:43:30 -0700 Subject: Rewrite Webpack guide (#36382) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Rewrite Webpack guide Co-Authored-By: GeoSot Co-Authored-By: Julien Déramond <17381666+julien-deramond@users.noreply.github.com> * rewrite some pieces * eslint-skip Co-authored-by: GeoSot Co-authored-by: Julien Déramond <17381666+julien-deramond@users.noreply.github.com> --- .../assets/img/guides/webpack-dev-server-bootstrap.png | Bin 0 -> 129810 bytes .../docs/5.2/assets/img/guides/webpack-dev-server.png | Bin 0 -> 129125 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png create mode 100644 site/static/docs/5.2/assets/img/guides/webpack-dev-server.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png new file mode 100644 index 000000000..96e56c0a9 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png new file mode 100644 index 000000000..e9dd9d4be Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png differ -- cgit v1.2.3 From d17fe26dcfe371a3e78fabb4d34e6ba6e2c38a67 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 22 May 2022 17:47:01 -0700 Subject: Rewrite Parcel guide (#36411) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Rewrite Parcel guide * update to match latest webpack guide, add images * eslint-skip * Apply suggestions from code review Co-authored-by: Julien Déramond * match parcel to webpack, share footer, consistent use of no ; * Update site/content/docs/5.2/getting-started/parcel.md Co-authored-by: Julien Déramond * edits from code review * Add custom images * add image compression action from blog Co-authored-by: Julien Déramond --- .../docs/5.2/assets/img/guides/bootstrap-parcel.png | Bin 0 -> 162121 bytes .../docs/5.2/assets/img/guides/bootstrap-parcel@2x.png | Bin 0 -> 566553 bytes .../docs/5.2/assets/img/guides/bootstrap-webpack.png | Bin 0 -> 170257 bytes .../5.2/assets/img/guides/bootstrap-webpack@2x.png | Bin 0 -> 573736 bytes .../assets/img/guides/parcel-dev-server-bootstrap.png | Bin 0 -> 165346 bytes .../docs/5.2/assets/img/guides/parcel-dev-server.png | Bin 0 -> 128524 bytes 6 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png create mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png create mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png create mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png create mode 100644 site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png create mode 100644 site/static/docs/5.2/assets/img/guides/parcel-dev-server.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png new file mode 100644 index 000000000..244fd5edb Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png new file mode 100644 index 000000000..7f432ec56 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png new file mode 100644 index 000000000..325c83fb9 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png new file mode 100644 index 000000000..ccfb0dec3 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png differ diff --git a/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png new file mode 100644 index 000000000..30a4bb43a Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png new file mode 100644 index 000000000..345d388cb Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png differ -- cgit v1.2.3 From 0c5cc1bc281ddc558472ffba56079b8e2296ab6a Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 25 May 2022 09:41:15 +0300 Subject: Docs: improve image compression (#36346) --- .../5.2/assets/img/examples/navbars-offcanvas.png | Bin 6919 -> 6864 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 17121 -> 17070 bytes .../docs/5.2/assets/img/favicons/favicon-16x16.png | Bin 529 -> 525 bytes .../5.2/assets/img/guides/bootstrap-parcel.png | Bin 162121 -> 161826 bytes .../5.2/assets/img/guides/bootstrap-parcel@2x.png | Bin 566553 -> 564766 bytes .../5.2/assets/img/guides/bootstrap-webpack.png | Bin 170257 -> 169872 bytes .../5.2/assets/img/guides/bootstrap-webpack@2x.png | Bin 573736 -> 572482 bytes .../img/guides/parcel-dev-server-bootstrap.png | Bin 165346 -> 102674 bytes .../5.2/assets/img/guides/parcel-dev-server.png | Bin 128524 -> 75744 bytes .../img/guides/webpack-dev-server-bootstrap.png | Bin 129810 -> 77318 bytes .../5.2/assets/img/guides/webpack-dev-server.png | Bin 129125 -> 76154 bytes 11 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png index 81b000dbf..be2d1487c 100644 Binary files a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png and b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png index af5313436..d2b947176 100644 Binary files a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png and b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png b/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png index 46ab7f8c8..f4754c1a3 100644 Binary files a/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png and b/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png index 244fd5edb..4cfa46cf3 100644 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png and b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png index 7f432ec56..4f7165879 100644 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png and b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png index 325c83fb9..189b7f494 100644 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png and b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png index ccfb0dec3..7006386f0 100644 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png and b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png differ diff --git a/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png index 30a4bb43a..a7aa65be0 100644 Binary files a/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png and b/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png index 345d388cb..1833fb8a0 100644 Binary files a/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png and b/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png differ diff --git a/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png index 96e56c0a9..fc37d92d3 100644 Binary files a/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png and b/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png index e9dd9d4be..ecba18967 100644 Binary files a/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png and b/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png differ -- cgit v1.2.3 From 5b0bf3f49a94ca96334651eca9aeeb56d48bf144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Sat, 4 Jun 2022 18:42:32 +0200 Subject: Docs: Add a Vite Getting Started guide (#36412) * Docs: Add a Vite Getting Started guide * Fix npm run docs temporarily * Fix cspell and lint * Uncomment the 2nd part * . * Make it work without dist * Updates after merges of Parcel/Webpack guides rewriting * Update images * Replace dev images * Compress the new images better * Update site/content/docs/5.2/customize/optimize.md Co-authored-by: Mark Otto * Update site/content/docs/5.2/getting-started/vite.md Co-authored-by: Mark Otto Co-authored-by: XhmikosR Co-authored-by: Mark Otto --- .../docs/5.2/assets/img/guides/bootstrap-vite.png | Bin 0 -> 169189 bytes .../docs/5.2/assets/img/guides/bootstrap-vite@2x.png | Bin 0 -> 558538 bytes .../assets/img/guides/vite-dev-server-bootstrap.png | Bin 0 -> 75894 bytes .../docs/5.2/assets/img/guides/vite-dev-server.png | Bin 0 -> 74851 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-vite.png create mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png create mode 100644 site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png create mode 100644 site/static/docs/5.2/assets/img/guides/vite-dev-server.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-vite.png b/site/static/docs/5.2/assets/img/guides/bootstrap-vite.png new file mode 100644 index 000000000..a290110e7 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/bootstrap-vite.png differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png new file mode 100644 index 000000000..5fe40c526 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png differ diff --git a/site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png new file mode 100644 index 000000000..0c3741bd6 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.2/assets/img/guides/vite-dev-server.png b/site/static/docs/5.2/assets/img/guides/vite-dev-server.png new file mode 100644 index 000000000..e29729c23 Binary files /dev/null and b/site/static/docs/5.2/assets/img/guides/vite-dev-server.png differ -- cgit v1.2.3 From d262a50c1fa5a3cac2f43512943d326c41ffba81 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 17 Jul 2022 20:52:30 -0700 Subject: Add links to Webpack, Parcel, and Vite guides on homepage (#36760) --- site/static/docs/5.2/assets/img/parcel.png | Bin 0 -> 6126 bytes site/static/docs/5.2/assets/img/vite.png | Bin 0 -> 4072 bytes site/static/docs/5.2/assets/img/webpack.png | Bin 0 -> 1906 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.2/assets/img/parcel.png create mode 100644 site/static/docs/5.2/assets/img/vite.png create mode 100644 site/static/docs/5.2/assets/img/webpack.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/img/parcel.png b/site/static/docs/5.2/assets/img/parcel.png new file mode 100644 index 000000000..899b29c7b Binary files /dev/null and b/site/static/docs/5.2/assets/img/parcel.png differ diff --git a/site/static/docs/5.2/assets/img/vite.png b/site/static/docs/5.2/assets/img/vite.png new file mode 100644 index 000000000..87b844b6c Binary files /dev/null and b/site/static/docs/5.2/assets/img/vite.png differ diff --git a/site/static/docs/5.2/assets/img/webpack.png b/site/static/docs/5.2/assets/img/webpack.png new file mode 100644 index 000000000..ed1719b81 Binary files /dev/null and b/site/static/docs/5.2/assets/img/webpack.png differ -- cgit v1.2.3 From 501faa2c966632f31b919faf3fa78e9adbe6fe5b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 26 Jul 2022 09:25:47 -0700 Subject: Simplify social images and add ability to set per-page images (#36804) * Simplify social images and add ability to set per-page images - Removes the homepage summary layout in favor of the larger image card (makes it more consistent with other pages) - Reuses new thumbnails for Webpack, Parcel, and Vite guides to add their new social images * Update default social card * Change description to subtitle, add longer description to match homepage * Remove social_image_path, use inline conditions for social images --- .../docs/5.2/assets/brand/bootstrap-social.png | Bin 54961 -> 726245 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/brand/bootstrap-social.png b/site/static/docs/5.2/assets/brand/bootstrap-social.png index c7adc6f85..f027ee8e6 100644 Binary files a/site/static/docs/5.2/assets/brand/bootstrap-social.png and b/site/static/docs/5.2/assets/brand/bootstrap-social.png differ -- cgit v1.2.3 From eff658edb7d8808b028d4b15de10104d89883df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Mon, 26 Sep 2022 20:16:50 +0200 Subject: Replace Webpack and Vite PNGs by SVGs (#37199) * Replace Webpack and Vite pngs by svgs * Update vite.svg * Update webpack.svg Co-authored-by: XhmikosR --- site/static/docs/5.2/assets/img/vite.png | Bin 4072 -> 0 bytes site/static/docs/5.2/assets/img/vite.svg | 1 + site/static/docs/5.2/assets/img/webpack.png | Bin 1906 -> 0 bytes site/static/docs/5.2/assets/img/webpack.svg | 1 + 4 files changed, 2 insertions(+) delete mode 100644 site/static/docs/5.2/assets/img/vite.png create mode 100644 site/static/docs/5.2/assets/img/vite.svg delete mode 100644 site/static/docs/5.2/assets/img/webpack.png create mode 100644 site/static/docs/5.2/assets/img/webpack.svg (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/img/vite.png b/site/static/docs/5.2/assets/img/vite.png deleted file mode 100644 index 87b844b6c..000000000 Binary files a/site/static/docs/5.2/assets/img/vite.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/vite.svg b/site/static/docs/5.2/assets/img/vite.svg new file mode 100644 index 000000000..831cb1610 --- /dev/null +++ b/site/static/docs/5.2/assets/img/vite.svg @@ -0,0 +1 @@ + diff --git a/site/static/docs/5.2/assets/img/webpack.png b/site/static/docs/5.2/assets/img/webpack.png deleted file mode 100644 index ed1719b81..000000000 Binary files a/site/static/docs/5.2/assets/img/webpack.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/webpack.svg b/site/static/docs/5.2/assets/img/webpack.svg new file mode 100644 index 000000000..ed885f2fe --- /dev/null +++ b/site/static/docs/5.2/assets/img/webpack.svg @@ -0,0 +1 @@ + -- cgit v1.2.3 From e77367dddc1a523b6a7197735dbef7cd63d62fe9 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 27 Sep 2022 08:50:31 +0300 Subject: Slightly improve PNG files compression (#36899) --- .../docs/5.2/assets/brand/bootstrap-social.png | Bin 726245 -> 724582 bytes .../docs/5.2/assets/img/bootstrap-icons@2x.png | Bin 125571 -> 125442 bytes .../docs/5.2/assets/img/examples/navbars.png | Bin 13126 -> 13124 bytes site/static/docs/5.2/assets/img/parcel.png | Bin 6126 -> 6042 bytes 4 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/brand/bootstrap-social.png b/site/static/docs/5.2/assets/brand/bootstrap-social.png index f027ee8e6..ff9300f41 100644 Binary files a/site/static/docs/5.2/assets/brand/bootstrap-social.png and b/site/static/docs/5.2/assets/brand/bootstrap-social.png differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png index 8d08df766..5dd660856 100644 Binary files a/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png and b/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars.png b/site/static/docs/5.2/assets/img/examples/navbars.png index 4e7e5fa6a..0d7b44afb 100644 Binary files a/site/static/docs/5.2/assets/img/examples/navbars.png and b/site/static/docs/5.2/assets/img/examples/navbars.png differ diff --git a/site/static/docs/5.2/assets/img/parcel.png b/site/static/docs/5.2/assets/img/parcel.png index 899b29c7b..ff5cc3ae7 100644 Binary files a/site/static/docs/5.2/assets/img/parcel.png and b/site/static/docs/5.2/assets/img/parcel.png differ -- cgit v1.2.3 From e1315d11f2fb9a43b96dd48bf8f9aaf5305372b2 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 18 Dec 2022 23:32:17 +0200 Subject: docs: move color-mode script (#37658) * docs: move color-mode script * Move color-modes.js in static folder * Async load color-modes.js * Switch to DOMContentLoaded * Revert async loading --- site/static/docs/5.2/assets/js/color-modes.js | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 site/static/docs/5.2/assets/js/color-modes.js (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/js/color-modes.js b/site/static/docs/5.2/assets/js/color-modes.js new file mode 100644 index 000000000..41b6b893e --- /dev/null +++ b/site/static/docs/5.2/assets/js/color-modes.js @@ -0,0 +1,62 @@ +/*! + * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Licensed under the Creative Commons Attribution 3.0 Unported License. + */ + +(() => { + 'use strict' + + const storedTheme = localStorage.getItem('theme') + + const getPreferredTheme = () => { + if (storedTheme) { + return storedTheme + } + + return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' + } + + const setTheme = function (theme) { + if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) { + document.documentElement.setAttribute('data-bs-theme', 'dark') + } else { + document.documentElement.setAttribute('data-bs-theme', theme) + } + } + + setTheme(getPreferredTheme()) + + const showActiveTheme = theme => { + const activeThemeIcon = document.querySelector('.theme-icon-active use') + const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) + const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') + + document.querySelectorAll('[data-bs-theme-value]').forEach(element => { + element.classList.remove('active') + }) + + btnToActive.classList.add('active') + activeThemeIcon.setAttribute('href', svgOfActiveBtn) + } + + window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { + if (storedTheme !== 'light' || storedTheme !== 'dark') { + setTheme(getPreferredTheme()) + } + }) + + window.addEventListener('DOMContentLoaded', () => { + showActiveTheme(getPreferredTheme()) + + document.querySelectorAll('[data-bs-theme-value]') + .forEach(toggle => { + toggle.addEventListener('click', () => { + const theme = toggle.getAttribute('data-bs-theme-value') + localStorage.setItem('theme', theme) + setTheme(theme) + showActiveTheme(theme) + }) + }) + }) +})() -- cgit v1.2.3 From cf9454caa00872899215603e5e036d9a824b1b11 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 24 Dec 2022 18:37:22 +0200 Subject: Release v5.3.0-alpha1 (#37661) * Bump version to 5.3.0-alpha1 * Dist * Add docs versions updates * Update note in homepage hero Co-authored-by: Mark Otto --- .../docs/5.2/assets/brand/bootstrap-logo-black.svg | 1 - .../5.2/assets/brand/bootstrap-logo-shadow.png | Bin 48625 -> 0 bytes .../docs/5.2/assets/brand/bootstrap-logo-white.svg | 1 - .../docs/5.2/assets/brand/bootstrap-logo.svg | 1 - .../5.2/assets/brand/bootstrap-social-logo.png | Bin 145590 -> 0 bytes .../docs/5.2/assets/brand/bootstrap-social.png | Bin 724582 -> 0 bytes .../static/docs/5.2/assets/img/bootstrap-icons.png | Bin 40798 -> 0 bytes .../docs/5.2/assets/img/bootstrap-icons@2x.png | Bin 125442 -> 0 bytes .../5.2/assets/img/bootstrap-themes-collage.png | Bin 74829 -> 0 bytes .../5.2/assets/img/bootstrap-themes-collage@2x.png | Bin 244640 -> 0 bytes .../docs/5.2/assets/img/bootstrap-themes.png | Bin 88695 -> 0 bytes .../docs/5.2/assets/img/bootstrap-themes@2x.png | Bin 278159 -> 0 bytes .../docs/5.2/assets/img/examples/album-rtl.png | Bin 6392 -> 0 bytes .../docs/5.2/assets/img/examples/album-rtl@2x.png | Bin 15450 -> 0 bytes site/static/docs/5.2/assets/img/examples/album.png | Bin 10760 -> 0 bytes .../docs/5.2/assets/img/examples/album@2x.png | Bin 25026 -> 0 bytes .../docs/5.2/assets/img/examples/blog-rtl.png | Bin 12545 -> 0 bytes .../docs/5.2/assets/img/examples/blog-rtl@2x.png | Bin 31035 -> 0 bytes site/static/docs/5.2/assets/img/examples/blog.png | Bin 15245 -> 0 bytes .../docs/5.2/assets/img/examples/blog@2x.png | Bin 36944 -> 0 bytes .../docs/5.2/assets/img/examples/carousel-rtl.png | Bin 10344 -> 0 bytes .../5.2/assets/img/examples/carousel-rtl@2x.png | Bin 24535 -> 0 bytes .../docs/5.2/assets/img/examples/carousel.png | Bin 13314 -> 0 bytes .../docs/5.2/assets/img/examples/carousel@2x.png | Bin 31465 -> 0 bytes .../5.2/assets/img/examples/cheatsheet-rtl.png | Bin 6089 -> 0 bytes .../5.2/assets/img/examples/cheatsheet-rtl@2x.png | Bin 13863 -> 0 bytes .../docs/5.2/assets/img/examples/cheatsheet.png | Bin 8132 -> 0 bytes .../docs/5.2/assets/img/examples/cheatsheet@2x.png | Bin 19324 -> 0 bytes .../docs/5.2/assets/img/examples/checkout-rtl.png | Bin 8848 -> 0 bytes .../5.2/assets/img/examples/checkout-rtl@2x.png | Bin 21965 -> 0 bytes .../docs/5.2/assets/img/examples/checkout.png | Bin 7639 -> 0 bytes .../docs/5.2/assets/img/examples/checkout@2x.png | Bin 19105 -> 0 bytes site/static/docs/5.2/assets/img/examples/cover.png | Bin 7240 -> 0 bytes .../docs/5.2/assets/img/examples/cover@2x.png | Bin 17927 -> 0 bytes .../docs/5.2/assets/img/examples/dashboard-rtl.png | Bin 8261 -> 0 bytes .../5.2/assets/img/examples/dashboard-rtl@2x.png | Bin 19399 -> 0 bytes .../docs/5.2/assets/img/examples/dashboard.png | Bin 11914 -> 0 bytes .../docs/5.2/assets/img/examples/dashboard@2x.png | Bin 26556 -> 0 bytes .../docs/5.2/assets/img/examples/dropdowns.png | Bin 6146 -> 0 bytes .../docs/5.2/assets/img/examples/dropdowns@2x.png | Bin 15203 -> 0 bytes .../docs/5.2/assets/img/examples/features.png | Bin 6067 -> 0 bytes .../docs/5.2/assets/img/examples/features@2x.png | Bin 15002 -> 0 bytes .../docs/5.2/assets/img/examples/footers.png | Bin 4324 -> 0 bytes .../docs/5.2/assets/img/examples/footers@2x.png | Bin 10238 -> 0 bytes site/static/docs/5.2/assets/img/examples/grid.png | Bin 14485 -> 0 bytes .../docs/5.2/assets/img/examples/grid@2x.png | Bin 34834 -> 0 bytes .../docs/5.2/assets/img/examples/headers.png | Bin 5197 -> 0 bytes .../docs/5.2/assets/img/examples/headers@2x.png | Bin 12639 -> 0 bytes .../static/docs/5.2/assets/img/examples/heroes.png | Bin 9017 -> 0 bytes .../docs/5.2/assets/img/examples/heroes@2x.png | Bin 23433 -> 0 bytes .../docs/5.2/assets/img/examples/jumbotron.png | Bin 9155 -> 0 bytes .../docs/5.2/assets/img/examples/jumbotron@2x.png | Bin 23316 -> 0 bytes .../docs/5.2/assets/img/examples/list-groups.png | Bin 7134 -> 0 bytes .../5.2/assets/img/examples/list-groups@2x.png | Bin 17804 -> 0 bytes .../docs/5.2/assets/img/examples/masonry.png | Bin 15253 -> 0 bytes .../docs/5.2/assets/img/examples/masonry@2x.png | Bin 37733 -> 0 bytes .../static/docs/5.2/assets/img/examples/modals.png | Bin 4814 -> 0 bytes .../docs/5.2/assets/img/examples/modals@2x.png | Bin 11689 -> 0 bytes .../docs/5.2/assets/img/examples/navbar-bottom.png | Bin 4873 -> 0 bytes .../5.2/assets/img/examples/navbar-bottom@2x.png | Bin 11666 -> 0 bytes .../docs/5.2/assets/img/examples/navbar-fixed.png | Bin 5911 -> 0 bytes .../5.2/assets/img/examples/navbar-fixed@2x.png | Bin 14103 -> 0 bytes .../docs/5.2/assets/img/examples/navbar-static.png | Bin 6624 -> 0 bytes .../5.2/assets/img/examples/navbar-static@2x.png | Bin 15155 -> 0 bytes .../5.2/assets/img/examples/navbars-offcanvas.png | Bin 6864 -> 0 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 17070 -> 0 bytes .../docs/5.2/assets/img/examples/navbars.png | Bin 13124 -> 0 bytes .../docs/5.2/assets/img/examples/navbars@2x.png | Bin 31168 -> 0 bytes .../5.2/assets/img/examples/offcanvas-navbar.png | Bin 9691 -> 0 bytes .../assets/img/examples/offcanvas-navbar@2x.png | Bin 23975 -> 0 bytes .../docs/5.2/assets/img/examples/pricing.png | Bin 11621 -> 0 bytes .../docs/5.2/assets/img/examples/pricing@2x.png | Bin 29088 -> 0 bytes .../docs/5.2/assets/img/examples/product.png | Bin 12906 -> 0 bytes .../docs/5.2/assets/img/examples/product@2x.png | Bin 27953 -> 0 bytes .../docs/5.2/assets/img/examples/sidebars.png | Bin 12287 -> 0 bytes .../docs/5.2/assets/img/examples/sidebars@2x.png | Bin 33499 -> 0 bytes .../docs/5.2/assets/img/examples/sign-in.png | Bin 2199 -> 0 bytes .../docs/5.2/assets/img/examples/sign-in@2x.png | Bin 4568 -> 0 bytes .../5.2/assets/img/examples/starter-template.png | Bin 7753 -> 0 bytes .../assets/img/examples/starter-template@2x.png | Bin 20134 -> 0 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 6979 -> 0 bytes .../img/examples/sticky-footer-navbar@2x.png | Bin 15836 -> 0 bytes .../docs/5.2/assets/img/examples/sticky-footer.png | Bin 4280 -> 0 bytes .../5.2/assets/img/examples/sticky-footer@2x.png | Bin 9665 -> 0 bytes .../assets/img/favicons/android-chrome-192x192.png | Bin 8364 -> 0 bytes .../assets/img/favicons/android-chrome-512x512.png | Bin 23832 -> 0 bytes .../5.2/assets/img/favicons/apple-touch-icon.png | Bin 7650 -> 0 bytes .../docs/5.2/assets/img/favicons/favicon-16x16.png | Bin 525 -> 0 bytes .../docs/5.2/assets/img/favicons/favicon-32x32.png | Bin 1159 -> 0 bytes .../docs/5.2/assets/img/favicons/favicon.ico | Bin 15086 -> 0 bytes .../docs/5.2/assets/img/favicons/manifest.json | 20 ------- .../5.2/assets/img/favicons/safari-pinned-tab.svg | 1 - .../5.2/assets/img/guides/bootstrap-parcel.png | Bin 161826 -> 0 bytes .../5.2/assets/img/guides/bootstrap-parcel@2x.png | Bin 564766 -> 0 bytes .../docs/5.2/assets/img/guides/bootstrap-vite.png | Bin 169189 -> 0 bytes .../5.2/assets/img/guides/bootstrap-vite@2x.png | Bin 558538 -> 0 bytes .../5.2/assets/img/guides/bootstrap-webpack.png | Bin 169872 -> 0 bytes .../5.2/assets/img/guides/bootstrap-webpack@2x.png | Bin 572482 -> 0 bytes .../img/guides/parcel-dev-server-bootstrap.png | Bin 102674 -> 0 bytes .../5.2/assets/img/guides/parcel-dev-server.png | Bin 75744 -> 0 bytes .../img/guides/vite-dev-server-bootstrap.png | Bin 75894 -> 0 bytes .../docs/5.2/assets/img/guides/vite-dev-server.png | Bin 74851 -> 0 bytes .../img/guides/webpack-dev-server-bootstrap.png | Bin 77318 -> 0 bytes .../5.2/assets/img/guides/webpack-dev-server.png | Bin 76154 -> 0 bytes site/static/docs/5.2/assets/img/parcel.png | Bin 6042 -> 0 bytes site/static/docs/5.2/assets/img/vite.svg | 1 - site/static/docs/5.2/assets/img/webpack.svg | 1 - site/static/docs/5.2/assets/js/color-modes.js | 62 --------------------- site/static/docs/5.2/assets/js/validate-forms.js | 19 ------- .../docs/5.3/assets/brand/bootstrap-logo-black.svg | 1 + .../5.3/assets/brand/bootstrap-logo-shadow.png | Bin 0 -> 48625 bytes .../docs/5.3/assets/brand/bootstrap-logo-white.svg | 1 + .../docs/5.3/assets/brand/bootstrap-logo.svg | 1 + .../5.3/assets/brand/bootstrap-social-logo.png | Bin 0 -> 145590 bytes .../docs/5.3/assets/brand/bootstrap-social.png | Bin 0 -> 724582 bytes .../static/docs/5.3/assets/img/bootstrap-icons.png | Bin 0 -> 40798 bytes .../docs/5.3/assets/img/bootstrap-icons@2x.png | Bin 0 -> 125442 bytes .../5.3/assets/img/bootstrap-themes-collage.png | Bin 0 -> 74829 bytes .../5.3/assets/img/bootstrap-themes-collage@2x.png | Bin 0 -> 244640 bytes .../docs/5.3/assets/img/bootstrap-themes.png | Bin 0 -> 88695 bytes .../docs/5.3/assets/img/bootstrap-themes@2x.png | Bin 0 -> 278159 bytes .../docs/5.3/assets/img/examples/album-rtl.png | Bin 0 -> 6392 bytes .../docs/5.3/assets/img/examples/album-rtl@2x.png | Bin 0 -> 15450 bytes site/static/docs/5.3/assets/img/examples/album.png | Bin 0 -> 10760 bytes .../docs/5.3/assets/img/examples/album@2x.png | Bin 0 -> 25026 bytes .../docs/5.3/assets/img/examples/blog-rtl.png | Bin 0 -> 12545 bytes .../docs/5.3/assets/img/examples/blog-rtl@2x.png | Bin 0 -> 31035 bytes site/static/docs/5.3/assets/img/examples/blog.png | Bin 0 -> 15245 bytes .../docs/5.3/assets/img/examples/blog@2x.png | Bin 0 -> 36944 bytes .../docs/5.3/assets/img/examples/carousel-rtl.png | Bin 0 -> 10344 bytes .../5.3/assets/img/examples/carousel-rtl@2x.png | Bin 0 -> 24535 bytes .../docs/5.3/assets/img/examples/carousel.png | Bin 0 -> 13314 bytes .../docs/5.3/assets/img/examples/carousel@2x.png | Bin 0 -> 31465 bytes .../5.3/assets/img/examples/cheatsheet-rtl.png | Bin 0 -> 6089 bytes .../5.3/assets/img/examples/cheatsheet-rtl@2x.png | Bin 0 -> 13863 bytes .../docs/5.3/assets/img/examples/cheatsheet.png | Bin 0 -> 8132 bytes .../docs/5.3/assets/img/examples/cheatsheet@2x.png | Bin 0 -> 19324 bytes .../docs/5.3/assets/img/examples/checkout-rtl.png | Bin 0 -> 8848 bytes .../5.3/assets/img/examples/checkout-rtl@2x.png | Bin 0 -> 21965 bytes .../docs/5.3/assets/img/examples/checkout.png | Bin 0 -> 7639 bytes .../docs/5.3/assets/img/examples/checkout@2x.png | Bin 0 -> 19105 bytes site/static/docs/5.3/assets/img/examples/cover.png | Bin 0 -> 7240 bytes .../docs/5.3/assets/img/examples/cover@2x.png | Bin 0 -> 17927 bytes .../docs/5.3/assets/img/examples/dashboard-rtl.png | Bin 0 -> 8261 bytes .../5.3/assets/img/examples/dashboard-rtl@2x.png | Bin 0 -> 19399 bytes .../docs/5.3/assets/img/examples/dashboard.png | Bin 0 -> 11914 bytes .../docs/5.3/assets/img/examples/dashboard@2x.png | Bin 0 -> 26556 bytes .../docs/5.3/assets/img/examples/dropdowns.png | Bin 0 -> 6146 bytes .../docs/5.3/assets/img/examples/dropdowns@2x.png | Bin 0 -> 15203 bytes .../docs/5.3/assets/img/examples/features.png | Bin 0 -> 6067 bytes .../docs/5.3/assets/img/examples/features@2x.png | Bin 0 -> 15002 bytes .../docs/5.3/assets/img/examples/footers.png | Bin 0 -> 4324 bytes .../docs/5.3/assets/img/examples/footers@2x.png | Bin 0 -> 10238 bytes site/static/docs/5.3/assets/img/examples/grid.png | Bin 0 -> 14485 bytes .../docs/5.3/assets/img/examples/grid@2x.png | Bin 0 -> 34834 bytes .../docs/5.3/assets/img/examples/headers.png | Bin 0 -> 5197 bytes .../docs/5.3/assets/img/examples/headers@2x.png | Bin 0 -> 12639 bytes .../static/docs/5.3/assets/img/examples/heroes.png | Bin 0 -> 9017 bytes .../docs/5.3/assets/img/examples/heroes@2x.png | Bin 0 -> 23433 bytes .../docs/5.3/assets/img/examples/jumbotron.png | Bin 0 -> 9155 bytes .../docs/5.3/assets/img/examples/jumbotron@2x.png | Bin 0 -> 23316 bytes .../docs/5.3/assets/img/examples/list-groups.png | Bin 0 -> 7134 bytes .../5.3/assets/img/examples/list-groups@2x.png | Bin 0 -> 17804 bytes .../docs/5.3/assets/img/examples/masonry.png | Bin 0 -> 15253 bytes .../docs/5.3/assets/img/examples/masonry@2x.png | Bin 0 -> 37733 bytes .../static/docs/5.3/assets/img/examples/modals.png | Bin 0 -> 4814 bytes .../docs/5.3/assets/img/examples/modals@2x.png | Bin 0 -> 11689 bytes .../docs/5.3/assets/img/examples/navbar-bottom.png | Bin 0 -> 4873 bytes .../5.3/assets/img/examples/navbar-bottom@2x.png | Bin 0 -> 11666 bytes .../docs/5.3/assets/img/examples/navbar-fixed.png | Bin 0 -> 5911 bytes .../5.3/assets/img/examples/navbar-fixed@2x.png | Bin 0 -> 14103 bytes .../docs/5.3/assets/img/examples/navbar-static.png | Bin 0 -> 6624 bytes .../5.3/assets/img/examples/navbar-static@2x.png | Bin 0 -> 15155 bytes .../5.3/assets/img/examples/navbars-offcanvas.png | Bin 0 -> 6864 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 0 -> 17070 bytes .../docs/5.3/assets/img/examples/navbars.png | Bin 0 -> 13124 bytes .../docs/5.3/assets/img/examples/navbars@2x.png | Bin 0 -> 31168 bytes .../5.3/assets/img/examples/offcanvas-navbar.png | Bin 0 -> 9691 bytes .../assets/img/examples/offcanvas-navbar@2x.png | Bin 0 -> 23975 bytes .../docs/5.3/assets/img/examples/pricing.png | Bin 0 -> 11621 bytes .../docs/5.3/assets/img/examples/pricing@2x.png | Bin 0 -> 29088 bytes .../docs/5.3/assets/img/examples/product.png | Bin 0 -> 12906 bytes .../docs/5.3/assets/img/examples/product@2x.png | Bin 0 -> 27953 bytes .../docs/5.3/assets/img/examples/sidebars.png | Bin 0 -> 12287 bytes .../docs/5.3/assets/img/examples/sidebars@2x.png | Bin 0 -> 33499 bytes .../docs/5.3/assets/img/examples/sign-in.png | Bin 0 -> 2199 bytes .../docs/5.3/assets/img/examples/sign-in@2x.png | Bin 0 -> 4568 bytes .../5.3/assets/img/examples/starter-template.png | Bin 0 -> 7753 bytes .../assets/img/examples/starter-template@2x.png | Bin 0 -> 20134 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 0 -> 6979 bytes .../img/examples/sticky-footer-navbar@2x.png | Bin 0 -> 15836 bytes .../docs/5.3/assets/img/examples/sticky-footer.png | Bin 0 -> 4280 bytes .../5.3/assets/img/examples/sticky-footer@2x.png | Bin 0 -> 9665 bytes .../assets/img/favicons/android-chrome-192x192.png | Bin 0 -> 8364 bytes .../assets/img/favicons/android-chrome-512x512.png | Bin 0 -> 23832 bytes .../5.3/assets/img/favicons/apple-touch-icon.png | Bin 0 -> 7650 bytes .../docs/5.3/assets/img/favicons/favicon-16x16.png | Bin 0 -> 525 bytes .../docs/5.3/assets/img/favicons/favicon-32x32.png | Bin 0 -> 1159 bytes .../docs/5.3/assets/img/favicons/favicon.ico | Bin 0 -> 15086 bytes .../docs/5.3/assets/img/favicons/manifest.json | 20 +++++++ .../5.3/assets/img/favicons/safari-pinned-tab.svg | 1 + .../5.3/assets/img/guides/bootstrap-parcel.png | Bin 0 -> 161826 bytes .../5.3/assets/img/guides/bootstrap-parcel@2x.png | Bin 0 -> 564766 bytes .../docs/5.3/assets/img/guides/bootstrap-vite.png | Bin 0 -> 169189 bytes .../5.3/assets/img/guides/bootstrap-vite@2x.png | Bin 0 -> 558538 bytes .../5.3/assets/img/guides/bootstrap-webpack.png | Bin 0 -> 169872 bytes .../5.3/assets/img/guides/bootstrap-webpack@2x.png | Bin 0 -> 572482 bytes .../img/guides/parcel-dev-server-bootstrap.png | Bin 0 -> 102674 bytes .../5.3/assets/img/guides/parcel-dev-server.png | Bin 0 -> 75744 bytes .../img/guides/vite-dev-server-bootstrap.png | Bin 0 -> 75894 bytes .../docs/5.3/assets/img/guides/vite-dev-server.png | Bin 0 -> 74851 bytes .../img/guides/webpack-dev-server-bootstrap.png | Bin 0 -> 77318 bytes .../5.3/assets/img/guides/webpack-dev-server.png | Bin 0 -> 76154 bytes site/static/docs/5.3/assets/img/parcel.png | Bin 0 -> 6042 bytes site/static/docs/5.3/assets/img/vite.svg | 1 + site/static/docs/5.3/assets/img/webpack.svg | 1 + site/static/docs/5.3/assets/js/color-modes.js | 62 +++++++++++++++++++++ site/static/docs/5.3/assets/js/validate-forms.js | 19 +++++++ 218 files changed, 107 insertions(+), 107 deletions(-) delete mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg delete mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png delete mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg delete mode 100644 site/static/docs/5.2/assets/brand/bootstrap-logo.svg delete mode 100644 site/static/docs/5.2/assets/brand/bootstrap-social-logo.png delete mode 100644 site/static/docs/5.2/assets/brand/bootstrap-social.png delete mode 100644 site/static/docs/5.2/assets/img/bootstrap-icons.png delete mode 100644 site/static/docs/5.2/assets/img/bootstrap-icons@2x.png delete mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes-collage.png delete mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png delete mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes.png delete mode 100644 site/static/docs/5.2/assets/img/bootstrap-themes@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/album-rtl.png delete mode 100644 site/static/docs/5.2/assets/img/examples/album-rtl@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/album.png delete mode 100644 site/static/docs/5.2/assets/img/examples/album@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/blog-rtl.png delete mode 100644 site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/blog.png delete mode 100644 site/static/docs/5.2/assets/img/examples/blog@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/carousel-rtl.png delete mode 100644 site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/carousel.png delete mode 100644 site/static/docs/5.2/assets/img/examples/carousel@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png delete mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet.png delete mode 100644 site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/checkout-rtl.png delete mode 100644 site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/checkout.png delete mode 100644 site/static/docs/5.2/assets/img/examples/checkout@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/cover.png delete mode 100644 site/static/docs/5.2/assets/img/examples/cover@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/dashboard-rtl.png delete mode 100644 site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/dashboard.png delete mode 100644 site/static/docs/5.2/assets/img/examples/dashboard@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/dropdowns.png delete mode 100644 site/static/docs/5.2/assets/img/examples/dropdowns@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/features.png delete mode 100644 site/static/docs/5.2/assets/img/examples/features@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/footers.png delete mode 100644 site/static/docs/5.2/assets/img/examples/footers@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/grid.png delete mode 100644 site/static/docs/5.2/assets/img/examples/grid@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/headers.png delete mode 100644 site/static/docs/5.2/assets/img/examples/headers@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/heroes.png delete mode 100644 site/static/docs/5.2/assets/img/examples/heroes@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/jumbotron.png delete mode 100644 site/static/docs/5.2/assets/img/examples/jumbotron@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/list-groups.png delete mode 100644 site/static/docs/5.2/assets/img/examples/list-groups@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/masonry.png delete mode 100644 site/static/docs/5.2/assets/img/examples/masonry@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/modals.png delete mode 100644 site/static/docs/5.2/assets/img/examples/modals@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbar-bottom.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbar-fixed.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbar-static.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbar-static@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbars.png delete mode 100644 site/static/docs/5.2/assets/img/examples/navbars@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png delete mode 100644 site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/pricing.png delete mode 100644 site/static/docs/5.2/assets/img/examples/pricing@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/product.png delete mode 100644 site/static/docs/5.2/assets/img/examples/product@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sidebars.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sidebars@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sign-in.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sign-in@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/starter-template.png delete mode 100644 site/static/docs/5.2/assets/img/examples/starter-template@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer.png delete mode 100644 site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png delete mode 100644 site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png delete mode 100644 site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png delete mode 100644 site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png delete mode 100644 site/static/docs/5.2/assets/img/favicons/favicon-16x16.png delete mode 100644 site/static/docs/5.2/assets/img/favicons/favicon-32x32.png delete mode 100644 site/static/docs/5.2/assets/img/favicons/favicon.ico delete mode 100644 site/static/docs/5.2/assets/img/favicons/manifest.json delete mode 100644 site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg delete mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png delete mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png delete mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-vite.png delete mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png delete mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png delete mode 100644 site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png delete mode 100644 site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png delete mode 100644 site/static/docs/5.2/assets/img/guides/parcel-dev-server.png delete mode 100644 site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png delete mode 100644 site/static/docs/5.2/assets/img/guides/vite-dev-server.png delete mode 100644 site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png delete mode 100644 site/static/docs/5.2/assets/img/guides/webpack-dev-server.png delete mode 100644 site/static/docs/5.2/assets/img/parcel.png delete mode 100644 site/static/docs/5.2/assets/img/vite.svg delete mode 100644 site/static/docs/5.2/assets/img/webpack.svg delete mode 100644 site/static/docs/5.2/assets/js/color-modes.js delete mode 100644 site/static/docs/5.2/assets/js/validate-forms.js create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-logo-black.svg create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-logo-white.svg create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-logo.svg create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-social-logo.png create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-social.png create mode 100644 site/static/docs/5.3/assets/img/bootstrap-icons.png create mode 100644 site/static/docs/5.3/assets/img/bootstrap-icons@2x.png create mode 100644 site/static/docs/5.3/assets/img/bootstrap-themes-collage.png create mode 100644 site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png create mode 100644 site/static/docs/5.3/assets/img/bootstrap-themes.png create mode 100644 site/static/docs/5.3/assets/img/bootstrap-themes@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/album-rtl.png create mode 100644 site/static/docs/5.3/assets/img/examples/album-rtl@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/album.png create mode 100644 site/static/docs/5.3/assets/img/examples/album@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/blog-rtl.png create mode 100644 site/static/docs/5.3/assets/img/examples/blog-rtl@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/blog.png create mode 100644 site/static/docs/5.3/assets/img/examples/blog@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/carousel-rtl.png create mode 100644 site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/carousel.png create mode 100644 site/static/docs/5.3/assets/img/examples/carousel@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/cheatsheet-rtl.png create mode 100644 site/static/docs/5.3/assets/img/examples/cheatsheet-rtl@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/cheatsheet.png create mode 100644 site/static/docs/5.3/assets/img/examples/cheatsheet@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/checkout-rtl.png create mode 100644 site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/checkout.png create mode 100644 site/static/docs/5.3/assets/img/examples/checkout@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/cover.png create mode 100644 site/static/docs/5.3/assets/img/examples/cover@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/dashboard-rtl.png create mode 100644 site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/dashboard.png create mode 100644 site/static/docs/5.3/assets/img/examples/dashboard@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/dropdowns.png create mode 100644 site/static/docs/5.3/assets/img/examples/dropdowns@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/features.png create mode 100644 site/static/docs/5.3/assets/img/examples/features@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/footers.png create mode 100644 site/static/docs/5.3/assets/img/examples/footers@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/grid.png create mode 100644 site/static/docs/5.3/assets/img/examples/grid@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/headers.png create mode 100644 site/static/docs/5.3/assets/img/examples/headers@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/heroes.png create mode 100644 site/static/docs/5.3/assets/img/examples/heroes@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/jumbotron.png create mode 100644 site/static/docs/5.3/assets/img/examples/jumbotron@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/list-groups.png create mode 100644 site/static/docs/5.3/assets/img/examples/list-groups@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/masonry.png create mode 100644 site/static/docs/5.3/assets/img/examples/masonry@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/modals.png create mode 100644 site/static/docs/5.3/assets/img/examples/modals@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbar-bottom.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbar-fixed.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbar-static.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbar-static@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbars.png create mode 100644 site/static/docs/5.3/assets/img/examples/navbars@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png create mode 100644 site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/pricing.png create mode 100644 site/static/docs/5.3/assets/img/examples/pricing@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/product.png create mode 100644 site/static/docs/5.3/assets/img/examples/product@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/sidebars.png create mode 100644 site/static/docs/5.3/assets/img/examples/sidebars@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/sign-in.png create mode 100644 site/static/docs/5.3/assets/img/examples/sign-in@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/starter-template.png create mode 100644 site/static/docs/5.3/assets/img/examples/starter-template@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png create mode 100644 site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/sticky-footer.png create mode 100644 site/static/docs/5.3/assets/img/examples/sticky-footer@2x.png create mode 100644 site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png create mode 100644 site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png create mode 100644 site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png create mode 100644 site/static/docs/5.3/assets/img/favicons/favicon-16x16.png create mode 100644 site/static/docs/5.3/assets/img/favicons/favicon-32x32.png create mode 100644 site/static/docs/5.3/assets/img/favicons/favicon.ico create mode 100644 site/static/docs/5.3/assets/img/favicons/manifest.json create mode 100644 site/static/docs/5.3/assets/img/favicons/safari-pinned-tab.svg create mode 100644 site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png create mode 100644 site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png create mode 100644 site/static/docs/5.3/assets/img/guides/bootstrap-vite.png create mode 100644 site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png create mode 100644 site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png create mode 100644 site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png create mode 100644 site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png create mode 100644 site/static/docs/5.3/assets/img/guides/parcel-dev-server.png create mode 100644 site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png create mode 100644 site/static/docs/5.3/assets/img/guides/vite-dev-server.png create mode 100644 site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png create mode 100644 site/static/docs/5.3/assets/img/guides/webpack-dev-server.png create mode 100644 site/static/docs/5.3/assets/img/parcel.png create mode 100644 site/static/docs/5.3/assets/img/vite.svg create mode 100644 site/static/docs/5.3/assets/img/webpack.svg create mode 100644 site/static/docs/5.3/assets/js/color-modes.js create mode 100644 site/static/docs/5.3/assets/js/validate-forms.js (limited to 'site/static/docs') diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg b/site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg deleted file mode 100644 index 31e66e1e9..000000000 --- a/site/static/docs/5.2/assets/brand/bootstrap-logo-black.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png deleted file mode 100644 index 3643b912e..000000000 Binary files a/site/static/docs/5.2/assets/brand/bootstrap-logo-shadow.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg b/site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg deleted file mode 100644 index f73d7ca2a..000000000 --- a/site/static/docs/5.2/assets/brand/bootstrap-logo-white.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site/static/docs/5.2/assets/brand/bootstrap-logo.svg b/site/static/docs/5.2/assets/brand/bootstrap-logo.svg deleted file mode 100644 index f0189652b..000000000 --- a/site/static/docs/5.2/assets/brand/bootstrap-logo.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/site/static/docs/5.2/assets/brand/bootstrap-social-logo.png b/site/static/docs/5.2/assets/brand/bootstrap-social-logo.png deleted file mode 100644 index 9dbb732a4..000000000 Binary files a/site/static/docs/5.2/assets/brand/bootstrap-social-logo.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/brand/bootstrap-social.png b/site/static/docs/5.2/assets/brand/bootstrap-social.png deleted file mode 100644 index ff9300f41..000000000 Binary files a/site/static/docs/5.2/assets/brand/bootstrap-social.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-icons.png b/site/static/docs/5.2/assets/img/bootstrap-icons.png deleted file mode 100644 index 9c418d5f3..000000000 Binary files a/site/static/docs/5.2/assets/img/bootstrap-icons.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png deleted file mode 100644 index 5dd660856..000000000 Binary files a/site/static/docs/5.2/assets/img/bootstrap-icons@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.2/assets/img/bootstrap-themes-collage.png deleted file mode 100644 index 0a3bf5d69..000000000 Binary files a/site/static/docs/5.2/assets/img/bootstrap-themes-collage.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png deleted file mode 100644 index ad165eb19..000000000 Binary files a/site/static/docs/5.2/assets/img/bootstrap-themes-collage@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes.png b/site/static/docs/5.2/assets/img/bootstrap-themes.png deleted file mode 100644 index d43dba2a7..000000000 Binary files a/site/static/docs/5.2/assets/img/bootstrap-themes.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/bootstrap-themes@2x.png b/site/static/docs/5.2/assets/img/bootstrap-themes@2x.png deleted file mode 100644 index 13c32337d..000000000 Binary files a/site/static/docs/5.2/assets/img/bootstrap-themes@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/album-rtl.png b/site/static/docs/5.2/assets/img/examples/album-rtl.png deleted file mode 100644 index 8bec58f1c..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/album-rtl.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/album-rtl@2x.png deleted file mode 100644 index 47b5b9a4a..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/album-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/album.png b/site/static/docs/5.2/assets/img/examples/album.png deleted file mode 100644 index 9f628babf..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/album.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/album@2x.png b/site/static/docs/5.2/assets/img/examples/album@2x.png deleted file mode 100644 index 00c938df8..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/album@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/blog-rtl.png b/site/static/docs/5.2/assets/img/examples/blog-rtl.png deleted file mode 100644 index 5d01bb092..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/blog-rtl.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png deleted file mode 100644 index 56554e2bf..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/blog-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/blog.png b/site/static/docs/5.2/assets/img/examples/blog.png deleted file mode 100644 index 3ce428418..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/blog.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/blog@2x.png b/site/static/docs/5.2/assets/img/examples/blog@2x.png deleted file mode 100644 index f5480314b..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/blog@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel-rtl.png b/site/static/docs/5.2/assets/img/examples/carousel-rtl.png deleted file mode 100644 index 1fb5ae6a8..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/carousel-rtl.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png deleted file mode 100644 index 2beeca096..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/carousel-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel.png b/site/static/docs/5.2/assets/img/examples/carousel.png deleted file mode 100644 index b8ea3ce1c..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/carousel.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/carousel@2x.png b/site/static/docs/5.2/assets/img/examples/carousel@2x.png deleted file mode 100644 index 39df35930..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/carousel@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png b/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png deleted file mode 100644 index 93fd59324..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png deleted file mode 100644 index fa895cec0..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/cheatsheet-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet.png b/site/static/docs/5.2/assets/img/examples/cheatsheet.png deleted file mode 100644 index 074be0015..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/cheatsheet.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png b/site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png deleted file mode 100644 index c958b6cb6..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/cheatsheet@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout-rtl.png b/site/static/docs/5.2/assets/img/examples/checkout-rtl.png deleted file mode 100644 index f3cb89ea4..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/checkout-rtl.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png deleted file mode 100644 index 5d7b801cf..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/checkout-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout.png b/site/static/docs/5.2/assets/img/examples/checkout.png deleted file mode 100644 index cb81ef2d7..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/checkout.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/checkout@2x.png b/site/static/docs/5.2/assets/img/examples/checkout@2x.png deleted file mode 100644 index 79c7b4bb8..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/checkout@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/cover.png b/site/static/docs/5.2/assets/img/examples/cover.png deleted file mode 100644 index 5458ff11d..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/cover.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/cover@2x.png b/site/static/docs/5.2/assets/img/examples/cover@2x.png deleted file mode 100644 index eacd82e98..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/cover@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard-rtl.png b/site/static/docs/5.2/assets/img/examples/dashboard-rtl.png deleted file mode 100644 index 7f5b5bb9d..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/dashboard-rtl.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png b/site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png deleted file mode 100644 index 26b031a99..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/dashboard-rtl@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard.png b/site/static/docs/5.2/assets/img/examples/dashboard.png deleted file mode 100644 index 52988da73..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/dashboard.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/dashboard@2x.png b/site/static/docs/5.2/assets/img/examples/dashboard@2x.png deleted file mode 100644 index 52b23dff6..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/dashboard@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/dropdowns.png b/site/static/docs/5.2/assets/img/examples/dropdowns.png deleted file mode 100644 index 64fc8f2f0..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/dropdowns.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/dropdowns@2x.png b/site/static/docs/5.2/assets/img/examples/dropdowns@2x.png deleted file mode 100644 index 35fecb49a..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/dropdowns@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/features.png b/site/static/docs/5.2/assets/img/examples/features.png deleted file mode 100644 index c77ed09bb..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/features.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/features@2x.png b/site/static/docs/5.2/assets/img/examples/features@2x.png deleted file mode 100644 index 88bd33012..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/features@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/footers.png b/site/static/docs/5.2/assets/img/examples/footers.png deleted file mode 100644 index ac20b7f5d..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/footers.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/footers@2x.png b/site/static/docs/5.2/assets/img/examples/footers@2x.png deleted file mode 100644 index a9a07a2cf..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/footers@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/grid.png b/site/static/docs/5.2/assets/img/examples/grid.png deleted file mode 100644 index 2c18784c2..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/grid.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/grid@2x.png b/site/static/docs/5.2/assets/img/examples/grid@2x.png deleted file mode 100644 index e95c36365..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/grid@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/headers.png b/site/static/docs/5.2/assets/img/examples/headers.png deleted file mode 100644 index 8ad7f6cd2..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/headers.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/headers@2x.png b/site/static/docs/5.2/assets/img/examples/headers@2x.png deleted file mode 100644 index 234f9b1e6..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/headers@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/heroes.png b/site/static/docs/5.2/assets/img/examples/heroes.png deleted file mode 100644 index e9bc3e627..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/heroes.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/heroes@2x.png b/site/static/docs/5.2/assets/img/examples/heroes@2x.png deleted file mode 100644 index fff3a72c7..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/heroes@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/jumbotron.png b/site/static/docs/5.2/assets/img/examples/jumbotron.png deleted file mode 100644 index 48e0c9c0e..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/jumbotron.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/jumbotron@2x.png b/site/static/docs/5.2/assets/img/examples/jumbotron@2x.png deleted file mode 100644 index 229b63007..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/jumbotron@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/list-groups.png b/site/static/docs/5.2/assets/img/examples/list-groups.png deleted file mode 100644 index 9f49a54ad..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/list-groups.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/list-groups@2x.png b/site/static/docs/5.2/assets/img/examples/list-groups@2x.png deleted file mode 100644 index 575d19818..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/list-groups@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/masonry.png b/site/static/docs/5.2/assets/img/examples/masonry.png deleted file mode 100644 index 20137306f..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/masonry.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/masonry@2x.png b/site/static/docs/5.2/assets/img/examples/masonry@2x.png deleted file mode 100644 index 8d9a5cf97..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/masonry@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/modals.png b/site/static/docs/5.2/assets/img/examples/modals.png deleted file mode 100644 index 0c8876a67..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/modals.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/modals@2x.png b/site/static/docs/5.2/assets/img/examples/modals@2x.png deleted file mode 100644 index c18990ace..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/modals@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-bottom.png b/site/static/docs/5.2/assets/img/examples/navbar-bottom.png deleted file mode 100644 index af47666f1..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbar-bottom.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png b/site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png deleted file mode 100644 index 93a7cdc49..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbar-bottom@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-fixed.png b/site/static/docs/5.2/assets/img/examples/navbar-fixed.png deleted file mode 100644 index 97df67e96..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbar-fixed.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png b/site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png deleted file mode 100644 index 3e0f98b95..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbar-fixed@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-static.png b/site/static/docs/5.2/assets/img/examples/navbar-static.png deleted file mode 100644 index 8d54f182c..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbar-static.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbar-static@2x.png b/site/static/docs/5.2/assets/img/examples/navbar-static@2x.png deleted file mode 100644 index 9b057371d..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbar-static@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png deleted file mode 100644 index be2d1487c..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png deleted file mode 100644 index d2b947176..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbars-offcanvas@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars.png b/site/static/docs/5.2/assets/img/examples/navbars.png deleted file mode 100644 index 0d7b44afb..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbars.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/navbars@2x.png b/site/static/docs/5.2/assets/img/examples/navbars@2x.png deleted file mode 100644 index dc0cea085..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/navbars@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png b/site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png deleted file mode 100644 index 1e75d2663..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/offcanvas-navbar.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png b/site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png deleted file mode 100644 index e5287dde8..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/offcanvas-navbar@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/pricing.png b/site/static/docs/5.2/assets/img/examples/pricing.png deleted file mode 100644 index ea7224615..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/pricing.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/pricing@2x.png b/site/static/docs/5.2/assets/img/examples/pricing@2x.png deleted file mode 100644 index 959d808a9..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/pricing@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/product.png b/site/static/docs/5.2/assets/img/examples/product.png deleted file mode 100644 index a95eff622..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/product.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/product@2x.png b/site/static/docs/5.2/assets/img/examples/product@2x.png deleted file mode 100644 index 1dfe45482..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/product@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sidebars.png b/site/static/docs/5.2/assets/img/examples/sidebars.png deleted file mode 100644 index 00efb311e..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sidebars.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sidebars@2x.png b/site/static/docs/5.2/assets/img/examples/sidebars@2x.png deleted file mode 100644 index cb167e535..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sidebars@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sign-in.png b/site/static/docs/5.2/assets/img/examples/sign-in.png deleted file mode 100644 index 8d57f561c..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sign-in.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sign-in@2x.png b/site/static/docs/5.2/assets/img/examples/sign-in@2x.png deleted file mode 100644 index 477335984..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sign-in@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/starter-template.png b/site/static/docs/5.2/assets/img/examples/starter-template.png deleted file mode 100644 index d4b20217a..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/starter-template.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/starter-template@2x.png b/site/static/docs/5.2/assets/img/examples/starter-template@2x.png deleted file mode 100644 index 9323837ca..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/starter-template@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png deleted file mode 100644 index cc88cfb2d..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png deleted file mode 100644 index 9478901f6..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sticky-footer-navbar@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer.png b/site/static/docs/5.2/assets/img/examples/sticky-footer.png deleted file mode 100644 index 4b5246d38..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sticky-footer.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png b/site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png deleted file mode 100644 index 5a008a0ac..000000000 Binary files a/site/static/docs/5.2/assets/img/examples/sticky-footer@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png b/site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png deleted file mode 100644 index 1c276a531..000000000 Binary files a/site/static/docs/5.2/assets/img/favicons/android-chrome-192x192.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png b/site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png deleted file mode 100644 index 936025e1c..000000000 Binary files a/site/static/docs/5.2/assets/img/favicons/android-chrome-512x512.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png deleted file mode 100644 index e7053f970..000000000 Binary files a/site/static/docs/5.2/assets/img/favicons/apple-touch-icon.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png b/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png deleted file mode 100644 index f4754c1a3..000000000 Binary files a/site/static/docs/5.2/assets/img/favicons/favicon-16x16.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon-32x32.png b/site/static/docs/5.2/assets/img/favicons/favicon-32x32.png deleted file mode 100644 index ca0593a21..000000000 Binary files a/site/static/docs/5.2/assets/img/favicons/favicon-32x32.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/favicon.ico b/site/static/docs/5.2/assets/img/favicons/favicon.ico deleted file mode 100644 index 054990620..000000000 Binary files a/site/static/docs/5.2/assets/img/favicons/favicon.ico and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/favicons/manifest.json b/site/static/docs/5.2/assets/img/favicons/manifest.json deleted file mode 100644 index 8f2f0f76b..000000000 --- a/site/static/docs/5.2/assets/img/favicons/manifest.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "Bootstrap", - "short_name": "Bootstrap", - "icons": [ - { - "src": "android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "start_url": "/?utm_source=a2hs", - "theme_color": "#7952b3", - "background_color": "#7952b3", - "display": "standalone" -} diff --git a/site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg b/site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg deleted file mode 100644 index aa6e85cb9..000000000 --- a/site/static/docs/5.2/assets/img/favicons/safari-pinned-tab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png deleted file mode 100644 index 4cfa46cf3..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png deleted file mode 100644 index 4f7165879..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-parcel@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-vite.png b/site/static/docs/5.2/assets/img/guides/bootstrap-vite.png deleted file mode 100644 index a290110e7..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-vite.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png deleted file mode 100644 index 5fe40c526..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-vite@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png deleted file mode 100644 index 189b7f494..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png b/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png deleted file mode 100644 index 7006386f0..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/bootstrap-webpack@2x.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png deleted file mode 100644 index a7aa65be0..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/parcel-dev-server-bootstrap.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png deleted file mode 100644 index 1833fb8a0..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/parcel-dev-server.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png deleted file mode 100644 index 0c3741bd6..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/vite-dev-server-bootstrap.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/vite-dev-server.png b/site/static/docs/5.2/assets/img/guides/vite-dev-server.png deleted file mode 100644 index e29729c23..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/vite-dev-server.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png b/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png deleted file mode 100644 index fc37d92d3..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/webpack-dev-server-bootstrap.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png deleted file mode 100644 index ecba18967..000000000 Binary files a/site/static/docs/5.2/assets/img/guides/webpack-dev-server.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/parcel.png b/site/static/docs/5.2/assets/img/parcel.png deleted file mode 100644 index ff5cc3ae7..000000000 Binary files a/site/static/docs/5.2/assets/img/parcel.png and /dev/null differ diff --git a/site/static/docs/5.2/assets/img/vite.svg b/site/static/docs/5.2/assets/img/vite.svg deleted file mode 100644 index 831cb1610..000000000 --- a/site/static/docs/5.2/assets/img/vite.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/site/static/docs/5.2/assets/img/webpack.svg b/site/static/docs/5.2/assets/img/webpack.svg deleted file mode 100644 index ed885f2fe..000000000 --- a/site/static/docs/5.2/assets/img/webpack.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/site/static/docs/5.2/assets/js/color-modes.js b/site/static/docs/5.2/assets/js/color-modes.js deleted file mode 100644 index 41b6b893e..000000000 --- a/site/static/docs/5.2/assets/js/color-modes.js +++ /dev/null @@ -1,62 +0,0 @@ -/*! - * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors - * Licensed under the Creative Commons Attribution 3.0 Unported License. - */ - -(() => { - 'use strict' - - const storedTheme = localStorage.getItem('theme') - - const getPreferredTheme = () => { - if (storedTheme) { - return storedTheme - } - - return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' - } - - const setTheme = function (theme) { - if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) { - document.documentElement.setAttribute('data-bs-theme', 'dark') - } else { - document.documentElement.setAttribute('data-bs-theme', theme) - } - } - - setTheme(getPreferredTheme()) - - const showActiveTheme = theme => { - const activeThemeIcon = document.querySelector('.theme-icon-active use') - const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) - const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') - - document.querySelectorAll('[data-bs-theme-value]').forEach(element => { - element.classList.remove('active') - }) - - btnToActive.classList.add('active') - activeThemeIcon.setAttribute('href', svgOfActiveBtn) - } - - window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { - if (storedTheme !== 'light' || storedTheme !== 'dark') { - setTheme(getPreferredTheme()) - } - }) - - window.addEventListener('DOMContentLoaded', () => { - showActiveTheme(getPreferredTheme()) - - document.querySelectorAll('[data-bs-theme-value]') - .forEach(toggle => { - toggle.addEventListener('click', () => { - const theme = toggle.getAttribute('data-bs-theme-value') - localStorage.setItem('theme', theme) - setTheme(theme) - showActiveTheme(theme) - }) - }) - }) -})() diff --git a/site/static/docs/5.2/assets/js/validate-forms.js b/site/static/docs/5.2/assets/js/validate-forms.js deleted file mode 100644 index 30ea0aa6b..000000000 --- a/site/static/docs/5.2/assets/js/validate-forms.js +++ /dev/null @@ -1,19 +0,0 @@ -// Example starter JavaScript for disabling form submissions if there are invalid fields -(() => { - 'use strict' - - // Fetch all the forms we want to apply custom Bootstrap validation styles to - const forms = document.querySelectorAll('.needs-validation') - - // Loop over them and prevent submission - Array.from(forms).forEach(form => { - form.addEventListener('submit', event => { - if (!form.checkValidity()) { - event.preventDefault() - event.stopPropagation() - } - - form.classList.add('was-validated') - }, false) - }) -})() diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-black.svg b/site/static/docs/5.3/assets/brand/bootstrap-logo-black.svg new file mode 100644 index 000000000..31e66e1e9 --- /dev/null +++ b/site/static/docs/5.3/assets/brand/bootstrap-logo-black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png new file mode 100644 index 000000000..3643b912e Binary files /dev/null and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png differ diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-white.svg b/site/static/docs/5.3/assets/brand/bootstrap-logo-white.svg new file mode 100644 index 000000000..f73d7ca2a --- /dev/null +++ b/site/static/docs/5.3/assets/brand/bootstrap-logo-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo.svg b/site/static/docs/5.3/assets/brand/bootstrap-logo.svg new file mode 100644 index 000000000..f0189652b --- /dev/null +++ b/site/static/docs/5.3/assets/brand/bootstrap-logo.svg @@ -0,0 +1 @@ + diff --git a/site/static/docs/5.3/assets/brand/bootstrap-social-logo.png b/site/static/docs/5.3/assets/brand/bootstrap-social-logo.png new file mode 100644 index 000000000..9dbb732a4 Binary files /dev/null and b/site/static/docs/5.3/assets/brand/bootstrap-social-logo.png differ diff --git a/site/static/docs/5.3/assets/brand/bootstrap-social.png b/site/static/docs/5.3/assets/brand/bootstrap-social.png new file mode 100644 index 000000000..ff9300f41 Binary files /dev/null and b/site/static/docs/5.3/assets/brand/bootstrap-social.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-icons.png b/site/static/docs/5.3/assets/img/bootstrap-icons.png new file mode 100644 index 000000000..9c418d5f3 Binary files /dev/null and b/site/static/docs/5.3/assets/img/bootstrap-icons.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png new file mode 100644 index 000000000..5dd660856 Binary files /dev/null and b/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png new file mode 100644 index 000000000..0a3bf5d69 Binary files /dev/null and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png new file mode 100644 index 000000000..ad165eb19 Binary files /dev/null and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes.png b/site/static/docs/5.3/assets/img/bootstrap-themes.png new file mode 100644 index 000000000..d43dba2a7 Binary files /dev/null and b/site/static/docs/5.3/assets/img/bootstrap-themes.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes@2x.png b/site/static/docs/5.3/assets/img/bootstrap-themes@2x.png new file mode 100644 index 000000000..13c32337d Binary files /dev/null and b/site/static/docs/5.3/assets/img/bootstrap-themes@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl.png b/site/static/docs/5.3/assets/img/examples/album-rtl.png new file mode 100644 index 000000000..8bec58f1c Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/album-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png new file mode 100644 index 000000000..47b5b9a4a Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album.png b/site/static/docs/5.3/assets/img/examples/album.png new file mode 100644 index 000000000..9f628babf Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/album.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album@2x.png b/site/static/docs/5.3/assets/img/examples/album@2x.png new file mode 100644 index 000000000..00c938df8 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/album@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/blog-rtl.png b/site/static/docs/5.3/assets/img/examples/blog-rtl.png new file mode 100644 index 000000000..5d01bb092 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/blog-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/blog-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/blog-rtl@2x.png new file mode 100644 index 000000000..56554e2bf Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/blog-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/blog.png b/site/static/docs/5.3/assets/img/examples/blog.png new file mode 100644 index 000000000..3ce428418 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/blog.png differ diff --git a/site/static/docs/5.3/assets/img/examples/blog@2x.png b/site/static/docs/5.3/assets/img/examples/blog@2x.png new file mode 100644 index 000000000..f5480314b Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/blog@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl.png new file mode 100644 index 000000000..1fb5ae6a8 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/carousel-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png new file mode 100644 index 000000000..2beeca096 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel.png b/site/static/docs/5.3/assets/img/examples/carousel.png new file mode 100644 index 000000000..b8ea3ce1c Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/carousel.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel@2x.png b/site/static/docs/5.3/assets/img/examples/carousel@2x.png new file mode 100644 index 000000000..39df35930 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/carousel@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl.png b/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl.png new file mode 100644 index 000000000..93fd59324 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl@2x.png new file mode 100644 index 000000000..fa895cec0 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/cheatsheet.png b/site/static/docs/5.3/assets/img/examples/cheatsheet.png new file mode 100644 index 000000000..074be0015 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/cheatsheet.png differ diff --git a/site/static/docs/5.3/assets/img/examples/cheatsheet@2x.png b/site/static/docs/5.3/assets/img/examples/cheatsheet@2x.png new file mode 100644 index 000000000..c958b6cb6 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/cheatsheet@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/checkout-rtl.png b/site/static/docs/5.3/assets/img/examples/checkout-rtl.png new file mode 100644 index 000000000..f3cb89ea4 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/checkout-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png new file mode 100644 index 000000000..5d7b801cf Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/checkout.png b/site/static/docs/5.3/assets/img/examples/checkout.png new file mode 100644 index 000000000..cb81ef2d7 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/checkout.png differ diff --git a/site/static/docs/5.3/assets/img/examples/checkout@2x.png b/site/static/docs/5.3/assets/img/examples/checkout@2x.png new file mode 100644 index 000000000..79c7b4bb8 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/checkout@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/cover.png b/site/static/docs/5.3/assets/img/examples/cover.png new file mode 100644 index 000000000..5458ff11d Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/cover.png differ diff --git a/site/static/docs/5.3/assets/img/examples/cover@2x.png b/site/static/docs/5.3/assets/img/examples/cover@2x.png new file mode 100644 index 000000000..eacd82e98 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/cover@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dashboard-rtl.png b/site/static/docs/5.3/assets/img/examples/dashboard-rtl.png new file mode 100644 index 000000000..7f5b5bb9d Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/dashboard-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png new file mode 100644 index 000000000..26b031a99 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dashboard.png b/site/static/docs/5.3/assets/img/examples/dashboard.png new file mode 100644 index 000000000..52988da73 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/dashboard.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dashboard@2x.png b/site/static/docs/5.3/assets/img/examples/dashboard@2x.png new file mode 100644 index 000000000..52b23dff6 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/dashboard@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dropdowns.png b/site/static/docs/5.3/assets/img/examples/dropdowns.png new file mode 100644 index 000000000..64fc8f2f0 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/dropdowns.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png b/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png new file mode 100644 index 000000000..35fecb49a Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/features.png b/site/static/docs/5.3/assets/img/examples/features.png new file mode 100644 index 000000000..c77ed09bb Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/features.png differ diff --git a/site/static/docs/5.3/assets/img/examples/features@2x.png b/site/static/docs/5.3/assets/img/examples/features@2x.png new file mode 100644 index 000000000..88bd33012 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/features@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/footers.png b/site/static/docs/5.3/assets/img/examples/footers.png new file mode 100644 index 000000000..ac20b7f5d Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/footers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/footers@2x.png b/site/static/docs/5.3/assets/img/examples/footers@2x.png new file mode 100644 index 000000000..a9a07a2cf Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/footers@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/grid.png b/site/static/docs/5.3/assets/img/examples/grid.png new file mode 100644 index 000000000..2c18784c2 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/grid.png differ diff --git a/site/static/docs/5.3/assets/img/examples/grid@2x.png b/site/static/docs/5.3/assets/img/examples/grid@2x.png new file mode 100644 index 000000000..e95c36365 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/grid@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers.png b/site/static/docs/5.3/assets/img/examples/headers.png new file mode 100644 index 000000000..8ad7f6cd2 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/headers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers@2x.png b/site/static/docs/5.3/assets/img/examples/headers@2x.png new file mode 100644 index 000000000..234f9b1e6 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/headers@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/heroes.png b/site/static/docs/5.3/assets/img/examples/heroes.png new file mode 100644 index 000000000..e9bc3e627 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/heroes.png differ diff --git a/site/static/docs/5.3/assets/img/examples/heroes@2x.png b/site/static/docs/5.3/assets/img/examples/heroes@2x.png new file mode 100644 index 000000000..fff3a72c7 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/heroes@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/jumbotron.png b/site/static/docs/5.3/assets/img/examples/jumbotron.png new file mode 100644 index 000000000..48e0c9c0e Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/jumbotron.png differ diff --git a/site/static/docs/5.3/assets/img/examples/jumbotron@2x.png b/site/static/docs/5.3/assets/img/examples/jumbotron@2x.png new file mode 100644 index 000000000..229b63007 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/jumbotron@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups.png b/site/static/docs/5.3/assets/img/examples/list-groups.png new file mode 100644 index 000000000..9f49a54ad Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/list-groups.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups@2x.png b/site/static/docs/5.3/assets/img/examples/list-groups@2x.png new file mode 100644 index 000000000..575d19818 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/list-groups@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry.png b/site/static/docs/5.3/assets/img/examples/masonry.png new file mode 100644 index 000000000..20137306f Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/masonry.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry@2x.png b/site/static/docs/5.3/assets/img/examples/masonry@2x.png new file mode 100644 index 000000000..8d9a5cf97 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/modals.png b/site/static/docs/5.3/assets/img/examples/modals.png new file mode 100644 index 000000000..0c8876a67 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/modals.png differ diff --git a/site/static/docs/5.3/assets/img/examples/modals@2x.png b/site/static/docs/5.3/assets/img/examples/modals@2x.png new file mode 100644 index 000000000..c18990ace Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/modals@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png new file mode 100644 index 000000000..af47666f1 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png new file mode 100644 index 000000000..93a7cdc49 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-fixed.png b/site/static/docs/5.3/assets/img/examples/navbar-fixed.png new file mode 100644 index 000000000..97df67e96 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbar-fixed.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png new file mode 100644 index 000000000..3e0f98b95 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-static.png b/site/static/docs/5.3/assets/img/examples/navbar-static.png new file mode 100644 index 000000000..8d54f182c Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbar-static.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png new file mode 100644 index 000000000..9b057371d Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png new file mode 100644 index 000000000..be2d1487c Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png new file mode 100644 index 000000000..d2b947176 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars.png b/site/static/docs/5.3/assets/img/examples/navbars.png new file mode 100644 index 000000000..0d7b44afb Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbars.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars@2x.png b/site/static/docs/5.3/assets/img/examples/navbars@2x.png new file mode 100644 index 000000000..dc0cea085 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/navbars@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png new file mode 100644 index 000000000..1e75d2663 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png new file mode 100644 index 000000000..e5287dde8 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/pricing.png b/site/static/docs/5.3/assets/img/examples/pricing.png new file mode 100644 index 000000000..ea7224615 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/pricing.png differ diff --git a/site/static/docs/5.3/assets/img/examples/pricing@2x.png b/site/static/docs/5.3/assets/img/examples/pricing@2x.png new file mode 100644 index 000000000..959d808a9 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/pricing@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/product.png b/site/static/docs/5.3/assets/img/examples/product.png new file mode 100644 index 000000000..a95eff622 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/product.png differ diff --git a/site/static/docs/5.3/assets/img/examples/product@2x.png b/site/static/docs/5.3/assets/img/examples/product@2x.png new file mode 100644 index 000000000..1dfe45482 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/product@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sidebars.png b/site/static/docs/5.3/assets/img/examples/sidebars.png new file mode 100644 index 000000000..00efb311e Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sidebars.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sidebars@2x.png b/site/static/docs/5.3/assets/img/examples/sidebars@2x.png new file mode 100644 index 000000000..cb167e535 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sidebars@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sign-in.png b/site/static/docs/5.3/assets/img/examples/sign-in.png new file mode 100644 index 000000000..8d57f561c Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sign-in.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sign-in@2x.png b/site/static/docs/5.3/assets/img/examples/sign-in@2x.png new file mode 100644 index 000000000..477335984 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sign-in@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/starter-template.png b/site/static/docs/5.3/assets/img/examples/starter-template.png new file mode 100644 index 000000000..d4b20217a Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/starter-template.png differ diff --git a/site/static/docs/5.3/assets/img/examples/starter-template@2x.png b/site/static/docs/5.3/assets/img/examples/starter-template@2x.png new file mode 100644 index 000000000..9323837ca Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/starter-template@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png new file mode 100644 index 000000000..cc88cfb2d Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png new file mode 100644 index 000000000..9478901f6 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer.png b/site/static/docs/5.3/assets/img/examples/sticky-footer.png new file mode 100644 index 000000000..4b5246d38 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sticky-footer.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer@2x.png b/site/static/docs/5.3/assets/img/examples/sticky-footer@2x.png new file mode 100644 index 000000000..5a008a0ac Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/sticky-footer@2x.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png b/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png new file mode 100644 index 000000000..1c276a531 Binary files /dev/null and b/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png b/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png new file mode 100644 index 000000000..936025e1c Binary files /dev/null and b/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png new file mode 100644 index 000000000..e7053f970 Binary files /dev/null and b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/favicon-16x16.png b/site/static/docs/5.3/assets/img/favicons/favicon-16x16.png new file mode 100644 index 000000000..f4754c1a3 Binary files /dev/null and b/site/static/docs/5.3/assets/img/favicons/favicon-16x16.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png b/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png new file mode 100644 index 000000000..ca0593a21 Binary files /dev/null and b/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/favicon.ico b/site/static/docs/5.3/assets/img/favicons/favicon.ico new file mode 100644 index 000000000..054990620 Binary files /dev/null and b/site/static/docs/5.3/assets/img/favicons/favicon.ico differ diff --git a/site/static/docs/5.3/assets/img/favicons/manifest.json b/site/static/docs/5.3/assets/img/favicons/manifest.json new file mode 100644 index 000000000..8f2f0f76b --- /dev/null +++ b/site/static/docs/5.3/assets/img/favicons/manifest.json @@ -0,0 +1,20 @@ +{ + "name": "Bootstrap", + "short_name": "Bootstrap", + "icons": [ + { + "src": "android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "start_url": "/?utm_source=a2hs", + "theme_color": "#7952b3", + "background_color": "#7952b3", + "display": "standalone" +} diff --git a/site/static/docs/5.3/assets/img/favicons/safari-pinned-tab.svg b/site/static/docs/5.3/assets/img/favicons/safari-pinned-tab.svg new file mode 100644 index 000000000..aa6e85cb9 --- /dev/null +++ b/site/static/docs/5.3/assets/img/favicons/safari-pinned-tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png new file mode 100644 index 000000000..4cfa46cf3 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png new file mode 100644 index 000000000..4f7165879 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png b/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png new file mode 100644 index 000000000..a290110e7 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png new file mode 100644 index 000000000..5fe40c526 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png new file mode 100644 index 000000000..189b7f494 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png new file mode 100644 index 000000000..7006386f0 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png differ diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png new file mode 100644 index 000000000..a7aa65be0 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png new file mode 100644 index 000000000..1833fb8a0 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png b/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png new file mode 100644 index 000000000..0c3741bd6 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png new file mode 100644 index 000000000..e29729c23 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png b/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png new file mode 100644 index 000000000..fc37d92d3 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png new file mode 100644 index 000000000..ecba18967 Binary files /dev/null and b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/parcel.png b/site/static/docs/5.3/assets/img/parcel.png new file mode 100644 index 000000000..ff5cc3ae7 Binary files /dev/null and b/site/static/docs/5.3/assets/img/parcel.png differ diff --git a/site/static/docs/5.3/assets/img/vite.svg b/site/static/docs/5.3/assets/img/vite.svg new file mode 100644 index 000000000..831cb1610 --- /dev/null +++ b/site/static/docs/5.3/assets/img/vite.svg @@ -0,0 +1 @@ + diff --git a/site/static/docs/5.3/assets/img/webpack.svg b/site/static/docs/5.3/assets/img/webpack.svg new file mode 100644 index 000000000..ed885f2fe --- /dev/null +++ b/site/static/docs/5.3/assets/img/webpack.svg @@ -0,0 +1 @@ + diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js new file mode 100644 index 000000000..41b6b893e --- /dev/null +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -0,0 +1,62 @@ +/*! + * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Licensed under the Creative Commons Attribution 3.0 Unported License. + */ + +(() => { + 'use strict' + + const storedTheme = localStorage.getItem('theme') + + const getPreferredTheme = () => { + if (storedTheme) { + return storedTheme + } + + return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' + } + + const setTheme = function (theme) { + if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) { + document.documentElement.setAttribute('data-bs-theme', 'dark') + } else { + document.documentElement.setAttribute('data-bs-theme', theme) + } + } + + setTheme(getPreferredTheme()) + + const showActiveTheme = theme => { + const activeThemeIcon = document.querySelector('.theme-icon-active use') + const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) + const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') + + document.querySelectorAll('[data-bs-theme-value]').forEach(element => { + element.classList.remove('active') + }) + + btnToActive.classList.add('active') + activeThemeIcon.setAttribute('href', svgOfActiveBtn) + } + + window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { + if (storedTheme !== 'light' || storedTheme !== 'dark') { + setTheme(getPreferredTheme()) + } + }) + + window.addEventListener('DOMContentLoaded', () => { + showActiveTheme(getPreferredTheme()) + + document.querySelectorAll('[data-bs-theme-value]') + .forEach(toggle => { + toggle.addEventListener('click', () => { + const theme = toggle.getAttribute('data-bs-theme-value') + localStorage.setItem('theme', theme) + setTheme(theme) + showActiveTheme(theme) + }) + }) + }) +})() diff --git a/site/static/docs/5.3/assets/js/validate-forms.js b/site/static/docs/5.3/assets/js/validate-forms.js new file mode 100644 index 000000000..30ea0aa6b --- /dev/null +++ b/site/static/docs/5.3/assets/js/validate-forms.js @@ -0,0 +1,19 @@ +// Example starter JavaScript for disabling form submissions if there are invalid fields +(() => { + 'use strict' + + // Fetch all the forms we want to apply custom Bootstrap validation styles to + const forms = document.querySelectorAll('.needs-validation') + + // Loop over them and prevent submission + Array.from(forms).forEach(form => { + form.addEventListener('submit', event => { + if (!form.checkValidity()) { + event.preventDefault() + event.stopPropagation() + } + + form.classList.add('was-validated') + }, false) + }) +})() -- cgit v1.2.3 From 2cc580e2d1e70d942965d54365db24fe6728ad00 Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Mon, 2 Jan 2023 00:30:53 +0000 Subject: Docs: remove remnants of Twitter / bump dates (#37779) --- site/static/docs/5.3/assets/js/color-modes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 41b6b893e..50a798649 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -1,6 +1,6 @@ /*! * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2023 The Bootstrap Authors * Licensed under the Creative Commons Attribution 3.0 Unported License. */ -- cgit v1.2.3 From 212c0dfd076e4e504de135b2b41647199feb3696 Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Mon, 2 Jan 2023 05:54:46 +0000 Subject: Docs: Make theme switcher accessible (#37780) * Make theme switcher accessible * set an explicit `aria-label` to the switcher (as the `` is not sufficient, as it can be display:none'd and then the button has no accName) * make the theme buttons actual `aria-pressed` toggles * Dynamically update aria-label for theme switcher * Explicitly reset focus after activating theme * Use innerText for the constructed dynamic aria-label this way, if the text ever gets changed in the html, this will adapt appropriately * Tweak accessible name for the dropdown * Fixup * Use `textContent` instead of `innerText` --- site/static/docs/5.3/assets/js/color-modes.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 50a798649..fdd3303dc 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -28,16 +28,23 @@ setTheme(getPreferredTheme()) const showActiveTheme = theme => { + const themeSwitcher = document.querySelector('#bd-theme') + const themeSwitcherText = document.querySelector('#bd-theme-text') const activeThemeIcon = document.querySelector('.theme-icon-active use') const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') document.querySelectorAll('[data-bs-theme-value]').forEach(element => { element.classList.remove('active') + element.setAttribute('aria-pressed', 'false') }) btnToActive.classList.add('active') + btnToActive.setAttribute('aria-pressed', 'true') activeThemeIcon.setAttribute('href', svgOfActiveBtn) + const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})` + themeSwitcher.setAttribute('aria-label', themeSwitcherLabel) + themeSwitcher.focus() } window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { -- cgit v1.2.3 From 39905711fab711ac6f99f8a987931bdee9376b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Sun, 8 Jan 2023 15:58:59 +0100 Subject: Remove autofocus on theme switch when page is loaded --- site/static/docs/5.3/assets/js/color-modes.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index fdd3303dc..68717f82d 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -27,7 +27,7 @@ setTheme(getPreferredTheme()) - const showActiveTheme = theme => { + const showActiveTheme = (theme, focus = false) => { const themeSwitcher = document.querySelector('#bd-theme') const themeSwitcherText = document.querySelector('#bd-theme-text') const activeThemeIcon = document.querySelector('.theme-icon-active use') @@ -44,7 +44,10 @@ activeThemeIcon.setAttribute('href', svgOfActiveBtn) const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})` themeSwitcher.setAttribute('aria-label', themeSwitcherLabel) - themeSwitcher.focus() + + if (focus) { + themeSwitcher.focus() + } } window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { @@ -62,7 +65,7 @@ const theme = toggle.getAttribute('data-bs-theme-value') localStorage.setItem('theme', theme) setTheme(theme) - showActiveTheme(theme) + showActiveTheme(theme, true) }) }) }) -- cgit v1.2.3 From 50723075aad81653a027d0b2ebe2ae7679502d48 Mon Sep 17 00:00:00 2001 From: louismaximepiton Date: Mon, 16 Jan 2023 17:30:05 +0100 Subject: Update grid example --- site/static/docs/5.3/assets/img/examples/grid.png | Bin 14485 -> 10555 bytes .../static/docs/5.3/assets/img/examples/grid@2x.png | Bin 34834 -> 26955 bytes 2 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/examples/grid.png b/site/static/docs/5.3/assets/img/examples/grid.png index 2c18784c2..7b006deb1 100644 Binary files a/site/static/docs/5.3/assets/img/examples/grid.png and b/site/static/docs/5.3/assets/img/examples/grid.png differ diff --git a/site/static/docs/5.3/assets/img/examples/grid@2x.png b/site/static/docs/5.3/assets/img/examples/grid@2x.png index e95c36365..facb66369 100644 Binary files a/site/static/docs/5.3/assets/img/examples/grid@2x.png and b/site/static/docs/5.3/assets/img/examples/grid@2x.png differ -- cgit v1.2.3 From 2dc329dd3725d99f756b07a70db5b1cd7432bcea Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 14 Feb 2023 20:58:39 -0800 Subject: WIP: New snippet examples (#36309) * Start work on some new snippet examples * Update for dark mode, fixes * Add images, update descriptions * examples fixes --- site/static/docs/5.3/assets/img/examples/badges.png | Bin 0 -> 6341 bytes site/static/docs/5.3/assets/img/examples/badges@2x.png | Bin 0 -> 14828 bytes .../static/docs/5.3/assets/img/examples/breadcrumbs.png | Bin 0 -> 2382 bytes .../docs/5.3/assets/img/examples/breadcrumbs@2x.png | Bin 0 -> 6075 bytes site/static/docs/5.3/assets/img/examples/buttons.png | Bin 0 -> 4551 bytes site/static/docs/5.3/assets/img/examples/buttons@2x.png | Bin 0 -> 10016 bytes site/static/docs/5.3/assets/img/examples/jumbotrons.png | Bin 0 -> 6486 bytes .../docs/5.3/assets/img/examples/jumbotrons@2x.png | Bin 0 -> 13951 bytes 8 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.3/assets/img/examples/badges.png create mode 100644 site/static/docs/5.3/assets/img/examples/badges@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/breadcrumbs.png create mode 100644 site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/buttons.png create mode 100644 site/static/docs/5.3/assets/img/examples/buttons@2x.png create mode 100644 site/static/docs/5.3/assets/img/examples/jumbotrons.png create mode 100644 site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/examples/badges.png b/site/static/docs/5.3/assets/img/examples/badges.png new file mode 100644 index 000000000..8e5fd9fd7 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/badges.png differ diff --git a/site/static/docs/5.3/assets/img/examples/badges@2x.png b/site/static/docs/5.3/assets/img/examples/badges@2x.png new file mode 100644 index 000000000..5fff196a2 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/badges@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs.png new file mode 100644 index 000000000..b67c355c9 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/breadcrumbs.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png new file mode 100644 index 000000000..3083e9ea4 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons.png b/site/static/docs/5.3/assets/img/examples/buttons.png new file mode 100644 index 000000000..1f6983daa Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/buttons.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons@2x.png b/site/static/docs/5.3/assets/img/examples/buttons@2x.png new file mode 100644 index 000000000..caf7bd37e Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/buttons@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/jumbotrons.png b/site/static/docs/5.3/assets/img/examples/jumbotrons.png new file mode 100644 index 000000000..c6feef08c Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/jumbotrons.png differ diff --git a/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png b/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png new file mode 100644 index 000000000..880c027e9 Binary files /dev/null and b/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png differ -- cgit v1.2.3 From 42e99cc59f6e87795e25d751bcfaf3be711191b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Wed, 15 Feb 2023 19:41:33 +0100 Subject: Reduce size of guide dev server images (#37741) * Reduce size of guide dev server images * Optimised images with calibre/image-actions * Lossy compress new images --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: XhmikosR --- .../img/guides/parcel-dev-server-bootstrap.png | Bin 102674 -> 15565 bytes .../5.3/assets/img/guides/parcel-dev-server.png | Bin 75744 -> 13933 bytes .../img/guides/vite-dev-server-bootstrap.png | Bin 75894 -> 14001 bytes .../docs/5.3/assets/img/guides/vite-dev-server.png | Bin 74851 -> 13584 bytes .../img/guides/webpack-dev-server-bootstrap.png | Bin 77318 -> 14702 bytes .../5.3/assets/img/guides/webpack-dev-server.png | Bin 76154 -> 14197 bytes 6 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png index a7aa65be0..59538797c 100644 Binary files a/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png index 1833fb8a0..db36ee594 100644 Binary files a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png b/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png index 0c3741bd6..a3ae0953f 100644 Binary files a/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png and b/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png index e29729c23..30a98b805 100644 Binary files a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png and b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png b/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png index fc37d92d3..0bf8304e9 100644 Binary files a/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png and b/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png differ diff --git a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png index ecba18967..2d612d378 100644 Binary files a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png and b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png differ -- cgit v1.2.3 From 31221272e0bbea1e436699cd5d68f705f37d3361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Fri, 17 Feb 2023 07:56:30 +0100 Subject: Fix console error in examples pages du to no theme switcher (#38074) --- site/static/docs/5.3/assets/js/color-modes.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 68717f82d..4528ba36b 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -29,6 +29,11 @@ const showActiveTheme = (theme, focus = false) => { const themeSwitcher = document.querySelector('#bd-theme') + + if (!themeSwitcher) { + return + } + const themeSwitcherText = document.querySelector('#bd-theme-text') const activeThemeIcon = document.querySelector('.theme-icon-active use') const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) -- cgit v1.2.3 From 59c556cea60fdeb9c365031c09dc17884bf63bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Fri, 3 Mar 2023 20:09:42 +0100 Subject: Drop unused `bootstrap-social-logo.png` --- .../docs/5.3/assets/brand/bootstrap-social-logo.png | Bin 145590 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 site/static/docs/5.3/assets/brand/bootstrap-social-logo.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/brand/bootstrap-social-logo.png b/site/static/docs/5.3/assets/brand/bootstrap-social-logo.png deleted file mode 100644 index 9dbb732a4..000000000 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-social-logo.png and /dev/null differ -- cgit v1.2.3 From 474bf2aed1c03cf53e2d2c48b30c5e689dd9e6bc Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 14 Mar 2023 20:30:11 +0200 Subject: Guard more in color-modes.js (#38235) --- site/static/docs/5.3/assets/js/color-modes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 4528ba36b..541fcc21b 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -29,12 +29,12 @@ const showActiveTheme = (theme, focus = false) => { const themeSwitcher = document.querySelector('#bd-theme') + const themeSwitcherText = document.querySelector('#bd-theme-text') - if (!themeSwitcher) { + if (!themeSwitcher || !themeSwitcherText) { return } - const themeSwitcherText = document.querySelector('#bd-theme-text') const activeThemeIcon = document.querySelector('.theme-icon-active use') const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') -- cgit v1.2.3 From 6855ce9512d0cd0b4c54f720ac5b9a15c685e057 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 19 Mar 2023 17:35:57 -0700 Subject: Revert "Guard more in color-modes.js (#38235)" (#38280) This reverts commit 474bf2aed1c03cf53e2d2c48b30c5e689dd9e6bc. --- site/static/docs/5.3/assets/js/color-modes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 541fcc21b..4528ba36b 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -29,12 +29,12 @@ const showActiveTheme = (theme, focus = false) => { const themeSwitcher = document.querySelector('#bd-theme') - const themeSwitcherText = document.querySelector('#bd-theme-text') - if (!themeSwitcher || !themeSwitcherText) { + if (!themeSwitcher) { return } + const themeSwitcherText = document.querySelector('#bd-theme-text') const activeThemeIcon = document.querySelector('.theme-icon-active use') const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') -- cgit v1.2.3 From 5d4048350f000710d228ee341a093784ca0ae988 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 20 Mar 2023 02:42:52 +0200 Subject: Slightly improve examples PNG files (#38270) Before: 97,4 KB (99.758 bytes) After: 94,2 KB (96.512 bytes) --- site/static/docs/5.3/assets/img/examples/badges.png | Bin 6341 -> 6328 bytes .../docs/5.3/assets/img/examples/badges@2x.png | Bin 14828 -> 14798 bytes .../docs/5.3/assets/img/examples/breadcrumbs@2x.png | Bin 6075 -> 6060 bytes .../static/docs/5.3/assets/img/examples/buttons.png | Bin 4551 -> 4545 bytes .../docs/5.3/assets/img/examples/buttons@2x.png | Bin 10016 -> 9994 bytes site/static/docs/5.3/assets/img/examples/grid.png | Bin 10555 -> 9395 bytes .../static/docs/5.3/assets/img/examples/grid@2x.png | Bin 26955 -> 24996 bytes .../docs/5.3/assets/img/examples/jumbotrons.png | Bin 6486 -> 6463 bytes .../docs/5.3/assets/img/examples/jumbotrons@2x.png | Bin 13951 -> 13933 bytes 9 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/examples/badges.png b/site/static/docs/5.3/assets/img/examples/badges.png index 8e5fd9fd7..bcaae7ecf 100644 Binary files a/site/static/docs/5.3/assets/img/examples/badges.png and b/site/static/docs/5.3/assets/img/examples/badges.png differ diff --git a/site/static/docs/5.3/assets/img/examples/badges@2x.png b/site/static/docs/5.3/assets/img/examples/badges@2x.png index 5fff196a2..5841c7adb 100644 Binary files a/site/static/docs/5.3/assets/img/examples/badges@2x.png and b/site/static/docs/5.3/assets/img/examples/badges@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png index 3083e9ea4..ee8466573 100644 Binary files a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png and b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons.png b/site/static/docs/5.3/assets/img/examples/buttons.png index 1f6983daa..e628d9b03 100644 Binary files a/site/static/docs/5.3/assets/img/examples/buttons.png and b/site/static/docs/5.3/assets/img/examples/buttons.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons@2x.png b/site/static/docs/5.3/assets/img/examples/buttons@2x.png index caf7bd37e..2e1544034 100644 Binary files a/site/static/docs/5.3/assets/img/examples/buttons@2x.png and b/site/static/docs/5.3/assets/img/examples/buttons@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/grid.png b/site/static/docs/5.3/assets/img/examples/grid.png index 7b006deb1..15ccfd416 100644 Binary files a/site/static/docs/5.3/assets/img/examples/grid.png and b/site/static/docs/5.3/assets/img/examples/grid.png differ diff --git a/site/static/docs/5.3/assets/img/examples/grid@2x.png b/site/static/docs/5.3/assets/img/examples/grid@2x.png index facb66369..78ade65f5 100644 Binary files a/site/static/docs/5.3/assets/img/examples/grid@2x.png and b/site/static/docs/5.3/assets/img/examples/grid@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/jumbotrons.png b/site/static/docs/5.3/assets/img/examples/jumbotrons.png index c6feef08c..daafe594b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/jumbotrons.png and b/site/static/docs/5.3/assets/img/examples/jumbotrons.png differ diff --git a/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png b/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png index 880c027e9..4e549a484 100644 Binary files a/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png and b/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png differ -- cgit v1.2.3 From 137bfbad7bc41025be94fddf739e24a645e6c119 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 11 Apr 2023 21:23:12 +0300 Subject: Slightly improve PNG files compression (#38438) Used oxipng v8.0.0 with `oxipng -omax -Z`. Before: 331 KB (339.560 bytes) After: 329 KB (337.647 bytes) --- .../5.3/assets/img/bootstrap-themes-collage.png | Bin 74829 -> 74442 bytes .../docs/5.3/assets/img/examples/album-rtl.png | Bin 6392 -> 6391 bytes .../docs/5.3/assets/img/examples/album-rtl@2x.png | Bin 15450 -> 15347 bytes site/static/docs/5.3/assets/img/examples/album.png | Bin 10760 -> 10678 bytes .../docs/5.3/assets/img/examples/breadcrumbs@2x.png | Bin 6060 -> 6028 bytes .../5.3/assets/img/examples/carousel-rtl@2x.png | Bin 24535 -> 24460 bytes .../docs/5.3/assets/img/examples/carousel.png | Bin 13314 -> 13219 bytes .../docs/5.3/assets/img/examples/carousel@2x.png | Bin 31465 -> 31320 bytes .../static/docs/5.3/assets/img/examples/footers.png | Bin 4324 -> 4297 bytes .../static/docs/5.3/assets/img/examples/headers.png | Bin 5197 -> 5196 bytes .../docs/5.3/assets/img/examples/masonry@2x.png | Bin 37733 -> 37705 bytes .../docs/5.3/assets/img/examples/navbar-bottom.png | Bin 4873 -> 4819 bytes .../docs/5.3/assets/img/examples/navbar-fixed.png | Bin 5911 -> 5876 bytes .../5.3/assets/img/examples/navbar-fixed@2x.png | Bin 14103 -> 13979 bytes .../docs/5.3/assets/img/examples/navbar-static.png | Bin 6624 -> 6541 bytes .../5.3/assets/img/examples/navbars-offcanvas.png | Bin 6864 -> 6850 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 17070 -> 16965 bytes .../static/docs/5.3/assets/img/examples/navbars.png | Bin 13124 -> 12965 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 6979 -> 6966 bytes .../assets/img/examples/sticky-footer-navbar@2x.png | Bin 15836 -> 15744 bytes .../docs/5.3/assets/img/examples/sticky-footer.png | Bin 4280 -> 4279 bytes .../docs/5.3/assets/img/favicons/favicon-32x32.png | Bin 1159 -> 1156 bytes site/static/docs/5.3/assets/img/parcel.png | Bin 6042 -> 6003 bytes 23 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png index 0a3bf5d69..476da355c 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl.png b/site/static/docs/5.3/assets/img/examples/album-rtl.png index 8bec58f1c..54e80b768 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album-rtl.png and b/site/static/docs/5.3/assets/img/examples/album-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png index 47b5b9a4a..7f4a654f9 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album.png b/site/static/docs/5.3/assets/img/examples/album.png index 9f628babf..f0a2a6b9d 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album.png and b/site/static/docs/5.3/assets/img/examples/album.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png index ee8466573..a4f75986c 100644 Binary files a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png and b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png index 2beeca096..e44cde62b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel.png b/site/static/docs/5.3/assets/img/examples/carousel.png index b8ea3ce1c..4485d659c 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel.png and b/site/static/docs/5.3/assets/img/examples/carousel.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel@2x.png b/site/static/docs/5.3/assets/img/examples/carousel@2x.png index 39df35930..3d8b3fd67 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel@2x.png and b/site/static/docs/5.3/assets/img/examples/carousel@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/footers.png b/site/static/docs/5.3/assets/img/examples/footers.png index ac20b7f5d..8ab0cd0a3 100644 Binary files a/site/static/docs/5.3/assets/img/examples/footers.png and b/site/static/docs/5.3/assets/img/examples/footers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers.png b/site/static/docs/5.3/assets/img/examples/headers.png index 8ad7f6cd2..fbb7fd2a4 100644 Binary files a/site/static/docs/5.3/assets/img/examples/headers.png and b/site/static/docs/5.3/assets/img/examples/headers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry@2x.png b/site/static/docs/5.3/assets/img/examples/masonry@2x.png index 8d9a5cf97..809fd1253 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry@2x.png and b/site/static/docs/5.3/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png index af47666f1..5e0b999fe 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png and b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-fixed.png b/site/static/docs/5.3/assets/img/examples/navbar-fixed.png index 97df67e96..eba24d37b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-fixed.png and b/site/static/docs/5.3/assets/img/examples/navbar-fixed.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png index 3e0f98b95..6e4b50f1a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png and b/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-static.png b/site/static/docs/5.3/assets/img/examples/navbar-static.png index 8d54f182c..c894ae8ef 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-static.png and b/site/static/docs/5.3/assets/img/examples/navbar-static.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png index be2d1487c..0347bee53 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png index d2b947176..7775a3087 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars.png b/site/static/docs/5.3/assets/img/examples/navbars.png index 0d7b44afb..3a9b8737e 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars.png and b/site/static/docs/5.3/assets/img/examples/navbars.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png index cc88cfb2d..a9778d952 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png index 9478901f6..1662b364d 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer.png b/site/static/docs/5.3/assets/img/examples/sticky-footer.png index 4b5246d38..c2776fd3d 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png b/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png index ca0593a21..7c7f277a1 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png and b/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png differ diff --git a/site/static/docs/5.3/assets/img/parcel.png b/site/static/docs/5.3/assets/img/parcel.png index ff5cc3ae7..21afaa600 100644 Binary files a/site/static/docs/5.3/assets/img/parcel.png and b/site/static/docs/5.3/assets/img/parcel.png differ -- cgit v1.2.3 From f0be063c9792f6fd123d933335efd0d8cc7f6f1f Mon Sep 17 00:00:00 2001 From: Jeroen Akkerman Date: Fri, 26 May 2023 06:18:49 +0200 Subject: Update color-modes.js (#38626) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update color-modes.js Fix IF statement in the prefer-color-scheme change listener always evaluating to `true` and changing the theme to "dark" even when "light" is set as the preferred theme. | `||` | `x !== "light"` | `x !== "dark"` | Result | |--|:--:|:--:|:--:| | `x = "light"` | ○ | ● | ● | | `x = "dark"` | ● | ○ | ● | | `x = "auto"` | ● | ● | ● | | `x = "bogus"` | ● | ● | ● |
| `&&` | `x !== "light"` | `x !== "dark"` | Result | |--|:--:|:--:|:--:| | `x = "light"` | ○ | ● | ○ | | `x = "dark"` | ● | ○ | ○ | | `x = "auto"` | ● | ● | ● | | `x = "bogus"` | ● | ● | ● | * Implement re-read of stored theme --- site/static/docs/5.3/assets/js/color-modes.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 4528ba36b..32cbaa174 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -7,9 +7,11 @@ (() => { 'use strict' - const storedTheme = localStorage.getItem('theme') + const getStoredTheme = () => localStorage.getItem('theme') + const setStoredTheme = theme => localStorage.setItem('theme', theme) const getPreferredTheme = () => { + const storedTheme = getStoredTheme() if (storedTheme) { return storedTheme } @@ -17,7 +19,7 @@ return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' } - const setTheme = function (theme) { + const setTheme = theme => { if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) { document.documentElement.setAttribute('data-bs-theme', 'dark') } else { @@ -56,6 +58,7 @@ } window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { + const storedTheme = getStoredTheme() if (storedTheme !== 'light' || storedTheme !== 'dark') { setTheme(getPreferredTheme()) } @@ -68,7 +71,7 @@ .forEach(toggle => { toggle.addEventListener('click', () => { const theme = toggle.getAttribute('data-bs-theme-value') - localStorage.setItem('theme', theme) + setStoredTheme(theme) setTheme(theme) showActiveTheme(theme, true) }) -- cgit v1.2.3 From ad9cb223a9899093e2537fdca6222e36465080a2 Mon Sep 17 00:00:00 2001 From: Mark Cowan Date: Tue, 30 May 2023 09:00:26 +0300 Subject: Fix always-false boolean condition (#38665) --- site/static/docs/5.3/assets/js/color-modes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 32cbaa174..9f22daa1b 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -59,7 +59,7 @@ window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { const storedTheme = getStoredTheme() - if (storedTheme !== 'light' || storedTheme !== 'dark') { + if (storedTheme !== 'light' && storedTheme !== 'dark') { setTheme(getPreferredTheme()) } }) -- cgit v1.2.3 From 18a400a32907836d31a9319c598a78e1df55dda9 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 22 Aug 2023 11:23:43 +0300 Subject: Further improve image compression with oxipng and the latest jpegoptim (#39037) --- .../5.3/assets/brand/bootstrap-logo-shadow.png | Bin 48625 -> 46142 bytes .../static/docs/5.3/assets/img/bootstrap-icons.png | Bin 40798 -> 40444 bytes .../5.3/assets/img/bootstrap-themes-collage@2x.png | Bin 244640 -> 244028 bytes .../docs/5.3/assets/img/examples/album@2x.png | Bin 25026 -> 24917 bytes .../docs/5.3/assets/img/examples/badges@2x.png | Bin 14798 -> 14236 bytes .../docs/5.3/assets/img/examples/buttons.png | Bin 4545 -> 4495 bytes .../docs/5.3/assets/img/examples/buttons@2x.png | Bin 9994 -> 9832 bytes .../docs/5.3/assets/img/examples/carousel-rtl.png | Bin 10344 -> 10264 bytes .../5.3/assets/img/examples/carousel-rtl@2x.png | Bin 24460 -> 24421 bytes .../docs/5.3/assets/img/examples/carousel.png | Bin 13219 -> 13178 bytes .../docs/5.3/assets/img/examples/carousel@2x.png | Bin 31320 -> 31276 bytes .../5.3/assets/img/examples/dashboard-rtl@2x.png | Bin 19399 -> 19368 bytes .../docs/5.3/assets/img/examples/headers.png | Bin 5196 -> 5182 bytes .../docs/5.3/assets/img/examples/headers@2x.png | Bin 12639 -> 12566 bytes .../docs/5.3/assets/img/examples/list-groups.png | Bin 7134 -> 7116 bytes .../docs/5.3/assets/img/examples/masonry.png | Bin 15253 -> 15238 bytes .../docs/5.3/assets/img/examples/masonry@2x.png | Bin 37705 -> 37623 bytes .../docs/5.3/assets/img/examples/navbar-bottom.png | Bin 4819 -> 4754 bytes .../5.3/assets/img/examples/navbar-bottom@2x.png | Bin 11666 -> 11603 bytes .../5.3/assets/img/examples/navbars-offcanvas.png | Bin 6850 -> 6821 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 16965 -> 16919 bytes .../5.3/assets/img/examples/offcanvas-navbar.png | Bin 9691 -> 9674 bytes .../assets/img/examples/offcanvas-navbar@2x.png | Bin 23975 -> 23928 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 6966 -> 6895 bytes .../img/examples/sticky-footer-navbar@2x.png | Bin 15744 -> 15725 bytes .../5.3/assets/img/favicons/apple-touch-icon.png | Bin 7650 -> 7489 bytes .../5.3/assets/img/guides/parcel-dev-server.png | Bin 13933 -> 13694 bytes .../docs/5.3/assets/img/guides/vite-dev-server.png | Bin 13584 -> 13266 bytes .../5.3/assets/img/guides/webpack-dev-server.png | Bin 14197 -> 14001 bytes 29 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png index 3643b912e..9e7dac700 100644 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-icons.png b/site/static/docs/5.3/assets/img/bootstrap-icons.png index 9c418d5f3..4d080aba9 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-icons.png and b/site/static/docs/5.3/assets/img/bootstrap-icons.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png index ad165eb19..5f0bd8fbb 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album@2x.png b/site/static/docs/5.3/assets/img/examples/album@2x.png index 00c938df8..c2f648faa 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album@2x.png and b/site/static/docs/5.3/assets/img/examples/album@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/badges@2x.png b/site/static/docs/5.3/assets/img/examples/badges@2x.png index 5841c7adb..10db5be8d 100644 Binary files a/site/static/docs/5.3/assets/img/examples/badges@2x.png and b/site/static/docs/5.3/assets/img/examples/badges@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons.png b/site/static/docs/5.3/assets/img/examples/buttons.png index e628d9b03..b28a3c21a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/buttons.png and b/site/static/docs/5.3/assets/img/examples/buttons.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons@2x.png b/site/static/docs/5.3/assets/img/examples/buttons@2x.png index 2e1544034..91b3d9838 100644 Binary files a/site/static/docs/5.3/assets/img/examples/buttons@2x.png and b/site/static/docs/5.3/assets/img/examples/buttons@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl.png index 1fb5ae6a8..4e5fd75dc 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel-rtl.png and b/site/static/docs/5.3/assets/img/examples/carousel-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png index e44cde62b..64da9717b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel.png b/site/static/docs/5.3/assets/img/examples/carousel.png index 4485d659c..ba18ebf31 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel.png and b/site/static/docs/5.3/assets/img/examples/carousel.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel@2x.png b/site/static/docs/5.3/assets/img/examples/carousel@2x.png index 3d8b3fd67..b75cf5380 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel@2x.png and b/site/static/docs/5.3/assets/img/examples/carousel@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png index 26b031a99..7869fd707 100644 Binary files a/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers.png b/site/static/docs/5.3/assets/img/examples/headers.png index fbb7fd2a4..9ccf25347 100644 Binary files a/site/static/docs/5.3/assets/img/examples/headers.png and b/site/static/docs/5.3/assets/img/examples/headers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers@2x.png b/site/static/docs/5.3/assets/img/examples/headers@2x.png index 234f9b1e6..12d3f9ab8 100644 Binary files a/site/static/docs/5.3/assets/img/examples/headers@2x.png and b/site/static/docs/5.3/assets/img/examples/headers@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups.png b/site/static/docs/5.3/assets/img/examples/list-groups.png index 9f49a54ad..60ff6fd7e 100644 Binary files a/site/static/docs/5.3/assets/img/examples/list-groups.png and b/site/static/docs/5.3/assets/img/examples/list-groups.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry.png b/site/static/docs/5.3/assets/img/examples/masonry.png index 20137306f..aa2c3edcc 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry.png and b/site/static/docs/5.3/assets/img/examples/masonry.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry@2x.png b/site/static/docs/5.3/assets/img/examples/masonry@2x.png index 809fd1253..5aef1c517 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry@2x.png and b/site/static/docs/5.3/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png index 5e0b999fe..7e09af52a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png and b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png index 93a7cdc49..9c77e8fcc 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png and b/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png index 0347bee53..9a65894d2 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png index 7775a3087..6559831d3 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png index 1e75d2663..0d9a3bf0a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png and b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png index e5287dde8..3a36708d2 100644 Binary files a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png and b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png index a9778d952..d0084f402 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png index 1662b364d..168ef0bed 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png index e7053f970..fbdc8f70b 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png and b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png differ diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png index db36ee594..8d207335e 100644 Binary files a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png index 30a98b805..9c9063527 100644 Binary files a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png and b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png index 2d612d378..843a4a27d 100644 Binary files a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png and b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png differ -- cgit v1.2.3 From 7d66339e989cae37433008b8b87f5ba025dd3e76 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 2 Oct 2023 12:04:31 +0300 Subject: Update favicon --- .../docs/5.3/assets/img/favicons/favicon-32x32.png | Bin 1156 -> 1152 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png b/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png index 7c7f277a1..7f99a91e3 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png and b/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png differ -- cgit v1.2.3 From 73e1dcf43eff8371dde52ce41bd1d9fdc2b47d1f Mon Sep 17 00:00:00 2001 From: MewenLeHo Date: Fri, 22 Sep 2023 14:31:53 +0200 Subject: Fix color-mode.js --- site/static/docs/5.3/assets/js/color-modes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 9f22daa1b..31f22f9e4 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -20,8 +20,8 @@ } const setTheme = theme => { - if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) { - document.documentElement.setAttribute('data-bs-theme', 'dark') + if (theme === 'auto') { + document.documentElement.setAttribute('data-bs-theme', (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')) } else { document.documentElement.setAttribute('data-bs-theme', theme) } -- cgit v1.2.3 From 3486c9d9d81efc50b6ea1ef77d158160d87729a1 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 17 Dec 2023 22:15:19 +0200 Subject: Minor image compression improvements (#39503) --- .../5.3/assets/brand/bootstrap-logo-shadow.png | Bin 46142 -> 46112 bytes .../static/docs/5.3/assets/img/bootstrap-icons.png | Bin 40444 -> 40346 bytes .../5.3/assets/img/bootstrap-themes-collage.png | Bin 74442 -> 74428 bytes .../5.3/assets/img/bootstrap-themes-collage@2x.png | Bin 244028 -> 243991 bytes .../docs/5.3/assets/img/examples/album-rtl.png | Bin 6391 -> 6384 bytes .../docs/5.3/assets/img/examples/album-rtl@2x.png | Bin 15347 -> 15342 bytes site/static/docs/5.3/assets/img/examples/album.png | Bin 10678 -> 10667 bytes .../docs/5.3/assets/img/examples/album@2x.png | Bin 24917 -> 24904 bytes .../docs/5.3/assets/img/examples/badges@2x.png | Bin 14236 -> 14232 bytes .../5.3/assets/img/examples/breadcrumbs@2x.png | Bin 6028 -> 6025 bytes .../docs/5.3/assets/img/examples/buttons.png | Bin 4495 -> 4493 bytes .../docs/5.3/assets/img/examples/buttons@2x.png | Bin 9832 -> 9827 bytes .../docs/5.3/assets/img/examples/carousel-rtl.png | Bin 10264 -> 10242 bytes .../5.3/assets/img/examples/carousel-rtl@2x.png | Bin 24421 -> 24414 bytes .../docs/5.3/assets/img/examples/carousel.png | Bin 13178 -> 13170 bytes .../docs/5.3/assets/img/examples/carousel@2x.png | Bin 31276 -> 31271 bytes .../5.3/assets/img/examples/dashboard-rtl@2x.png | Bin 19368 -> 19363 bytes .../docs/5.3/assets/img/examples/footers.png | Bin 4297 -> 4295 bytes .../docs/5.3/assets/img/examples/headers.png | Bin 5182 -> 5180 bytes .../docs/5.3/assets/img/examples/headers@2x.png | Bin 12566 -> 12565 bytes .../docs/5.3/assets/img/examples/list-groups.png | Bin 7116 -> 7114 bytes .../docs/5.3/assets/img/examples/masonry.png | Bin 15238 -> 15234 bytes .../docs/5.3/assets/img/examples/masonry@2x.png | Bin 37623 -> 37617 bytes .../docs/5.3/assets/img/examples/navbar-bottom.png | Bin 4754 -> 4747 bytes .../5.3/assets/img/examples/navbar-bottom@2x.png | Bin 11603 -> 11588 bytes .../docs/5.3/assets/img/examples/navbar-fixed.png | Bin 5876 -> 5864 bytes .../5.3/assets/img/examples/navbar-fixed@2x.png | Bin 13979 -> 13971 bytes .../docs/5.3/assets/img/examples/navbar-static.png | Bin 6541 -> 6540 bytes .../5.3/assets/img/examples/navbars-offcanvas.png | Bin 6821 -> 6819 bytes .../assets/img/examples/navbars-offcanvas@2x.png | Bin 16919 -> 16913 bytes .../docs/5.3/assets/img/examples/navbars.png | Bin 12965 -> 12963 bytes .../5.3/assets/img/examples/offcanvas-navbar.png | Bin 9674 -> 9673 bytes .../assets/img/examples/offcanvas-navbar@2x.png | Bin 23928 -> 23926 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 6895 -> 6891 bytes .../img/examples/sticky-footer-navbar@2x.png | Bin 15725 -> 15720 bytes .../docs/5.3/assets/img/examples/sticky-footer.png | Bin 4279 -> 4278 bytes .../5.3/assets/img/favicons/apple-touch-icon.png | Bin 7489 -> 7488 bytes .../5.3/assets/img/guides/parcel-dev-server.png | Bin 13694 -> 13690 bytes .../docs/5.3/assets/img/guides/vite-dev-server.png | Bin 13266 -> 13265 bytes .../5.3/assets/img/guides/webpack-dev-server.png | Bin 14001 -> 13999 bytes site/static/docs/5.3/assets/img/parcel.png | Bin 6003 -> 6001 bytes 41 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png index 9e7dac700..cdd0c8a34 100644 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-icons.png b/site/static/docs/5.3/assets/img/bootstrap-icons.png index 4d080aba9..0000e8382 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-icons.png and b/site/static/docs/5.3/assets/img/bootstrap-icons.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png index 476da355c..cdb5549e2 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png index 5f0bd8fbb..2ed6bc026 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl.png b/site/static/docs/5.3/assets/img/examples/album-rtl.png index 54e80b768..2becbc31e 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album-rtl.png and b/site/static/docs/5.3/assets/img/examples/album-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png index 7f4a654f9..db374c23a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album.png b/site/static/docs/5.3/assets/img/examples/album.png index f0a2a6b9d..f0af62401 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album.png and b/site/static/docs/5.3/assets/img/examples/album.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album@2x.png b/site/static/docs/5.3/assets/img/examples/album@2x.png index c2f648faa..bd43a51e1 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album@2x.png and b/site/static/docs/5.3/assets/img/examples/album@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/badges@2x.png b/site/static/docs/5.3/assets/img/examples/badges@2x.png index 10db5be8d..2c4032764 100644 Binary files a/site/static/docs/5.3/assets/img/examples/badges@2x.png and b/site/static/docs/5.3/assets/img/examples/badges@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png index a4f75986c..cf492b836 100644 Binary files a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png and b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons.png b/site/static/docs/5.3/assets/img/examples/buttons.png index b28a3c21a..4da03f791 100644 Binary files a/site/static/docs/5.3/assets/img/examples/buttons.png and b/site/static/docs/5.3/assets/img/examples/buttons.png differ diff --git a/site/static/docs/5.3/assets/img/examples/buttons@2x.png b/site/static/docs/5.3/assets/img/examples/buttons@2x.png index 91b3d9838..752e65902 100644 Binary files a/site/static/docs/5.3/assets/img/examples/buttons@2x.png and b/site/static/docs/5.3/assets/img/examples/buttons@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl.png index 4e5fd75dc..2290943f9 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel-rtl.png and b/site/static/docs/5.3/assets/img/examples/carousel-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png index 64da9717b..9afa5a5d1 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel.png b/site/static/docs/5.3/assets/img/examples/carousel.png index ba18ebf31..e2bbba6c8 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel.png and b/site/static/docs/5.3/assets/img/examples/carousel.png differ diff --git a/site/static/docs/5.3/assets/img/examples/carousel@2x.png b/site/static/docs/5.3/assets/img/examples/carousel@2x.png index b75cf5380..bc5d4a09d 100644 Binary files a/site/static/docs/5.3/assets/img/examples/carousel@2x.png and b/site/static/docs/5.3/assets/img/examples/carousel@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png index 7869fd707..7e5752025 100644 Binary files a/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/footers.png b/site/static/docs/5.3/assets/img/examples/footers.png index 8ab0cd0a3..74fe82065 100644 Binary files a/site/static/docs/5.3/assets/img/examples/footers.png and b/site/static/docs/5.3/assets/img/examples/footers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers.png b/site/static/docs/5.3/assets/img/examples/headers.png index 9ccf25347..989576246 100644 Binary files a/site/static/docs/5.3/assets/img/examples/headers.png and b/site/static/docs/5.3/assets/img/examples/headers.png differ diff --git a/site/static/docs/5.3/assets/img/examples/headers@2x.png b/site/static/docs/5.3/assets/img/examples/headers@2x.png index 12d3f9ab8..e8de7498c 100644 Binary files a/site/static/docs/5.3/assets/img/examples/headers@2x.png and b/site/static/docs/5.3/assets/img/examples/headers@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups.png b/site/static/docs/5.3/assets/img/examples/list-groups.png index 60ff6fd7e..1d48c449d 100644 Binary files a/site/static/docs/5.3/assets/img/examples/list-groups.png and b/site/static/docs/5.3/assets/img/examples/list-groups.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry.png b/site/static/docs/5.3/assets/img/examples/masonry.png index aa2c3edcc..67e0d8a83 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry.png and b/site/static/docs/5.3/assets/img/examples/masonry.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry@2x.png b/site/static/docs/5.3/assets/img/examples/masonry@2x.png index 5aef1c517..fa28b0334 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry@2x.png and b/site/static/docs/5.3/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png index 7e09af52a..77f1dc83a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-bottom.png and b/site/static/docs/5.3/assets/img/examples/navbar-bottom.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png index 9c77e8fcc..031e12d2a 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png and b/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-fixed.png b/site/static/docs/5.3/assets/img/examples/navbar-fixed.png index eba24d37b..1b18d79dd 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-fixed.png and b/site/static/docs/5.3/assets/img/examples/navbar-fixed.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png index 6e4b50f1a..6d2a644f7 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png and b/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-static.png b/site/static/docs/5.3/assets/img/examples/navbar-static.png index c894ae8ef..7bb6b4b18 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-static.png and b/site/static/docs/5.3/assets/img/examples/navbar-static.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png index 9a65894d2..da4ccbc50 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png index 6559831d3..83acbca56 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars.png b/site/static/docs/5.3/assets/img/examples/navbars.png index 3a9b8737e..a81e85cbd 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars.png and b/site/static/docs/5.3/assets/img/examples/navbars.png differ diff --git a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png index 0d9a3bf0a..9540fe596 100644 Binary files a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png and b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png index 3a36708d2..abb13bc37 100644 Binary files a/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png and b/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png index d0084f402..6e1653b08 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png index 168ef0bed..1abb38223 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer.png b/site/static/docs/5.3/assets/img/examples/sticky-footer.png index c2776fd3d..c5ea6ef82 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png index fbdc8f70b..a55a22933 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png and b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png differ diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png index 8d207335e..d88aa6be6 100644 Binary files a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png index 9c9063527..4b1f1f69e 100644 Binary files a/site/static/docs/5.3/assets/img/guides/vite-dev-server.png and b/site/static/docs/5.3/assets/img/guides/vite-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png index 843a4a27d..2802d891c 100644 Binary files a/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png and b/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png differ diff --git a/site/static/docs/5.3/assets/img/parcel.png b/site/static/docs/5.3/assets/img/parcel.png index 21afaa600..b48b46a78 100644 Binary files a/site/static/docs/5.3/assets/img/parcel.png and b/site/static/docs/5.3/assets/img/parcel.png differ -- cgit v1.2.3 From 52cc9342cb5df6b13ea421deb75477a73419745b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Mon, 5 Feb 2024 21:39:38 +0100 Subject: Bump copyright year to 2024 --- site/static/docs/5.3/assets/js/color-modes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/js/color-modes.js b/site/static/docs/5.3/assets/js/color-modes.js index 31f22f9e4..8a0dabf18 100644 --- a/site/static/docs/5.3/assets/js/color-modes.js +++ b/site/static/docs/5.3/assets/js/color-modes.js @@ -1,6 +1,6 @@ /*! * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) - * Copyright 2011-2023 The Bootstrap Authors + * Copyright 2011-2024 The Bootstrap Authors * Licensed under the Creative Commons Attribution 3.0 Unported License. */ -- cgit v1.2.3 From 192b7f785ee91dd8dde62bc37a8c6fa02cdba194 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 6 Mar 2024 10:17:35 +0200 Subject: docs: use a responsive image for bootstrap-logo-shadow.png (#39745) --- .../docs/5.3/assets/brand/bootstrap-logo-shadow.png | Bin 46112 -> 13177 bytes .../5.3/assets/brand/bootstrap-logo-shadow@2x.png | Bin 0 -> 46112 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png index cdd0c8a34..84ecffdb6 100644 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png differ diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png new file mode 100644 index 000000000..cdd0c8a34 Binary files /dev/null and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png differ -- cgit v1.2.3 From 6a00d18fae8289e61cd3969c59b9215092a8dd84 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 19 Mar 2024 21:04:00 +0200 Subject: Further improve PNG compression (#39773) --- .../5.3/assets/img/bootstrap-themes-collage.png | Bin 74428 -> 73534 bytes .../5.3/assets/img/bootstrap-themes-collage@2x.png | Bin 243991 -> 237638 bytes .../static/docs/5.3/assets/img/examples/badges.png | Bin 6328 -> 6180 bytes .../docs/5.3/assets/img/examples/badges@2x.png | Bin 14232 -> 14231 bytes .../docs/5.3/assets/img/examples/breadcrumbs.png | Bin 2382 -> 2359 bytes .../5.3/assets/img/examples/breadcrumbs@2x.png | Bin 6025 -> 6024 bytes .../docs/5.3/assets/img/examples/dropdowns@2x.png | Bin 15203 -> 14972 bytes .../docs/5.3/assets/img/examples/footers@2x.png | Bin 10238 -> 10222 bytes site/static/docs/5.3/assets/img/examples/grid.png | Bin 9395 -> 9392 bytes .../5.3/assets/img/examples/list-groups@2x.png | Bin 17804 -> 17772 bytes .../docs/5.3/assets/img/examples/masonry@2x.png | Bin 37617 -> 37610 bytes .../docs/5.3/assets/img/examples/modals@2x.png | Bin 11689 -> 11649 bytes .../docs/5.3/assets/img/examples/navbar-static.png | Bin 6540 -> 6538 bytes .../5.3/assets/img/examples/navbar-static@2x.png | Bin 15155 -> 15127 bytes .../5.3/assets/img/examples/navbars-offcanvas.png | Bin 6819 -> 6818 bytes .../docs/5.3/assets/img/examples/pricing@2x.png | Bin 29088 -> 29073 bytes .../assets/img/favicons/android-chrome-192x192.png | Bin 8364 -> 8166 bytes 17 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png index cdb5549e2..da99b30a8 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png index 2ed6bc026..2ffb1ce9e 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png and b/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/badges.png b/site/static/docs/5.3/assets/img/examples/badges.png index bcaae7ecf..af4a9ac6b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/badges.png and b/site/static/docs/5.3/assets/img/examples/badges.png differ diff --git a/site/static/docs/5.3/assets/img/examples/badges@2x.png b/site/static/docs/5.3/assets/img/examples/badges@2x.png index 2c4032764..8c3fd3f72 100644 Binary files a/site/static/docs/5.3/assets/img/examples/badges@2x.png and b/site/static/docs/5.3/assets/img/examples/badges@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs.png index b67c355c9..4417e95b3 100644 Binary files a/site/static/docs/5.3/assets/img/examples/breadcrumbs.png and b/site/static/docs/5.3/assets/img/examples/breadcrumbs.png differ diff --git a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png index cf492b836..0eb36d136 100644 Binary files a/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png and b/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png b/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png index 35fecb49a..6978dcb56 100644 Binary files a/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png and b/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/footers@2x.png b/site/static/docs/5.3/assets/img/examples/footers@2x.png index a9a07a2cf..47393ef3c 100644 Binary files a/site/static/docs/5.3/assets/img/examples/footers@2x.png and b/site/static/docs/5.3/assets/img/examples/footers@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/grid.png b/site/static/docs/5.3/assets/img/examples/grid.png index 15ccfd416..9b8afb78b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/grid.png and b/site/static/docs/5.3/assets/img/examples/grid.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups@2x.png b/site/static/docs/5.3/assets/img/examples/list-groups@2x.png index 575d19818..04e61fb25 100644 Binary files a/site/static/docs/5.3/assets/img/examples/list-groups@2x.png and b/site/static/docs/5.3/assets/img/examples/list-groups@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry@2x.png b/site/static/docs/5.3/assets/img/examples/masonry@2x.png index fa28b0334..d8cf6a577 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry@2x.png and b/site/static/docs/5.3/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/modals@2x.png b/site/static/docs/5.3/assets/img/examples/modals@2x.png index c18990ace..c6effa156 100644 Binary files a/site/static/docs/5.3/assets/img/examples/modals@2x.png and b/site/static/docs/5.3/assets/img/examples/modals@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-static.png b/site/static/docs/5.3/assets/img/examples/navbar-static.png index 7bb6b4b18..eb09fca83 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-static.png and b/site/static/docs/5.3/assets/img/examples/navbar-static.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png b/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png index 9b057371d..6cf7c52ea 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png and b/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png index da4ccbc50..492c9079e 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.3/assets/img/examples/pricing@2x.png b/site/static/docs/5.3/assets/img/examples/pricing@2x.png index 959d808a9..543b0a3f2 100644 Binary files a/site/static/docs/5.3/assets/img/examples/pricing@2x.png and b/site/static/docs/5.3/assets/img/examples/pricing@2x.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png b/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png index 1c276a531..17e5ce11c 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png and b/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png differ -- cgit v1.2.3 From ba73ed6906226b9b6be37b01b91bc1a473417b28 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 1 Apr 2024 21:54:56 +0300 Subject: docs: resize docs bundler images and fix dimensions (#39824) The dimensions must be of the non-2x image. --- .../5.3/assets/img/guides/bootstrap-parcel.png | Bin 161826 -> 144652 bytes .../5.3/assets/img/guides/bootstrap-parcel@2x.png | Bin 564766 -> 511984 bytes .../docs/5.3/assets/img/guides/bootstrap-vite.png | Bin 169189 -> 146772 bytes .../5.3/assets/img/guides/bootstrap-vite@2x.png | Bin 558538 -> 517193 bytes .../5.3/assets/img/guides/bootstrap-webpack.png | Bin 169872 -> 149510 bytes .../5.3/assets/img/guides/bootstrap-webpack@2x.png | Bin 572482 -> 533104 bytes 6 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png index 4cfa46cf3..50fc79951 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png index 4f7165879..fe0ec4c63 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png b/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png index a290110e7..de4cad734 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png index 5fe40c526..f8d485808 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png index 189b7f494..c7be9fc39 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png index 7006386f0..be6b5fb0a 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png differ -- cgit v1.2.3 From 79a3fedf71ec67a18b43ef0184f2c5a898535a84 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 23 Jul 2024 07:47:35 +0300 Subject: Further image compression improvements (#40639) --- .../5.3/assets/brand/bootstrap-logo-shadow.png | Bin 13177 -> 13093 bytes .../5.3/assets/brand/bootstrap-logo-shadow@2x.png | Bin 46112 -> 42797 bytes .../docs/5.3/assets/brand/bootstrap-social.png | Bin 724582 -> 699429 bytes .../docs/5.3/assets/img/bootstrap-icons@2x.png | Bin 125442 -> 120489 bytes .../docs/5.3/assets/img/examples/album-rtl.png | Bin 6384 -> 6313 bytes .../docs/5.3/assets/img/examples/album-rtl@2x.png | Bin 15342 -> 15241 bytes .../docs/5.3/assets/img/examples/checkout-rtl.png | Bin 8848 -> 8847 bytes .../5.3/assets/img/examples/checkout-rtl@2x.png | Bin 21965 -> 21952 bytes .../docs/5.3/assets/img/examples/features@2x.png | Bin 15002 -> 14971 bytes .../docs/5.3/assets/img/examples/footers@2x.png | Bin 10222 -> 10209 bytes .../docs/5.3/assets/img/examples/list-groups.png | Bin 7114 -> 7098 bytes .../5.3/assets/img/examples/list-groups@2x.png | Bin 17772 -> 17715 bytes .../docs/5.3/assets/img/examples/masonry@2x.png | Bin 37610 -> 37338 bytes .../docs/5.3/assets/img/examples/modals@2x.png | Bin 11649 -> 11623 bytes .../5.3/assets/img/examples/navbars-offcanvas.png | Bin 6818 -> 6781 bytes .../assets/img/examples/sticky-footer-navbar.png | Bin 6891 -> 6874 bytes .../assets/img/favicons/android-chrome-512x512.png | Bin 23832 -> 23009 bytes .../5.3/assets/img/favicons/apple-touch-icon.png | Bin 7488 -> 7307 bytes .../5.3/assets/img/guides/bootstrap-webpack@2x.png | Bin 533104 -> 532848 bytes .../5.3/assets/img/guides/parcel-dev-server.png | Bin 13690 -> 13345 bytes 20 files changed, 0 insertions(+), 0 deletions(-) (limited to 'site/static/docs') diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png index 84ecffdb6..cf0bf7095 100644 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png differ diff --git a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png index cdd0c8a34..fd4eaffb2 100644 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png and b/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow@2x.png differ diff --git a/site/static/docs/5.3/assets/brand/bootstrap-social.png b/site/static/docs/5.3/assets/brand/bootstrap-social.png index ff9300f41..898e396c1 100644 Binary files a/site/static/docs/5.3/assets/brand/bootstrap-social.png and b/site/static/docs/5.3/assets/brand/bootstrap-social.png differ diff --git a/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png index 5dd660856..ca0496567 100644 Binary files a/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png and b/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl.png b/site/static/docs/5.3/assets/img/examples/album-rtl.png index 2becbc31e..d998c5627 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album-rtl.png and b/site/static/docs/5.3/assets/img/examples/album-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png index db374c23a..d44ee0de1 100644 Binary files a/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/checkout-rtl.png b/site/static/docs/5.3/assets/img/examples/checkout-rtl.png index f3cb89ea4..1edd0a933 100644 Binary files a/site/static/docs/5.3/assets/img/examples/checkout-rtl.png and b/site/static/docs/5.3/assets/img/examples/checkout-rtl.png differ diff --git a/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png b/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png index 5d7b801cf..41d000905 100644 Binary files a/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png and b/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/features@2x.png b/site/static/docs/5.3/assets/img/examples/features@2x.png index 88bd33012..28bcbf1f5 100644 Binary files a/site/static/docs/5.3/assets/img/examples/features@2x.png and b/site/static/docs/5.3/assets/img/examples/features@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/footers@2x.png b/site/static/docs/5.3/assets/img/examples/footers@2x.png index 47393ef3c..270039215 100644 Binary files a/site/static/docs/5.3/assets/img/examples/footers@2x.png and b/site/static/docs/5.3/assets/img/examples/footers@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups.png b/site/static/docs/5.3/assets/img/examples/list-groups.png index 1d48c449d..6c63f93ca 100644 Binary files a/site/static/docs/5.3/assets/img/examples/list-groups.png and b/site/static/docs/5.3/assets/img/examples/list-groups.png differ diff --git a/site/static/docs/5.3/assets/img/examples/list-groups@2x.png b/site/static/docs/5.3/assets/img/examples/list-groups@2x.png index 04e61fb25..6181038a6 100644 Binary files a/site/static/docs/5.3/assets/img/examples/list-groups@2x.png and b/site/static/docs/5.3/assets/img/examples/list-groups@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/masonry@2x.png b/site/static/docs/5.3/assets/img/examples/masonry@2x.png index d8cf6a577..fe6d1569e 100644 Binary files a/site/static/docs/5.3/assets/img/examples/masonry@2x.png and b/site/static/docs/5.3/assets/img/examples/masonry@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/modals@2x.png b/site/static/docs/5.3/assets/img/examples/modals@2x.png index c6effa156..34ab6d61b 100644 Binary files a/site/static/docs/5.3/assets/img/examples/modals@2x.png and b/site/static/docs/5.3/assets/img/examples/modals@2x.png differ diff --git a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png index 492c9079e..a628dffc0 100644 Binary files a/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png and b/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png differ diff --git a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png index 6e1653b08..8417cc830 100644 Binary files a/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png and b/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png b/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png index 936025e1c..621c3641d 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png and b/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png differ diff --git a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png index a55a22933..8f8ff8a81 100644 Binary files a/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png and b/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png differ diff --git a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png index be6b5fb0a..58fdb9cab 100644 Binary files a/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png and b/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png differ diff --git a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png index d88aa6be6..aaca949b4 100644 Binary files a/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png and b/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png differ -- cgit v1.2.3