diff --git a/pandora_console/godmode/reporting/reporting_builder.list_items.php b/pandora_console/godmode/reporting/reporting_builder.list_items.php index 07d4a083fa..0c5910a677 100755 --- a/pandora_console/godmode/reporting/reporting_builder.list_items.php +++ b/pandora_console/godmode/reporting/reporting_builder.list_items.php @@ -330,6 +330,8 @@ if ($items) { if (defined('METACONSOLE')) { $table->width = '100%'; $table->class = 'databox data'; + } else { + $table->class = 'info_table'; } $table->size = []; @@ -493,6 +495,7 @@ foreach ($items as $item) { $row[6] = ''; if (check_acl($config['id_user'], $item['id_group'], 'RM')) { + $table->cellclass[][6] = 'action_buttons'; $row[6] .= ''.html_print_image('images/wrench_orange.png', true, ['title' => __('Edit')]).''; $row[6] .= ' '; $row[6] .= ''.html_print_image('images/cross.png', true, ['title' => __('Delete')]).''; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 48a66017ed..81976ccd50 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -5114,7 +5114,7 @@ table.info_table > tbody > tr > td > form > a > img { } table.info_table > tbody > tr:hover { - background-color: #eee; + background-color: #eee !important; } .info_table.profile_list > thead > tr > th > a.tip { @@ -5338,6 +5338,20 @@ table.info_table.agent_info_table table.info_table { border-radius: 4px; } +/* Tag view */ +table.info_table.policy_table tr { + background-color: #fff !important; +} + +table.info_table.policy_sub_table thead > tr:first-child th { + background-color: #f5f5f5; +} + +table.info_table.policy_sub_table { + padding: 20px 15px; + margin-bottom: 0; +} + /* Arrows to sort the tables. */ .sort_arrow { display: inline-grid; diff --git a/pandora_console/index.php b/pandora_console/index.php index 7fb469f2da..3c33a1a1e0 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1255,7 +1255,7 @@ require 'include/php_to_js_values.php';