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';
?>
<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
if (defined('METACONSOLE')) {
echo '<thead>
@ -2458,7 +2458,7 @@ $class = 'databox filters';
</tr>
<tr id="row_order_uptodown" class="datos">
<td class="bolder"><?php echo __('Order'); ?></td>
<td>
<td class="flex-row-center">
<?php
echo __('Ascending');
html_print_radio_button(
@ -2517,7 +2517,7 @@ $class = 'databox filters';
<tr id="row_max_min_avg" class="datos">
<td class="bolder"><?php echo __('Display'); ?></td>
<td>
<td class="flex-row-center">
<?php
echo __('Max');
html_print_radio_button(
@ -3196,7 +3196,7 @@ $class = 'databox filters';
echo __('Priority mode');
?>
</td>
<td>
<td class="flex-row-center">
<?php
echo __('Priority ok mode');
echo '<span class="mrgn_lft_5px"></span>';
@ -3249,7 +3249,7 @@ $class = 'databox filters';
echo __('Failover type');
?>
</td>
<td>
<td class="flex-row-center">
<?php
echo __('Failover normal');
echo '<span class="mrgn_lft_5px"></span>';
@ -3358,7 +3358,7 @@ $class = 'databox filters';
</tr>
<tr id="row_visual_format" class="datos advanced_elements">
<td class="bolder" colspan="2">
<td class="bolder flex-row-center" colspan="2">
<?php
if ($visual_format == 1) {
$visual_format_table = true;

View File

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

View File

@ -11436,3 +11436,17 @@ div[role="dialog"] {
.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;
}