mirror of https://github.com/twbs/bootstrap.git
Add a banner mixin, helping future releases and maintenance (#36178)
* Add a banner mixin, helping future releases and maintenance * Update scss/bootstrap-reboot.scss Co-authored-by: Julien Déramond <julien.deramond@orange.com> * Apply suggestions from code review Co-authored-by: Julien Déramond <julien.deramond@orange.com> Co-authored-by: Mark Otto <markd.otto@gmail.com>
This commit is contained in:
parent
ed2690608e
commit
54317bf7c8
|
@ -1,9 +1,5 @@
|
||||||
/*!
|
@import "mixins/banner";
|
||||||
* Bootstrap Grid v5.2.0-beta1 (https://getbootstrap.com/)
|
@include bsBanner(Grid);
|
||||||
* Copyright 2011-2022 The Bootstrap Authors
|
|
||||||
* Copyright 2011-2022 Twitter, Inc.
|
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
||||||
*/
|
|
||||||
|
|
||||||
$include-column-box-sizing: true !default;
|
$include-column-box-sizing: true !default;
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
/*!
|
@import "mixins/banner";
|
||||||
* Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/)
|
@include bsBanner(Reboot);
|
||||||
* 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 "functions";
|
@import "functions";
|
||||||
@import "variables";
|
@import "variables";
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
/*!
|
@import "mixins/banner";
|
||||||
* Bootstrap Utilities v5.2.0-beta1 (https://getbootstrap.com/)
|
@include bsBanner(Utilities);
|
||||||
* Copyright 2011-2022 The Bootstrap Authors
|
|
||||||
* Copyright 2011-2022 Twitter, Inc.
|
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Configuration
|
// Configuration
|
||||||
@import "functions";
|
@import "functions";
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*!
|
@import "mixins/banner";
|
||||||
* Bootstrap v5.2.0-beta1 (https://getbootstrap.com/)
|
@include bsBanner("");
|
||||||
* Copyright 2011-2022 The Bootstrap Authors
|
|
||||||
* Copyright 2011-2022 Twitter, Inc.
|
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
||||||
*/
|
|
||||||
|
|
||||||
// scss-docs-start import-stack
|
// scss-docs-start import-stack
|
||||||
// Configuration
|
// Configuration
|
||||||
|
|
|
@ -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)
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue