Fixed several minor visual bugs - #4347

This commit is contained in:
Tatiana Llorente 2019-07-11 14:46:41 +02:00
parent ac3de84bda
commit fd24398219
5 changed files with 11 additions and 8 deletions

View File

@ -84,7 +84,9 @@ if ($create_profiles) {
); );
} }
html_print_table($table); if ($table !== null) {
html_print_table($table);
}
unset($table); unset($table);

View File

@ -92,7 +92,9 @@ if ($delete_profiles) {
); );
} }
html_print_table($table); if ($table !== null) {
html_print_table($table);
}
unset($table); unset($table);

View File

@ -1505,7 +1505,7 @@ $(document).ready (function () {
.prop('checked'); .prop('checked');
display_custom_report_front(custom_report,$(this).parent().parent().parent().parent().parent().attr('id')); display_custom_report_front(custom_report,$(this).parent().parent().parent().parent().parent().attr('id'));
}); });
$(".databox.filters").css('margin-bottom','-10px'); $(".databox.filters").css('margin-bottom','0px');
}); });
// Change the favicon preview when is changed // Change the favicon preview when is changed

View File

@ -235,11 +235,12 @@ pre {
font-family: courier, serif; font-family: courier, serif;
} }
fieldset { fieldset {
background-color: #f9faf9; background-color: #fff;
border: 1px solid #e2e2e2; border: 1px solid #e2e2e2;
padding: 0.5em; padding: 0.5em;
margin-bottom: 20px; margin-bottom: 20px;
position: relative; position: relative;
border-radius: 5px;
} }
fieldset legend { fieldset legend {
font-size: 1.1em; font-size: 1.1em;
@ -5791,7 +5792,6 @@ div#status_pie {
grid-template-columns: 50px auto; grid-template-columns: 50px auto;
} }
/* /*
* --------------------------------------------------------------------- * ---------------------------------------------------------------------
* - IMAGES FOR STATUS. This replaces the images of /images/status_sets/default/ * - IMAGES FOR STATUS. This replaces the images of /images/status_sets/default/
@ -5834,7 +5834,6 @@ div#status_pie {
* --------------------------------------------------------------------- * ---------------------------------------------------------------------
*/ */
/* Table for show more info in events and config menu in modules graphs. (This class exists in events.css too) */ /* Table for show more info in events and config menu in modules graphs. (This class exists in events.css too) */
.table_modal_alternate { .table_modal_alternate {
border-spacing: 0; border-spacing: 0;

View File

@ -383,14 +383,14 @@ if ($not_found) {
html_print_table($table); html_print_table($table);
echo "<div style='width: ".$table->width."; text-align: right;'>"; echo "<div style='width: ".$table->width."; text-align: right; margin-top:20px;'>";
if ($new_networkmap) { if ($new_networkmap) {
html_print_input_hidden('save_networkmap', 1); html_print_input_hidden('save_networkmap', 1);
html_print_submit_button( html_print_submit_button(
__('Save networkmap'), __('Save networkmap'),
'crt', 'crt',
false, false,
'class="sub"' 'class="sub next"'
); );
} }