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