diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php
index 155968e557..42ecc8ed7c 100644
--- a/pandora_console/include/functions_html.php
+++ b/pandora_console/include/functions_html.php
@@ -1880,10 +1880,10 @@ function html_print_extended_select_for_unit(
'font-size: xx-small;'.$select_style
);
echo ' '.html_print_image(
- 'images/pencil.png',
+ 'images/edit.svg',
true,
[
- 'class' => $uniq_name.'_toggler',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('Custom'),
'title' => __('Custom'),
'style' => 'width: 18px;',
@@ -1896,10 +1896,10 @@ function html_print_extended_select_for_unit(
html_print_input_hidden($name, $selected, false, $uniq_name);
echo ' '.html_print_image(
- 'images/default_list.png',
+ 'images/logs@svg.svg',
true,
[
- 'class' => $uniq_name.'_toggler',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('List'),
'title' => __('List'),
'style' => 'width: 18px;',
@@ -1991,10 +1991,10 @@ function html_print_extended_select_for_post_process(
$style
);
echo ' '.html_print_image(
- 'images/pencil.png',
+ 'images/edit.svg',
true,
[
- 'class' => $uniq_name.'_toggler',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('Custom'),
'title' => __('Custom'),
'style' => 'width: 18px;',
@@ -2007,10 +2007,10 @@ function html_print_extended_select_for_post_process(
html_print_input_hidden($name, $selected, false, $uniq_name);
echo ' '.html_print_image(
- 'images/default_list.png',
+ 'images/logs@svg.svg',
true,
[
- 'class' => $uniq_name.'_toggler',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('List'),
'title' => __('List'),
'style' => 'width: 18px;',
@@ -2144,10 +2144,10 @@ function html_print_extended_select_for_time(
[
'href' => 'javascript:',
'content' => html_print_image(
- 'images/pencil.png',
+ 'images/edit.svg',
true,
[
- 'class' => $uniq_name.'_toggler '.$class.' invert_filter',
+ 'class' => $uniq_name.'_toggler '.$class.' main_menu_icon invert_filter',
'alt' => __('Custom'),
'title' => __('Custom'),
'style' => 'width: 18px; margin-bottom: -5px; margin-left: 10px; padding-top: 10px;'.$style_icon,
@@ -2190,10 +2190,10 @@ function html_print_extended_select_for_time(
false
);
echo ' '.html_print_image(
- 'images/list.png',
+ 'images/logs@svg.svg',
true,
[
- 'class' => $uniq_name.'_toggler invert_filter',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('List'),
'title' => __('List'),
'style' => 'width: 18px;margin-bottom: -5px; padding-top: 10px;'.$style_icon,
@@ -6592,10 +6592,10 @@ function html_print_extended_select_for_downtime_cron(
'font-size: xx-small;'.$select_style
);
echo ' '.html_print_image(
- 'images/pencil.png',
+ 'images/edit.svg',
true,
[
- 'class' => $uniq_name.'_toggler',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('Custom'),
'title' => __('Custom'),
'style' => 'width: 18px;',
@@ -6610,10 +6610,10 @@ function html_print_extended_select_for_downtime_cron(
html_print_input_hidden($name, $selected, false, $uniq_name);
echo ' '.$help_tooltip.' '.html_print_image(
- 'images/default_list.png',
+ 'images/logs@svg.svg',
true,
[
- 'class' => $uniq_name.'_toggler',
+ 'class' => $uniq_name.'_toggler main_menu_icon invert_filter',
'alt' => __('List'),
'title' => __('List'),
'style' => 'width: 18px;',
diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php
index 4e1eac465e..7eb5aa24d8 100755
--- a/pandora_console/include/functions_ui.php
+++ b/pandora_console/include/functions_ui.php
@@ -2535,6 +2535,7 @@ function ui_print_input_placeholder(
$attibutes[] = 'class="'.((isset($options['class']) === true) ? $options['class'] : 'input_sub_placeholder').'"';
$attibutes[] = (isset($options['rawattributes']) === true) ? $options['rawattributes'] : '';
$attibutes[] = (isset($options['style']) === true) ? 'style="'.$options['style'].'"' : '';
+ $attibutes[] = (isset($options['id']) === true) ? 'id="'.$options['id'].'"' : '';
$attibutes[] = (isset($options['title']) === true) ? 'title="'.$options['title'].'"' : '';
$output = sprintf(