From b322049e3a3fc9a33488a797741700cb810873e8 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 9 Dec 2020 15:53:13 +0200 Subject: [PATCH 01/22] CI: test Node.js 15. --- .github/workflows/browserstack.yml | 2 +- .github/workflows/bundlewatch.yml | 2 +- .github/workflows/css.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/js.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/node-sass.yml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index ea0a25704..f9b25a231 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -5,7 +5,7 @@ on: env: FORCE_COLOR: 2 - NODE: 14.x + NODE: 15.x jobs: browserstack: diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml index 989991f0d..d43876799 100644 --- a/.github/workflows/bundlewatch.yml +++ b/.github/workflows/bundlewatch.yml @@ -8,7 +8,7 @@ on: env: FORCE_COLOR: 2 - NODE: 14.x + NODE: 15.x jobs: bundlewatch: diff --git a/.github/workflows/css.yml b/.github/workflows/css.yml index 4463d52f4..5dfb1f865 100644 --- a/.github/workflows/css.yml +++ b/.github/workflows/css.yml @@ -8,7 +8,7 @@ on: env: FORCE_COLOR: 2 - NODE: 14.x + NODE: 15.x jobs: css: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index cda6f7748..126f62e70 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -8,7 +8,7 @@ on: env: FORCE_COLOR: 2 - NODE: 14.x + NODE: 15.x jobs: docs: diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index c56a2dfdd..75fe9c82b 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14] + node: [10, 12, 14, 15] steps: - name: Clone repository diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e7a55083d..495e1ba40 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ on: env: FORCE_COLOR: 2 - NODE: 14.x + NODE: 15.x jobs: lint: diff --git a/.github/workflows/node-sass.yml b/.github/workflows/node-sass.yml index 285d4bcc8..d48bffa43 100644 --- a/.github/workflows/node-sass.yml +++ b/.github/workflows/node-sass.yml @@ -8,7 +8,7 @@ on: env: FORCE_COLOR: 2 - NODE: 14.x + NODE: 15.x jobs: css: From ed5ddca5ba6436a6234e1b9dfa0883382c84f0db Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 13 Jan 2021 10:52:41 +0200 Subject: [PATCH 02/22] Stylelint: disallow some property values (#32756) * `border: none` * `outline: none` --- .stylelintrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.stylelintrc b/.stylelintrc index 1c9ee1811..c068d30b5 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -3,6 +3,10 @@ "stylelint-config-twbs-bootstrap/scss" ], "rules": { + "declaration-property-value-disallowed-list": { + "border": "none", + "outline": "none" + }, "function-disallowed-list": [ "calc", "lighten", From f43133ac412eb47111d09e89750a130cc79b9835 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 13 Jan 2021 13:20:49 +0200 Subject: [PATCH 03/22] .gitignore: remove Ruby/Jekyll entries (#32770) Our currently supported branches, v4-dev and main, use Hugo. --- .gitignore | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.gitignore b/.gitignore index 6208c57d7..0a0f88d15 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,8 @@ # Ignore docs files /_gh_pages/ -# This is the old Jekyll docs dist folder; -# keeping it here so that when we switch branches it doesn't show up -/site/docs/**/dist/ -# Jekyll's cache folder; keeping it for the same reason as above -/site/.jekyll-cache/ # Hugo resources folder /resources/ -# Ignore ruby/bundler files; -# keeping them here so that when we switch branches they don't show up -/.bundle/ -/vendor/ -/.ruby-version - # Numerous always-ignore extensions *.diff *.err From 408b2558dcdacfbe5754103519e5d67d9c1c149b Mon Sep 17 00:00:00 2001 From: Marcin Kasperski Date: Wed, 13 Jan 2021 18:05:25 +0100 Subject: [PATCH 04/22] Update toasts.md (#32782) * dropped mention of `backdrop-filter` * changed mention of `.text-white` to `.btn-close-white` on close button --- site/content/docs/5.0/components/toasts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/docs/5.0/components/toasts.md b/site/content/docs/5.0/components/toasts.md index b6f7e3893..bd7bcae9c 100644 --- a/site/content/docs/5.0/components/toasts.md +++ b/site/content/docs/5.0/components/toasts.md @@ -43,7 +43,7 @@ Toasts are as flexible as you need and have very little required markup. At a mi ### Translucent -Toasts are slightly translucent, too, so they blend over whatever they might appear over. For browsers that support the `backdrop-filter` CSS property, we'll also attempt to blur the elements under a toast. +Toasts are slightly translucent, too, so they blend over whatever they might appear over. {{< example class="bg-dark" >}}