diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index b73e2d63e3..485425ec62 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -366,59 +366,37 @@ echo sprintf('
', $menuTypeClass); $header_autorefresh_counter .= '
'; } - // Button for feedback pandora. - if (enterprise_installed() && $config['activate_feedback']) { - $header_feedback = '
'; - $header_feedback .= ''; - $header_feedback .= ''; - $header_feedback .= html_print_image( - 'images/send_feedback@header.svg', - true, - [ - 'class' => 'main_menu_icon invert_filter', - 'title' => __('Feedback'), - 'id' => 'feedback-header', - 'alt' => __('Feedback'), - 'style' => 'cursor: pointer;', - ] - ); - $header_feedback .= '
'; - } - - - // Support. - if (enterprise_installed()) { - $header_support_link = $config['custom_support_url']; + $modal_box = ''; - // Documentation. - $header_docu = '
'; - $header_docu .= ''; - $header_docu .= html_print_image( - 'images/documentation@header.svg', - true, + $modal_help = html_print_div( [ - 'title' => __('Go to documentation'), - 'class' => 'main_menu_icon bot invert_filter', - 'alt' => 'user', - ] + 'id' => 'modal-help-content', + 'content' => html_print_image( + 'images/help@header.svg', + true, + [ + 'title' => __('Help'), + 'class' => 'main_menu_icon bot invert_filter', + 'alt' => 'user', + ] + ).$modal_box, + ], + true, ); - $header_docu .= '
'; // User. @@ -472,11 +450,11 @@ echo sprintf('
', $menuTypeClass); echo ''; echo '
'; echo '
'; - echo '
'.$header_support, $header_docu, $header_user, $header_logout.'
'; + echo '
'.$modal_help, $header_user, $header_logout.'
'; } else { echo '
'.$config['custom_title_header'].''.$config['custom_subtitle_header'].'
'.$header_searchbar.'
-
'.$header_autorefresh, $header_autorefresh_counter, $header_discovery, $header_welcome, $servers_list, $header_feedback, $header_support, $header_docu, $header_user, $header_logout.'
'; +
'.$header_autorefresh, $header_autorefresh_counter, $header_discovery, $header_welcome, $servers_list, $modal_help, $header_user, $header_logout.'
'; } ?> @@ -960,8 +938,6 @@ echo sprintf('
', $menuTypeClass); // Feedback. $("#feedback-header").click(function () { - // Clean DOM. - $("#feedback-header").empty(); // Function charge Modal. show_feedback(); }); @@ -1067,6 +1043,22 @@ echo sprintf('
', $menuTypeClass); return false; }); + + + $(document).click(function(event) { + if (!$(event.target).closest('#modal-help-content').length && + $('#modal_help').hasClass('invisible') === false) { + $('#modal_help').addClass('invisible'); + } + }); + + $('#modal-help-content').on('click', (e) => { + if($(e.target).prop('tagName') === 'A') { + $('#modal_help').addClass('invisible'); + } else { + $('#modal_help').removeClass('invisible'); + } + }); }); /* ]]> */ diff --git a/pandora_console/images/help@header.svg b/pandora_console/images/help@header.svg new file mode 100644 index 0000000000..e561a7c09e --- /dev/null +++ b/pandora_console/images/help@header.svg @@ -0,0 +1,8 @@ + + + help_pandora + + + + + \ No newline at end of file diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 269f7033ed..44fc18da4c 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -1535,7 +1535,45 @@ div#head { input.datos { background-color: #f5f5f5; } - +#modal_help { + position: absolute; + top: -2px; + right: 32px; + background: white; + display: flex; + min-width: 160px; + flex-direction: column; + filter: drop-shadow(1px 2px 2px #0000005e); + padding: 10px 0px; +} +#modal-help-content { + position: relative; + cursor: pointer; +} +#modal_help a { + margin: 3px 0px; + padding: 0px 15px; +} +#modal_help a:hover { + color: var(--primary-color); +} +#modal_help .separator { + width: 100%; + opacity: 0.4; +} +#modal_help::before { + content: ""; + border: 8px solid #0000; + border-bottom: 8px solid white; + left: auto; + right: -16px; + top: 5px; + position: absolute; + transform: rotate(90deg); +} +#modal_help.invisible { + display: none; +} /* * --------------------------------------------------------------------- * - REPORTS - diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index c8d4441465..725a1c67d0 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1851,3 +1851,10 @@ a.pandora_pagination, color: #fff !important; background-color: #333 !important; } + +#modal_help { + background: #222222; +} +#modal_help::before { + border-bottom: 8px solid #222222; +}