From d78c276721dd34db3d765a90d8303fa8d4db9def Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 7 Apr 2021 15:10:32 +0000 Subject: [PATCH] fixed visual error report wizard --- .../wizards/DiscoveryTaskList.class.php | 2 +- pandora_console/include/styles/pandora.css | 39 +++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php index f94c3f0e8a..384abd4db4 100644 --- a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php +++ b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php @@ -1494,7 +1494,7 @@ class DiscoveryTaskList extends HTML if (is_array($data['modules'])) { // Alphabetically sort. - ksort($data['modules'], SORT_STRING | SORT_FLAG_CASE); + ksort($data['modules'], (SORT_STRING | SORT_FLAG_CASE)); $simple_data = array_merge( $simple_data, diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 0e2cacd012..6326404527 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -8446,6 +8446,45 @@ div.stat-win-spinner img { width: 100px; height: 100px; } + +#table_builder_wizard tr.datos > td { + width: 30%; +} +#table_builder_wizard tr.datos > td:nth-child(3) { + width: 10%; +} +#table_builder_wizard .vertical-center { + text-align: center; +} + +#table_builder_wizard .container-agent-arrows { + display: flex; + flex-direction: row; + align-items: center; + justify-content: flex-start; +} + +#table_builder_wizard .container-agent-arrows > div { + flex: 1; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +#table_builder_wizard .container-agent-arrows > div > b { + flex: 0; + margin-bottom: 20px; + width: 98%; + margin-left: 20px; +} + +#table_builder_wizard .container-agent-arrows > div.vertical-center { + flex: 0; + display: block; + min-width: 50px; +} + .lign_right { text-align: right; }