mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:27:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			492 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			492 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| return array(
 | |
| 
 | |
| 	// Map Former-supported viewports to Bootstrap 3 equivalents
 | |
| 	'viewports' => array(
 | |
| 		'large'  => 'lg',
 | |
| 		'medium' => 'md',
 | |
| 		'small'  => 'sm',
 | |
| 		'mini'   => 'xs',
 | |
| 	),
 | |
| 
 | |
| 	// Width of labels for horizontal forms expressed as viewport => grid columns
 | |
| 	'labelWidths' => array(
 | |
| 		'large' => 4,
 | |
| 		'small' => 4,
 | |
| 	),
 | |
| 
 | |
| 	// HTML markup and classes used by Bootstrap 3 for icons
 | |
| 	'icon' => array(
 | |
| 		'tag'    => 'span',
 | |
| 		'set'    => 'glyphicon',
 | |
| 		'prefix' => 'glyphicon',
 | |
| 	),
 | |
| 
 | |
| ); |