diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css index 88ee563947..ddce2bf4b5 100644 --- a/pandora_console/include/styles/events.css +++ b/pandora_console/include/styles/events.css @@ -584,3 +584,20 @@ div.container-filter-buttons { #button-start-search { width: 115px; } + +.events-refresh-pure { + position: fixed; + z-index: 1; + top: 10px; + right: 10px; + width: 450px; + height: 70px; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-evenly; + align-items: center; + background-color: #f2f6f7; + border-radius: 15px; + padding: 0px 10px; +} diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index 0d759395b8..933d710887 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1903,3 +1903,7 @@ div#dashboard-controls-slides .select2-selection__rendered { color: var(--text-color) !important; } + +div.events-refresh-pure { + background-color: #333; +} diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 420c3eb375..7c5f1b1210 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -1673,13 +1673,10 @@ $url .= ''; if ($pure) { // Fullscreen. // Floating menu - Start. - echo '
'; - - echo ''; + echo '
'; echo '
'; // Floating menu - End. @@ -3867,4 +3854,9 @@ function show_events_graph(){ } }); } + +$(document).ready(function () { + var controls = document.querySelector('.events-refresh-pure'); + autoHideElement(controls, 1000); +});