mirror of
				https://github.com/twbs/bootstrap.git
				synced 2022-11-09 12:25:43 -05:00 
			
		
		
		
	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
					
				
					 5 changed files with 18 additions and 25 deletions
				
			
		
							
								
								
									
										8
									
								
								scss/bootstrap-grid.scss
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								scss/bootstrap-grid.scss
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -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;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										9
									
								
								scss/bootstrap-reboot.scss
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								scss/bootstrap-reboot.scss
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -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";
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										8
									
								
								scss/bootstrap-utilities.scss
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								scss/bootstrap-utilities.scss
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -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";
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										9
									
								
								scss/bootstrap.scss
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								scss/bootstrap.scss
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										9
									
								
								scss/mixins/_banner.scss
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								scss/mixins/_banner.scss
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue