fixed visual error

This commit is contained in:
marcos 2021-03-29 09:58:23 +02:00
parent 3934096d03
commit 1f89a0d293
4 changed files with 8 additions and 7 deletions

View File

@ -519,7 +519,7 @@ class DiscoveryTaskList extends HTML
// Server Name. // Server Name.
$table->headstyle[2] .= 'min-width: 130px; width: 400px;'; $table->headstyle[2] .= 'min-width: 130px; width: 400px;';
// Name. // Name.
$table->headstyle[4] .= 'min-width: 100px; width: 400px;'; $table->headstyle[4] .= 'min-width: 100px; width: 350px;';
// Status. // Status.
$table->headstyle[5] .= 'min-width: 70px; width: 190px;'; $table->headstyle[5] .= 'min-width: 70px; width: 190px;';
// Task type. // Task type.

View File

@ -809,7 +809,7 @@ class HostDevices extends Wizard
'name' => 'interval_manual_defined', 'name' => 'interval_manual_defined',
'return' => true, 'return' => true,
], ],
'extra' => '<div id="interval_manual_container"><div class="time_selection_container">'.ui_print_help_tip( 'extra' => '<div id="interval_manual_container"><div class="time_selection_container mrgn_top_20px">'.ui_print_help_tip(
__('The minimum recomended interval for Recon Task is 5 minutes'), __('The minimum recomended interval for Recon Task is 5 minutes'),
true true
).html_print_extended_select_for_time( ).html_print_extended_select_for_time(

View File

@ -648,7 +648,7 @@ class CustomNetScan extends Wizard
); );
$form['inputs'][] = [ $form['inputs'][] = [
'label' => __('Explanation').'<span id="spinner_recon_script" class="invisible">'.html_print_image('images/spinner.gif', true).'</span>', 'label' => __('Explanation').'<span id="spinner_recon_script" style="display: none">'.html_print_image('images/spinner.gif', true).'</span>',
'arguments' => [ 'arguments' => [
'type' => 'textarea', 'type' => 'textarea',
'rows' => 4, 'rows' => 4,
@ -656,7 +656,8 @@ class CustomNetScan extends Wizard
'name' => 'explanation', 'name' => 'explanation',
'value' => $explanation, 'value' => $explanation,
'return' => true, 'return' => true,
'class' => 'discovery_textarea_input w388px', 'class' => 'w388px discovery_textarea_input',
'style' => 'width: 388px',
], ],
]; ];

View File

@ -605,7 +605,7 @@ class ManageNetScanScripts extends Wizard
$datam = []; $datam = [];
$datam[0] = __('Description'); $datam[0] = __('Description');
$datam[0] .= "<span class='normal'> ( "; $datam[0] .= "<span class='normal_weight'> ( ";
$datam[0] .= $macro_name; $datam[0] .= $macro_name;
$datam[0] .= ' )</span>'; $datam[0] .= ' )</span>';
$datam[0] .= html_print_input_hidden( $datam[0] .= html_print_input_hidden(
@ -634,7 +634,7 @@ class ManageNetScanScripts extends Wizard
} }
$datam[2] = __('Default value'); $datam[2] = __('Default value');
$datam[2] .= "<span class='normal'> ( "; $datam[2] .= "<span class='normal_weight'> ( ";
$datam[2] .= $macro_name; $datam[2] .= $macro_name;
$datam[2] .= ' ) </span>'; $datam[2] .= ' ) </span>';
$datam[3] = html_print_input_text_extended( $datam[3] = html_print_input_text_extended(
@ -688,7 +688,7 @@ class ManageNetScanScripts extends Wizard
$datam = []; $datam = [];
$datam[0] = __('Help'); $datam[0] = __('Help');
$datam[0] .= "<span class='normal'> ( "; $datam[0] .= "<span class='normal_weight'> ( ";
$datam[0] .= $macro_name; $datam[0] .= $macro_name;
$datam[0] .= ' )</span><br><br><br>'; $datam[0] .= ' )</span><br><br><br>';