You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							65 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							65 lines
						
					
					
						
							1.4 KiB
						
					
					
				| @mixin caret-down { | |
|   border-top: $caret-width solid; | |
|   border-right: $caret-width solid transparent; | |
|   border-bottom: 0; | |
|   border-left: $caret-width solid transparent; | |
| } | |
| 
 | |
| @mixin caret-up { | |
|   border-top: 0; | |
|   border-right: $caret-width solid transparent; | |
|   border-bottom: $caret-width solid; | |
|   border-left: $caret-width solid transparent; | |
| } | |
| 
 | |
| @mixin caret-right { | |
|   border-top: $caret-width solid transparent; | |
|   border-bottom: $caret-width solid transparent; | |
|   border-left: $caret-width solid; | |
| } | |
| 
 | |
| @mixin caret-left { | |
|   border-top: $caret-width solid transparent; | |
|   border-right: $caret-width solid; | |
|   border-bottom: $caret-width solid transparent; | |
| } | |
| 
 | |
| @mixin caret($direction: down) { | |
|   @if $enable-caret { | |
|     &::after { | |
|       display: inline-block; | |
|       width: 0; | |
|       height: 0; | |
|       margin-left: $caret-width * .85; | |
|       vertical-align: $caret-width * .85; | |
|       content: ""; | |
|       @if $direction == down { | |
|         @include caret-down; | |
|       } @else if $direction == up { | |
|         @include caret-up; | |
|       } @else if $direction == right { | |
|         @include caret-right; | |
|       } | |
|     } | |
| 
 | |
|     @if $direction == left { | |
|       &::after { | |
|         display: none; | |
|       } | |
| 
 | |
|       &::before { | |
|         display: inline-block; | |
|         width: 0; | |
|         height: 0; | |
|         margin-right: $caret-width * .85; | |
|         vertical-align: $caret-width * .85; | |
|         content: ""; | |
|         @include caret-left; | |
|       } | |
|     } | |
| 
 | |
|     &:empty::after { | |
|       margin-left: 0; | |
|     } | |
|   } | |
| }
 |