mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 06:02:39 +01:00
35 lines
592 B
PHP
35 lines
592 B
PHP
|
<?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',
|
||
|
|
||
|
),
|
||
|
|
||
|
);
|