This commit is contained in:
Pablo Aragon 2023-03-01 12:23:49 +01:00
commit 81e349bfd7
3 changed files with 22 additions and 7 deletions

View File

@ -1040,7 +1040,7 @@ html_print_input_hidden('id_item', $idItem);
$class = 'databox filters'; $class = 'databox filters';
?> ?>
<table class="<?php echo $class; ?>" id="" border="0" cellpadding="4" cellspacing="4" width="100%"> <table id="table_item_edit_reporting" class="<?php echo $class; ?>" id="" border="0" cellpadding="4" cellspacing="4" width="100%">
<?php <?php
if (defined('METACONSOLE')) { if (defined('METACONSOLE')) {
echo '<thead> echo '<thead>
@ -2458,7 +2458,7 @@ $class = 'databox filters';
</tr> </tr>
<tr id="row_order_uptodown" class="datos"> <tr id="row_order_uptodown" class="datos">
<td class="bolder"><?php echo __('Order'); ?></td> <td class="bolder"><?php echo __('Order'); ?></td>
<td> <td class="flex-row-center">
<?php <?php
echo __('Ascending'); echo __('Ascending');
html_print_radio_button( html_print_radio_button(
@ -2517,7 +2517,7 @@ $class = 'databox filters';
<tr id="row_max_min_avg" class="datos"> <tr id="row_max_min_avg" class="datos">
<td class="bolder"><?php echo __('Display'); ?></td> <td class="bolder"><?php echo __('Display'); ?></td>
<td> <td class="flex-row-center">
<?php <?php
echo __('Max'); echo __('Max');
html_print_radio_button( html_print_radio_button(
@ -3196,7 +3196,7 @@ $class = 'databox filters';
echo __('Priority mode'); echo __('Priority mode');
?> ?>
</td> </td>
<td> <td class="flex-row-center">
<?php <?php
echo __('Priority ok mode'); echo __('Priority ok mode');
echo '<span class="mrgn_lft_5px"></span>'; echo '<span class="mrgn_lft_5px"></span>';
@ -3249,7 +3249,7 @@ $class = 'databox filters';
echo __('Failover type'); echo __('Failover type');
?> ?>
</td> </td>
<td> <td class="flex-row-center">
<?php <?php
echo __('Failover normal'); echo __('Failover normal');
echo '<span class="mrgn_lft_5px"></span>'; echo '<span class="mrgn_lft_5px"></span>';
@ -3358,7 +3358,7 @@ $class = 'databox filters';
</tr> </tr>
<tr id="row_visual_format" class="datos advanced_elements"> <tr id="row_visual_format" class="datos advanced_elements">
<td class="bolder" colspan="2"> <td class="bolder flex-row-center" colspan="2">
<?php <?php
if ($visual_format == 1) { if ($visual_format == 1) {
$visual_format_table = true; $visual_format_table = true;

View File

@ -2491,7 +2491,7 @@ function ui_print_session_action_icon($action, $return=false)
function ui_print_help_tip( function ui_print_help_tip(
$text, $text,
$return=false, $return=false,
$img='images/tip_help.png', $img='images/info@svg.svg',
$is_relative=false, $is_relative=false,
$style='', $style='',
$blink=false $blink=false
@ -2503,6 +2503,7 @@ function ui_print_help_tip(
[ [
'title' => $text, 'title' => $text,
'class' => $blink === true ? 'blink' : '', 'class' => $blink === true ? 'blink' : '',
'style' => 'width: 16px; height: 16px;',
], ],
false, false,
$is_relative && is_metaconsole() $is_relative && is_metaconsole()

View File

@ -11436,3 +11436,17 @@ div[role="dialog"] {
.space-between { .space-between {
justify-content: space-between; justify-content: space-between;
} }
#table_item_reporting > tbody > tr > td:first-child,
#add_advanced_table > tbody > tr > td:first-child,
#table_item_edit_reporting > tbody > tr > td:first-child,
.row-title-font > td,
.row-title-font > td > div > div > b,
.td-title-font {
font-size: 13px;
line-height: 16px;
color: #161628;
text-align: left;
margin-bottom: 10px;
font-weight: bold;
}