From f97832f3f2612ff28b6c4a0c389ab228574497d2 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 14:36:29 +0200 Subject: [PATCH 01/15] #11382 fixed event cardboard in version open --- pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php index 87e592c8af..89437723cc 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php +++ b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php @@ -135,6 +135,7 @@ class EventCardboard extends Widget include_once $config['homedir'].'/include/functions_agents.php'; include_once $config['homedir'].'/include/functions_modules.php'; + include_once $config['homedir'].'/include/functions_events.php'; // WARNING: Do not edit. This chunk must be in the constructor. parent::__construct( From fb8a54c42e4090080537bf46d193297937f4e834 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 29 May 2023 13:41:17 +0200 Subject: [PATCH 02/15] #11195 fixed widget groups when select all --- .../include/lib/Dashboard/Widgets/system_group_status.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php index 4b8924d668..02df4c2888 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -395,6 +395,12 @@ class SystemGroupStatusWidget extends Widget $user_groups = users_get_groups(false, 'AR', $return_all_group); $selected_groups = explode(',', $this->values['groupId'][0]); + if (in_array(0, $selected_groups) === true) { + $selected_groups = []; + foreach (groups_get_all() as $key => $name_group) { + $selected_groups[] = groups_get_id($name_group); + } + } // Recursion. if ($this->values['groupRecursion'] === true) { From 3ff8b115f709b4b4abf7d9d2edee8ba425b658fc Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 30 May 2023 13:46:43 +0200 Subject: [PATCH 03/15] #11354 The tips modal is hidden when the about modal is opened. --- pandora_console/include/javascript/pandora.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index f5d444ae36..22815792e0 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2298,6 +2298,8 @@ var formatterDataVerticalBar = function(value, ctx) { $(document).ready(function() { $("#icon_about").click(function() { $("#icon_about").addClass("selected"); + // Hidden tips modal. + $(".window").css("display", "none"); jQuery.post( "ajax.php", From 151882859ab72a66289eb1a4df1c151268439a8c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:20:02 +0200 Subject: [PATCH 04/15] #11456 fixed visual console when setting background none --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index 16f86884d9..edd5ea3c55 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); } From 73de090e60d340f87208f3b5edc63cec90f29b8b Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 5 Jun 2023 17:00:25 +0200 Subject: [PATCH 05/15] #11420 Fixed inventory --- pandora_console/operation/inventory/inventory.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index c41009d330..e530a89864 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -149,7 +149,11 @@ if (is_ajax() === true) { $tmp->alias .= $server['server_name'].' » '; } - $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent']; + if (is_metaconsole() === true) { + $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_tagente']; + } else { + $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent']; + } $tmp->alias .= $agent['alias']; $ip = ''.__('N/A').''; From 9269ef85d3b3b7fd5f6fcde1965ad28e11d7f7ae Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 12:18:35 +0200 Subject: [PATCH 06/15] #11473 fixed redirect installer when config.php not exist --- pandora_console/index.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index aaf960eb91..a1304963c1 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -32,16 +32,6 @@ if (defined('__PAN_XHPROF__') === false) { define('__PAN_XHPROF__', 0); } -require 'vendor/autoload.php'; - -if (__PAN_XHPROF__ === 1) { - if (function_exists('tideways_xhprof_enable') === true) { - tideways_xhprof_enable(); - } else { - error_log('Cannot find tideways_xhprof_enable function'); - } -} - // Needed for InfoBox count. if (isset($_SESSION['info_box_count']) === true) { $_SESSION['info_box_count'] = 0; @@ -142,6 +132,16 @@ if ((file_exists('include/config.php') === false) exit; } +require 'vendor/autoload.php'; + +if (__PAN_XHPROF__ === 1) { + if (function_exists('tideways_xhprof_enable') === true) { + tideways_xhprof_enable(); + } else { + error_log('Cannot find tideways_xhprof_enable function'); + } +} + /* * DO NOT CHANGE ORDER OF FOLLOWING REQUIRES. */ From b6f586a6f4ed3ecc448077046ace7835841f6e19 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 13:10:05 +0200 Subject: [PATCH 07/15] #11479 fixed color module tabs in open version --- .../include/lib/Dashboard/Widgets/ColorModuleTabs.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php index 21778baa42..75dec91342 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php @@ -354,6 +354,8 @@ class ColorModuleTabs extends Widget { global $config; + include_once $config['homedir'].'/include/functions_graph.php'; + $size = parent::getSize(); $output = ''; From 219424bef6fbea386114ae750f4f3c450f3837b6 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 13:40:57 +0200 Subject: [PATCH 08/15] #11478 added min height in popup modal widget --- pandora_console/include/styles/dashboards.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/dashboards.css b/pandora_console/include/styles/dashboards.css index 08f43f9d38..908f673997 100644 --- a/pandora_console/include/styles/dashboards.css +++ b/pandora_console/include/styles/dashboards.css @@ -142,7 +142,9 @@ h1 { img { cursor: pointer; } - +#modal-add-widget { + min-height: 566px !important; +} #modal-add-widget .container-list-widgets { display: flex; flex-direction: row; From 75f227ec9f33868b01b4152748e863ba09767065 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 17:12:13 +0200 Subject: [PATCH 09/15] #11481 fixed widgets dashboard styles --- .../include/lib/Dashboard/Widgets/module_icon.php | 8 +++++--- .../include/lib/Dashboard/Widgets/module_status.php | 6 ++++-- .../include/lib/Dashboard/Widgets/module_value.php | 6 ++++-- .../include/lib/Dashboard/Widgets/sla_percent.php | 4 +++- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php index 6790d70616..a58b046124 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php @@ -384,7 +384,7 @@ class ModuleIconWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => users_access_to_agent($values['agentId']) === false ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -563,10 +563,12 @@ class ModuleIconWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_15px'; } // General div. @@ -596,7 +598,7 @@ class ModuleIconWidget extends Widget // Div image. $style_icon = 'flex: 0 1 '.$sizeIcon.'px;'; - $output .= '
'; + $output .= '
'; $output .= html_print_image( 'images/console/icons/'.$icon.$color_icon.'.png', true, @@ -604,7 +606,7 @@ class ModuleIconWidget extends Widget ); $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; $output .= remove_right_zeros( number_format($data_module, $config['graph_precision'], $config['decimal_separator'], $config['thousand_separator']) ).$unit; diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_status.php b/pandora_console/include/lib/Dashboard/Widgets/module_status.php index a9e72fd528..c4980f253f 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_status.php @@ -375,7 +375,7 @@ class ModuleStatusWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -560,17 +560,19 @@ class ModuleStatusWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_15px'; } // General div. $output .= '
'; // Div image. - $output .= '
'; + $output .= '
'; $output .= html_print_image( 'images/console/icons/'.$icon, true, diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_value.php index 83521f6b25..cf2f0e0e4a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_value.php @@ -359,7 +359,7 @@ class ModuleValueWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -471,17 +471,19 @@ class ModuleValueWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; if (is_numeric($data_module) === true) { $dataDatos = remove_right_zeros( diff --git a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php index 2e7483d58e..e6b334b779 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php +++ b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php @@ -516,16 +516,18 @@ class SLAPercentWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; $output .= $sla_array['sla_fixed'].'%'; $output .= '
'; From 78075cefb9163c85db70ab59045f1a70a1e87a04 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 7 Jun 2023 10:45:06 +0200 Subject: [PATCH 10/15] #11504 Fixed wmi credential --- pandora_console/godmode/wizards/HostDevices.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index 23a822d08d..8cf3a6b4e8 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -1460,7 +1460,7 @@ class HostDevices extends Wizard } include_once $config['homedir'].'/include/class/CredentialStore.class.php'; - $available_keys = CredentialStore::getKeys('CUSTOM'); + $available_keys = CredentialStore::getKeys('WMI'); if (check_acl($config['id_user'], 0, 'UM')) { $link_to_cs = ' /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index cba3683d63..1b874b8456 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230607'; +use constant AGENT_BUILD => '230608'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 87eed5cdd5..47612d85d2 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 6a7ac453f9..f48f139699 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 23038a0443..112beed258 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230607" +PI_BUILD="230608" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 55feddb1ec..70d1a6c4f7 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230607} +{230608} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6d6b83b581..6451ae8893 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.771 Build 230607") +#define PANDORA_VERSION ("7.0NG.771 Build 230608") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index dead47eaeb..0954290825 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.771(Build 230607))" + VALUE "ProductVersion", "(7.0NG.771(Build 230608))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 840ef27ca7..cae40c5d8c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230607 +Version: 7.0NG.771-230608 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index f79ad89a02..d4cf13b07b 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.771-230607" +pandora_version="7.0NG.771-230608" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8721542bc1..bbf689839f 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230607'; +$build_version = 'PC230608'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6e34c7d23a..724ac008d9 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index a1259cef25..64a8ae3e9b 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 9b50a92602..20e4d9c231 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index f274d964f1..0145ed20c2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230607" +PI_BUILD="230608" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ccb6c1b0d8..04957516fb 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.771 Build 230607"; +my $version = "7.0NG.771 Build 230608"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index e219d0ebc6..f442f51253 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.771 Build 230607"; +my $version = "7.0NG.771 Build 230608"; # save program name for logging my $progname = basename($0); From 94b4584d453e43ae5b5edc7e201f12a9b1707878 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 08:29:35 +0200 Subject: [PATCH 13/15] 11521-Fix filter SNMP graph --- pandora_console/extensions/realtime_graphs.php | 2 +- pandora_console/include/styles/pandora.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/extensions/realtime_graphs.php b/pandora_console/extensions/realtime_graphs.php index cc59576da5..14ae13c04b 100644 --- a/pandora_console/extensions/realtime_graphs.php +++ b/pandora_console/extensions/realtime_graphs.php @@ -220,7 +220,7 @@ function pandora_realtime_graphs() false, '', 'white-box-content', - 'box-flat white_table_graph fixed_filter_bar' + 'box-flat white_table_graph fixed_filter_bar top_0px_important mrgn_btn_35px_imp' ); $chart[time()]['graph'] = '0'; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..953f1c3706 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -7158,6 +7158,10 @@ div.graph div.legend table { margin-bottom: 35px; } +.mrgn_btn_35px_imp { + margin-bottom: 35px !important; +} + .mrgn_btn_40px { margin-bottom: 40px; } From d0c1867e56e98ca37e69d4c3a3ef1ab7e208700b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 08:48:13 +0200 Subject: [PATCH 14/15] #11497 Fix message height --- pandora_console/include/styles/pandora.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..cb0a5ba361 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -11856,6 +11856,10 @@ div.relative > div > div#ui-datepicker-div { width: 400px; } +#message_dialog_connection { + height: auto !important; +} + #module_relations > thead > tr { border: none !important; border-bottom: 1px solid #e2e2e2 !important; From cfb9911559631ca1a080f97b954d5d1f9f4b5f13 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 11:18:05 +0200 Subject: [PATCH 15/15] 11477-Hide menu scroll --- pandora_console/include/styles/menu.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/styles/menu.css b/pandora_console/include/styles/menu.css index 037d6361c0..8de579dcee 100644 --- a/pandora_console/include/styles/menu.css +++ b/pandora_console/include/styles/menu.css @@ -26,7 +26,7 @@ } #div_display::-webkit-scrollbar:vertical { - width: 5px; + width: 0px; } #div_display::-webkit-scrollbar-button:increment, @@ -57,7 +57,7 @@ } #div_management::-webkit-scrollbar:vertical { - width: 5px; + width: 0px; } #div_management::-webkit-scrollbar-button:increment,