mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:07:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			592 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			592 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| return array(
 | |
| 
 | |
| 	// Map Former-supported viewports to Foundation 3 equivalents
 | |
| 	'viewports' => array(
 | |
| 
 | |
| 		'large' => '',
 | |
| 		'medium' => null,
 | |
| 		'small' => 'mobile-',
 | |
| 		'mini' => null,
 | |
| 
 | |
| 	),
 | |
| 
 | |
| 	// Width of labels for horizontal forms expressed as viewport => grid columns
 | |
| 	'labelWidths' => array(
 | |
| 
 | |
| 		'large' => 2,
 | |
| 		'small' => 4,
 | |
| 
 | |
| 	),
 | |
| 
 | |
| 	// Classes to be applied to wrapped labels in horizontal forms
 | |
| 	'wrappedLabelClasses' => array('right','inline'),
 | |
| 
 | |
| 	// HTML markup and classes used by Foundation 3 for icons
 | |
| 	'icon' => array(
 | |
| 
 | |
| 		'tag' => 'i',
 | |
| 		'set' => null,
 | |
| 		'prefix' => 'fi',
 | |
| 
 | |
| 	),
 | |
| 
 | |
| ); |