mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 14:27:33 -08:00
Added additional themes to dropdown
This commit is contained in:
parent
3c1365b2c8
commit
54d39c04ad
|
@ -530,10 +530,21 @@ Form::macro('customfield_elements', function ($name = "customfield_elements", $s
|
|||
Form::macro('skin', function ($name = "skin", $selected = null, $class = null) {
|
||||
|
||||
$formats = array(
|
||||
'' => 'Default Blue',
|
||||
'green-dark' => 'Green Dark',
|
||||
'red-dark' => 'Red Dark',
|
||||
'orange-dark' => 'Orange Dark',
|
||||
'blue' => 'Default Blue Dark',
|
||||
'blue-light' => 'Blue Light',
|
||||
'green' => 'Green Dark',
|
||||
'green-light' => 'Green Light',
|
||||
'red' => 'Red Dark',
|
||||
'red-light' => 'Red Light',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange-light' => 'Orange Light',
|
||||
'black' => 'Black',
|
||||
'black-light' => 'Black Light',
|
||||
'purple' => 'Purple',
|
||||
'purple-light' => 'Purple Light',
|
||||
'yellow' => 'Yellow',
|
||||
'yellow-light' => 'Yellow Light',
|
||||
'contrast' => 'High Contrast',
|
||||
);
|
||||
|
||||
$select = '<select name="'.$name.'" class="'.$class.'" style="width: 250px">';
|
||||
|
|
Loading…
Reference in a new issue