Skip to content
Snippets Groups Projects
Commit a94e6cac authored by Alberto Siles's avatar Alberto Siles Committed by Alberto Siles
Browse files

Fix other color settings form

parent d83f89ce
No related branches found
Tags 5.5.13
No related merge requests found
......@@ -163,7 +163,9 @@ function bootstrap_barrio_form_system_theme_settings_alter(&$form, FormStateInte
];
$form['colors']['scheme'] = [
'#type' => 'fieldset',
'#type' => 'details',
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#title' => t('Barrio Color Scheme Settings'),
];
$form['colors']['scheme']['bootstrap_barrio_enable_color'] = [
......@@ -278,7 +280,7 @@ function bootstrap_barrio_form_system_theme_settings_alter(&$form, FormStateInte
'#type' => 'details',
'#title' => t('System messages'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#collapsed' => TRUE,
];
$form['colors']['alerts']['bootstrap_barrio_system_messages'] = [
'#type' => 'select',
......@@ -297,7 +299,7 @@ function bootstrap_barrio_form_system_theme_settings_alter(&$form, FormStateInte
'#type' => 'details',
'#title' => t('Tables'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#collapsed' => TRUE,
];
$form['colors']['tables']['bootstrap_barrio_table_style'] = [
'#type' => 'select',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment