#10911 fix visual delete icon size
This commit is contained in:
parent
0e8a74a4b8
commit
85052a948d
|
@ -4271,7 +4271,7 @@ function print_SLA_list($width, $action, $idItem=null)
|
||||||
echo '</td>';
|
echo '</td>';
|
||||||
echo '<td class="sla_list_action_col center">';
|
echo '<td class="sla_list_action_col center">';
|
||||||
echo '<a href="javascript: deleteSLARow('.$item['id'].');">';
|
echo '<a href="javascript: deleteSLARow('.$item['id'].');">';
|
||||||
echo html_print_image('images/delete.svg', true, ['class' => 'invert_filter']);
|
echo html_print_image('images/delete.svg', true, ['class' => 'invert_filter main_menu_icon']);
|
||||||
echo '</a>';
|
echo '</a>';
|
||||||
echo '</td>';
|
echo '</td>';
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
|
@ -4314,7 +4314,7 @@ function print_SLA_list($width, $action, $idItem=null)
|
||||||
html_print_image(
|
html_print_image(
|
||||||
'images/delete.svg',
|
'images/delete.svg',
|
||||||
false,
|
false,
|
||||||
['class' => 'invert_filter']
|
['class' => 'invert_filter main_menu_icon']
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</a>
|
</a>
|
||||||
|
@ -4738,7 +4738,7 @@ function print_General_list($width, $action, $idItem=null, $type='general')
|
||||||
<td>'.printSmallFont($nameAgentFailover).$server_name_element.'</td>
|
<td>'.printSmallFont($nameAgentFailover).$server_name_element.'</td>
|
||||||
<td>'.printSmallFont($nameModuleFailover).'</td>
|
<td>'.printSmallFont($nameModuleFailover).'</td>
|
||||||
<td class="center">
|
<td class="center">
|
||||||
<a href="javascript: deleteGeneralRow('.$item['id'].');">'.html_print_image('images/delete.svg', true, ['class' => 'invert_filter']).'</a>
|
<a href="javascript: deleteGeneralRow('.$item['id'].');">'.html_print_image('images/delete.svg', true, ['class' => 'invert_filter main_menu_icon']).'</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
} else {
|
} else {
|
||||||
|
@ -4746,7 +4746,7 @@ function print_General_list($width, $action, $idItem=null, $type='general')
|
||||||
<td>'.printSmallFont($nameAgent).$server_name_element.'</td>
|
<td>'.printSmallFont($nameAgent).$server_name_element.'</td>
|
||||||
<td>'.printSmallFont($nameModule).'</td>
|
<td>'.printSmallFont($nameModule).'</td>
|
||||||
<td class="center">
|
<td class="center">
|
||||||
<a href="javascript: deleteGeneralRow('.$item['id'].');">'.html_print_image('images/delete.svg', true, ['class' => 'invert_filter']).'</a>
|
<a href="javascript: deleteGeneralRow('.$item['id'].');">'.html_print_image('images/delete.svg', true, ['class' => 'invert_filter main_menu_icon']).'</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
@ -4756,7 +4756,7 @@ function print_General_list($width, $action, $idItem=null, $type='general')
|
||||||
<td>'.printSmallFont($nameModule).'</td>
|
<td>'.printSmallFont($nameModule).'</td>
|
||||||
<td>'.printSmallFont($operation[$item['operation']]).'</td>
|
<td>'.printSmallFont($operation[$item['operation']]).'</td>
|
||||||
<td class="center">
|
<td class="center">
|
||||||
<a href="javascript: deleteGeneralRow('.$item['id'].');">'.html_print_image('images/delete.svg', true, ['class' => 'invert_filter']).'</a>
|
<a href="javascript: deleteGeneralRow('.$item['id'].');">'.html_print_image('images/delete.svg', true, ['class' => 'invert_filter main_menu_icon']).'</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
@ -4796,7 +4796,7 @@ function print_General_list($width, $action, $idItem=null, $type='general')
|
||||||
html_print_image(
|
html_print_image(
|
||||||
'images/delete.svg',
|
'images/delete.svg',
|
||||||
false,
|
false,
|
||||||
['class' => 'invert_filter']
|
['class' => 'invert_filter main_menu_icon']
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in New Issue