mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-11-04 00:03:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			239 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			239 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
.fade {
 | 
						|
  @include transition($transition-fade);
 | 
						|
 | 
						|
  &:not(.show) {
 | 
						|
    opacity: 0;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.collapse {
 | 
						|
  &:not(.show) {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.collapsing {
 | 
						|
  height: 0;
 | 
						|
  overflow: hidden;
 | 
						|
  @include transition($transition-collapse);
 | 
						|
}
 |