diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index 23e88938e1..8e8b966281 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -343,7 +343,7 @@ switch ($action) { switch ($activeTab) { case 'main': $buttons['list_reports']['active'] = true; - $subsection = ' » '.__('Custom reporting'); + $subsection = __('Custom reporting'); break; default: $subsection = reporting_enterprise_add_subsection_main($activeTab, $buttons); @@ -365,7 +365,7 @@ switch ($action) { } // Page header for normal console else - ui_print_page_header (__('Reporting').' » '.__('Custom reporting'), "images/op_reporting.png", false, "", false, $buttons,false,'',50); + ui_print_page_header (__('Custom reporting'), "images/op_reporting.png", false, "", false, $buttons,false,'',60); if ($action == 'delete_report') { @@ -1886,7 +1886,7 @@ switch ($action) { switch ($activeTab) { case 'main': $buttons['list_reports']['active'] = true; - $subsection = ' » ' . __('Custom reporting'); + $subsection = __('Custom reporting'); break; default: $subsection = reporting_enterprise_add_subsection_main($activeTab, $buttons); @@ -1908,7 +1908,7 @@ switch ($action) { } // Page header for normal console else - ui_print_page_header (__('Reporting') . $subsection, "images/op_reporting.png", false, "", false, $buttons,false,'',50); + ui_print_page_header ($subsection, "images/op_reporting.png", false, "", false, $buttons,false,'',60); reporting_enterprise_select_main_tab($action); @@ -1952,7 +1952,7 @@ $buttons['view'] = array('active' => false, $buttons[$activeTab]['active'] = true; if ($idReport != 0) { - $textReportName = " » " . $reportName; + $textReportName = $reportName; } else { $temp = $buttons['main']; @@ -1978,9 +1978,9 @@ if ($enterpriseEnable and defined('METACONSOLE')) { ui_meta_print_header(__('Reporting'). $textReportName, "", $buttons); } else { - ui_print_page_header(__('Reporting') . $textReportName, + ui_print_page_header($textReportName, "images/op_reporting.png", false, - "reporting_" . $activeTab . "_tab", false, $buttons,false,'',50); + "reporting_" . $activeTab . "_tab", false, $buttons,false,'',60); } if ($resultOperationDB !== null) { diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index 8cf1436f52..25a98f04c5 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -152,7 +152,7 @@ define('COL_GRAPH13', '#E83128'); /* The styles */ /* Size of text in characters for truncate */ -define('GENERIC_SIZE_TEXT', 25); +define('GENERIC_SIZE_TEXT', 50); diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 0417c54cea..2beffd740f 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -2429,24 +2429,24 @@ function ui_print_page_header ($title, $icon = "", $return = false, $buffer = '
'; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 25da2992ee..3e2cca8cfb 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -1252,7 +1252,6 @@ div.title_line { text-decoration: none; } #menu_tab_left li.view a { - padding: 2px 10px 2px 10px; color: #fff; font-weight: bold; font-weight: 100; @@ -1263,7 +1262,7 @@ div.title_line { #menu_tab_left li.view { background: #82b92e; max-width: 60%; - min-width: 20%; + min-width: 30%; padding: 5px 5px 0px; text-align: center; -moz-border-top-right-radius: 3px; @@ -1289,13 +1288,12 @@ div.title_line { #menu_tab_left li a, #menu_tab_left li span { text-transform: uppercase; - padding: 0px 0px 0px 5px; color: #fff; - font-size: 9.5pt; + font-size: 100%; line-height: 20px; letter-spacing:0px; font-family: verdana, sans-serif; - font-weight: normal; + font-weight: bold; } span.users { diff --git a/pandora_console/operation/reporting/reporting_viewer.php b/pandora_console/operation/reporting/reporting_viewer.php index 087b6a76aa..63926b03c5 100755 --- a/pandora_console/operation/reporting/reporting_viewer.php +++ b/pandora_console/operation/reporting/reporting_viewer.php @@ -124,11 +124,8 @@ if ($config['metaconsole'] == 1 and defined('METACONSOLE')) { ui_meta_print_header(__('Reporting'), "", $options); } else { - ui_print_page_header ( - __('Reporting') . - " » " . - reporting_get_name($id_report), - "images/op_reporting.png", false, "", false, $options,false,'',50); + ui_print_page_header (reporting_get_name($id_report), "images/op_reporting.png", + false, "", false, $options,false,'',50); } //------------------- END HEADER ---------------------------------------