Changed the dropdown selects to look the same (custom-select).

This commit is contained in:
Andreas
2020-09-16 10:17:58 +02:00
parent 45ceb90609
commit 9696a1199c
3 changed files with 4 additions and 4 deletions

View File

@@ -407,7 +407,7 @@ if ( ! function_exists('form_dropdown'))
$multiple = (count($selected) > 1 && stripos($extra, 'multiple') === FALSE) ? ' multiple="multiple"' : '';
$form = '<select '.rtrim(_parse_form_attributes($data, $defaults)).$extra.$multiple.">\n";
$form = '<select class="custom-select" '.rtrim(_parse_form_attributes($data, $defaults)).$extra.$multiple.">\n";
foreach ($options as $key => $val)
{