From 23716a368ab203baa951a8e85008415d83b8fc8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikel=20Mart=C3=ADn?= Date: Thu, 20 Jun 2024 15:17:00 +0200 Subject: [PATCH] [docs] Devdocs Bootstrap .close refactor --- docs/devupdate.md | 8 ++++++++ docs/guides/bs5migration/index.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/docs/devupdate.md b/docs/devupdate.md index 1d7b16c15c..eb979a6d3b 100644 --- a/docs/devupdate.md +++ b/docs/devupdate.md @@ -142,3 +142,11 @@ class core_renderer extends \core_renderer { + +### Refactoring BS4 features dropped in BS5 using a "bridge" + + + +Some of the Bootstrap 4 classes will be deprecated or dropped in its version 5. To prepare for this, some of the current Bootstrap 4 classes usages have been replaced with version 5 compatible classes using a "bridge". This will help us to upgrade to Bootstrap 5 in the future. + +See more information in [Bootstrap 5 migration](./guides/bs5migration/index.md). diff --git a/docs/guides/bs5migration/index.md b/docs/guides/bs5migration/index.md index 5cc6b25edc..4262ee1611 100644 --- a/docs/guides/bs5migration/index.md +++ b/docs/guides/bs5migration/index.md @@ -248,3 +248,33 @@ The `.no-gutters` grid class has been replaced with `.g-0`. ``` + +### Close button + +The `.close` class has been replaced with `.btn-close`. + + + +```html + +``` + + + + + +```html + +``` + +