Added additional themes to dropdown

This commit is contained in:
snipe 2020-03-27 21:44:18 -07:00
parent 3c1365b2c8
commit 54d39c04ad

View file

@ -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">';