From 54317bf7c85fd3c6f05c5a059e5247d52d69d02e Mon Sep 17 00:00:00 2001 From: GeoSot Date: Tue, 12 Jul 2022 02:36:12 +0300 Subject: [PATCH] Add a banner mixin, helping future releases and maintenance (#36178) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add a banner mixin, helping future releases and maintenance * Update scss/bootstrap-reboot.scss Co-authored-by: Julien Déramond * Apply suggestions from code review Co-authored-by: Julien Déramond Co-authored-by: Mark Otto --- scss/bootstrap-grid.scss | 8 ++------ scss/bootstrap-reboot.scss | 9 ++------- scss/bootstrap-utilities.scss | 8 ++------ scss/bootstrap.scss | 9 +++------ scss/mixins/_banner.scss | 9 +++++++++ 5 files changed, 18 insertions(+), 25 deletions(-) create mode 100644 scss/mixins/_banner.scss diff --git a/scss/bootstrap-grid.scss b/scss/bootstrap-grid.scss index 115cab4db5..1c4cdd1a0f 100644 --- a/scss/bootstrap-grid.scss +++ b/scss/bootstrap-grid.scss @@ -1,9 +1,5 @@ -/*! - * Bootstrap Grid v5.2.0-beta1 (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors - * Copyright 2011-2022 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ +@import "mixins/banner"; +@include bsBanner(Grid); $include-column-box-sizing: true !default; diff --git a/scss/bootstrap-reboot.scss b/scss/bootstrap-reboot.scss index 4bae00fe78..af52745943 100644 --- a/scss/bootstrap-reboot.scss +++ b/scss/bootstrap-reboot.scss @@ -1,10 +1,5 @@ -/*! - * Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors - * Copyright 2011-2022 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) - */ +@import "mixins/banner"; +@include bsBanner(Reboot); @import "functions"; @import "variables"; diff --git a/scss/bootstrap-utilities.scss b/scss/bootstrap-utilities.scss index 43a40c5c66..c940676ac1 100644 --- a/scss/bootstrap-utilities.scss +++ b/scss/bootstrap-utilities.scss @@ -1,9 +1,5 @@ -/*! - * Bootstrap Utilities v5.2.0-beta1 (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors - * Copyright 2011-2022 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ +@import "mixins/banner"; +@include bsBanner(Utilities); // Configuration @import "functions"; diff --git a/scss/bootstrap.scss b/scss/bootstrap.scss index a167ff89a7..8f8296deff 100644 --- a/scss/bootstrap.scss +++ b/scss/bootstrap.scss @@ -1,9 +1,6 @@ -/*! - * Bootstrap v5.2.0-beta1 (https://getbootstrap.com/) - * Copyright 2011-2022 The Bootstrap Authors - * Copyright 2011-2022 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ +@import "mixins/banner"; +@include bsBanner(""); + // scss-docs-start import-stack // Configuration diff --git a/scss/mixins/_banner.scss b/scss/mixins/_banner.scss new file mode 100644 index 0000000000..718c937534 --- /dev/null +++ b/scss/mixins/_banner.scss @@ -0,0 +1,9 @@ +@mixin bsBanner($file, $suffix:"") { + /*! + * Bootstrap #{$file} v5.2.0-beta1 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +} +