Ticket 10431 Header icons added

This commit is contained in:
Jose Gonzalez 2023-02-20 17:22:42 +01:00
parent 49fc725cdc
commit 91393d7ce5
39 changed files with 157 additions and 36 deletions

View File

@ -26,7 +26,7 @@ config_check();
echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
?>
<div id="header_table_inner">
<div id="header_table_inner">
<?php
// ======= Notifications Discovery ===============================================
$notifications_numbers = notifications_get_counters();
@ -37,7 +37,6 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
// ======= Servers List ===============================================
if ((bool) check_acl($config['id_user'], 0, 'AW') !== false) {
$servers_list = '<div id="servers_list">';
$servers = [];
$servers['all'] = (int) db_get_value('COUNT(id_server)', 'tserver');
if ($servers['all'] != 0) {
@ -45,22 +44,33 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
$servers['down'] = ($servers['all'] - $servers['up']);
if ($servers['up'] == 0) {
// All Servers down or no servers at all.
$servers_check_img = html_print_image('images/header_down_gray.png', true, ['alt' => 'cross', 'class' => 'bot', 'title' => __('All systems').': '.__('Down')]);
$servers_check_img = html_print_image('images/system_error@header.svg', true, ['alt' => 'cross', 'class' => 'main_menu_icon bot', 'title' => __('All systems').': '.__('Down')]);
} else if ($servers['down'] != 0) {
// Some servers down.
$servers_check_img = html_print_image('images/header_warning_gray.png', true, ['alt' => 'error', 'class' => 'bot', 'title' => $servers['down'].' '.__('servers down')]);
$servers_check_img = html_print_image('images/system_warning@header.svg', true, ['alt' => 'error', 'class' => 'main_menu_icon bot', 'title' => $servers['down'].' '.__('servers down')]);
} else {
// All servers up.
$servers_check_img = html_print_image('images/header_ready_gray.png', true, ['alt' => 'ok', 'class' => 'bot', 'title' => __('All systems').': '.__('Ready')]);
$servers_check_img = html_print_image('images/system_ok@header.svg', true, ['alt' => 'ok', 'class' => 'main_menu_icon bot', 'title' => __('All systems').': '.__('Ready')]);
}
unset($servers);
// Since this is the header, we don't like to trickle down variables.
$servers_check_img_link = '<a class="white" href="index.php?sec=gservers&sec2=godmode/servers/modificar_server&refr=60">';
$servers_check_img_link .= $servers_check_img;
$servers_check_img_link .= '</a>';
$servers_check_img_link = html_print_anchor(
[
'href' => 'index.php?sec=gservers&sec2=godmode/servers/modificar_server&refr=60',
'content' => $servers_check_img,
],
true
);
};
$servers_list .= $servers_check_img_link.'</div>';
$servers_list = html_print_div(
[
'id' => 'servers_list',
'content' => $servers_check_img_link,
],
true
);
}
@ -71,9 +81,9 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
$check_minor_release_available = db_check_minor_relase_available();
if ($check_minor_release_available) {
if ($check_minor_release_available === true) {
if (users_is_admin($config['id_user'])) {
if ($config['language'] == 'es') {
if ($config['language'] === 'es') {
set_pandora_error_for_header('Hay una o mas revisiones menores en espera para ser actualizadas. <a id="aviable_updates" target="blank" href="https://pandorafms.com/manual/es/documentation/02_installation/02_anexo_upgrade#version_70ng_rolling_release">'.__('Sobre actualización de revisión menor').'</a>', 'Revisión/es menor/es disponible/s');
} else {
set_pandora_error_for_header('There are one or more minor releases waiting for update. <a id="aviable_updates" target="blank" href="https://pandorafms.com/manual/en/documentation/02_installation/02_anexo_upgrade#version_70ng_rolling_release">'.__('About minor release update').'</a>', 'minor release/s available');
@ -227,10 +237,10 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
if ($do_refresh) {
$autorefresh_img = html_print_image(
'images/header_refresh_gray.png',
'images/auto_refresh@header.svg',
true,
[
'class' => 'bot',
'class' => 'main_menu_icon bot',
'alt' => 'lightning',
'title' => __('Configure autorefresh'),
]
@ -293,10 +303,10 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
$display_counter = 'display:block';
} else {
$autorefresh_img = html_print_image(
'images/header_refresh_disabled_gray.png',
'images/auto_refresh@header.svg',
true,
[
'class' => 'bot autorefresh_disabled invert_filter',
'class' => 'main_menu_icon bot autorefresh_disabled invert_filter',
'alt' => 'lightning',
'title' => __('Disabled autorefresh'),
]
@ -312,10 +322,10 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
}
} else {
$autorefresh_img = html_print_image(
'images/header_refresh_disabled_gray.png',
'images/auto_refresh@header.svg',
true,
[
'class' => 'bot autorefresh_disabled invert_filter',
'class' => 'main_menu_icon bot autorefresh_disabled invert_filter',
'alt' => 'lightning',
'title' => __('Disabled autorefresh'),
]
@ -350,9 +360,10 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
$header_feedback .= '<div id="modal-feedback-form" class="invisible"></div>';
$header_feedback .= '<div id="msg-header" class="invisible"></div>';
$header_feedback .= html_print_image(
'images/feedback-header.png',
'images/send_feedback@header.svg',
true,
[
'class' => 'main_menu_icon',
'title' => __('Feedback'),
'id' => 'feedback-header',
'alt' => __('Feedback'),
@ -373,11 +384,11 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
$header_support = '<div id="header_support">';
$header_support .= '<a href="'.ui_get_full_external_url($header_support_link).'" target="_blank">';
$header_support .= html_print_image(
'images/header_support.png',
'images/support@header.svg',
true,
[
'title' => __('Go to support'),
'class' => 'bot invert_filter',
'class' => 'main_menu_icon bot invert_filter',
'alt' => 'user',
]
);
@ -387,11 +398,11 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
$header_docu = '<div id="header_docu">';
$header_docu .= '<a href="'.ui_get_full_external_url($config['custom_docs_url']).'" target="_blank">';
$header_docu .= html_print_image(
'images/header_docu.png',
'images/documentation@header.svg',
true,
[
'title' => __('Go to documentation'),
'class' => 'bot invert_filter',
'class' => 'main_menu_icon bot invert_filter',
'alt' => 'user',
]
);
@ -399,15 +410,14 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
// User.
$headerUserImage = (is_user_admin($config['id_user']) === true) ? 'images/header_user_admin_green.png' : 'images/header_user_green.png';
// $headerUserImage = (is_user_admin($config['id_user']) === true) ? 'images/header_user_admin_green.png' : 'images/header_user_green.png';
$headerUser = [];
$headerUser[] = html_print_image(
$headerUserImage,
'images/edit_user@header.svg',
true,
[
'title' => __('Edit my user'),
'class' => 'bot',
'class' => 'main_menu_icon bot',
'alt' => 'user',
]
);
@ -431,7 +441,7 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
// Logout.
$header_logout = '<div id="header_logout"><a class="white" href="'.ui_get_full_url('index.php?bye=bye').'">';
$header_logout .= html_print_image(
'images/header_logout_gray.png',
'images/sign_out@header.svg',
true,
[
'alt' => __('Logout'),

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 466 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 826 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1019 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1022 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1006 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 646 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 945 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 918 B

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Auto refresh@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Auto-refresh" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10,-2.30926389e-14 C15.5228475,-2.30926389e-14 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 C9.44771525,20 9,19.5522847 9,19 C9,18.4477153 9.44771525,18 10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,10.5522847 1.55228475,11 1,11 C0.44771525,11 -1.0658141e-14,10.5522847 -1.0658141e-14,10 C-1.0658141e-14,4.4771525 4.4771525,-2.30926389e-14 10,-2.30926389e-14 Z" id="Oval" fill="#3F3F3F" transform="translate(10.000000, 10.000000) scale(-1, 1) rotate(35.000000) translate(-10.000000, -10.000000) "></path>
<path d="M19,0 C19.5128358,0 19.9355072,0.38604019 19.9932723,0.883378875 L20,1 L20,6 C20,6.51283584 19.6139598,6.93550716 19.1166211,6.99327227 L19,7 L14,7 C13.4477153,7 13,6.55228475 13,6 C13,5.48716416 13.3860402,5.06449284 13.8833789,5.00672773 L14,5 L18,5 L18,1 C18,0.487164161 18.3860402,0.0644928393 18.8833789,0.00672773133 L19,0 Z" id="Path-68" fill="#3F3F3F"></path>
<path d="M6,4 C6.51283584,4 6.93550716,4.38604019 6.99327227,4.88337887 L7,5 L7,10.382 L10.4472136,12.1055728 C10.9059079,12.33492 11.1113142,12.8692292 10.9405643,13.3398958 L10.8944272,13.4472136 C10.66508,13.9059079 10.1307708,14.1113142 9.66010424,13.9405643 L9.5527864,13.8944272 L5.5527864,11.8944272 C5.25164505,11.7438565 5.0490966,11.4535358 5.00780363,11.1248553 L5,11 L5,5 C5,4.44771525 5.44771525,4 6,4 Z" id="Path-69" fill="#3F3F3F" transform="translate(8.000110, 9.000110) scale(-1, 1) translate(-8.000110, -9.000110) "></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Header discovery error@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Header-discovery-error" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M0,14.605519 L0,5.39448104 C0,1.5951272 4.59496118,0 10,0 L10,0 C15.4050388,0 20,1.5951272 20,5.39448104 L20,14.605519 C20,18.4048728 15.4050388,20 10,20 L10,20 C4.59496118,20 0,18.4048728 0,14.605519 Z" id="Mask" fill="#ED474A"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 725 B

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Header discovery ok@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Header-discovery-ok" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M0,14.605519 L0,5.39448104 C0,1.5951272 4.59496118,0 10,0 L10,0 C15.4050388,0 20,1.5951272 20,5.39448104 L20,14.605519 C20,18.4048728 15.4050388,20 10,20 L10,20 C4.59496118,20 0,18.4048728 0,14.605519 Z" id="Mask" fill="#82B92E"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 719 B

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Header discovery warning@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Header-discovery-warning" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M0,14.605519 L0,5.39448104 C0,1.5951272 4.59496118,0 10,0 L10,0 C15.4050388,0 20,1.5951272 20,5.39448104 L20,14.605519 C20,18.4048728 15.4050388,20 10,20 L10,20 C4.59496118,20 0,18.4048728 0,14.605519 Z" id="Mask" fill="#FCAB10"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 729 B

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Documentation@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Documentation" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M14.988551,0 C16.0931205,7.78148667e-16 16.988551,0.8954305 16.988551,2 L16.988551,13.983638 C16.988551,15.0882075 16.0931205,15.983638 14.988551,15.983638 L5.008,15.983 L5.00981345,16.0060169 L5.00981345,17.0030679 C5.00981345,17.5153793 5.39553794,17.9376184 5.89246991,17.9953244 L6.00899566,18.0020453 L16.0008178,18.0020453 C16.5526509,18.0020453 17,18.4493027 17,19.0010226 C17,19.513334 16.6142755,19.9355731 16.1173435,19.9932791 L16.0008178,20 L6.00899566,20 C4.41262134,20 3.10770936,18.7523572 3.01653756,17.1791604 L3.01144903,17.0030679 L3.01144903,16.0060169 L3.012,15.983 L3,15.983638 L3,2 C3,0.8954305 3.8954305,2.02906125e-16 5,0 L14.988551,0 Z M14,2 L6,2 C5.44771525,2 5,2.44771525 5,3 C5,3.55228475 5.44771525,4 6,4 L6,4 L14,4 C14.5522847,4 15,3.55228475 15,3 C15,2.44771525 14.5522847,2 14,2 L14,2 Z" id="Rectangle-2" fill="#3F3F3F"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Edit User@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Edit-User" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10,0 L9.7030944,0.00174473895 C3.93659319,0.0704902953 0,2.02597359 0,5.85503294 L0,14.1449671 C0,18.044902 4.08242891,20 10,20 L10.2969056,19.9982553 C16.0634068,19.9295097 20,17.9740264 20,14.1449671 L20,5.85503294 C20,1.95509795 15.9175711,0 10,0 Z M10,2 C14.9492654,2 18,3.46101379 18,5.85503294 L18,14.1449671 C18,15.2660895 17.3331736,16.1826537 16.1127838,16.8403651 C14.6459078,15.1029077 12.4517529,14 10,14 C7.54871925,14 5.35493721,15.102483 3.88745501,16.8386479 C2.66867892,16.1821005 2,15.2657828 2,14.1449671 L2,5.85503294 C2,3.50917011 4.91952307,2.0589114 9.72095384,2.00165603 L10,2 Z M10,5 C7.79086098,5 6,6.79086102 6,9 C6,11.209139 7.79086098,13 10,13 C12.209139,13 14,11.209139 14,9 C14,6.790861 12.209139,5 10,5 Z" id="Mask" fill="#3F3F3F"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Send feedbacks@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Send-feedbacks" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M1.50193385,20 C1.3695076,20 1.23840017,19.9736974 1.1162212,19.922619 C0.606672817,19.7095957 0.366291674,19.1238357 0.57931489,18.6142873 L0.57931489,18.6142873 L1.79225699,15.7140617 C0.662531489,14.094342 0,12.1245422 0,10 C0,4.4771525 4.4771525,0 10,0 C15.5228475,0 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 L10,20 Z M10,11 C10.5522847,11 11,11.4477153 11,12 C11,12.5522847 10.5522847,13 10,13 L6,13 C5.44771525,13 5,12.5522847 5,12 C5,11.4477153 5.44771525,11 6,11 L10,11 Z M14,7 C14.5522847,7 15,7.44771525 15,8 C15,8.55228475 14.5522847,9 14,9 L6,9 C5.44771525,9 5,8.55228475 5,8 C5,7.44771525 5.44771525,7 6,7 L14,7 Z" id="Oval-2" fill="#3F3F3F"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Sign out@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Sign-out" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M5,0 C7.76142375,-5.07265313e-16 10,2.23857625 10,5 L10,15 C10,17.7614237 7.76142375,20 5,20 C2.23857625,20 3.38176876e-16,17.7614237 0,15 L0,5 C-3.38176876e-16,2.23857625 2.23857625,5.07265313e-16 5,0 Z M6,11 C5.44771525,11 5,10.5522847 5,10 C5,9.44771525 5.44771525,9 6,9 L10,9 L16.586,9 L13.2928932,5.70710678 C12.9324093,5.34662282 12.9046797,4.77939176 13.2097046,4.38710056 L13.2928932,4.29289322 C13.6533772,3.93240926 14.2206082,3.90467972 14.6128994,4.20970461 L14.7071068,4.29289322 L19.7071068,9.29289322 C20.0675907,9.65337718 20.0953203,10.2206082 19.7902954,10.6128994 L19.7071068,10.7071068 L14.7071068,15.7071068 C14.3165825,16.0976311 13.6834175,16.0976311 13.2928932,15.7071068 C12.9324093,15.3466228 12.9046797,14.7793918 13.2097046,14.3871006 L13.2928932,14.2928932 L16.586,11 L10,11 L6,11 Z" id="Rectangle-2" fill="#3F3F3F"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Support@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Support" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M17.7113617,10 C17.7095041,10.3250067 17.6850413,10.6495177 17.6381413,10.9713043 L19.8119845,12.6286957 C20.0075358,12.7859383 20.0572521,13.0580211 19.929405,13.2713043 L17.8729824,16.7286957 C17.7439356,16.9399764 17.4776428,17.0303914 17.2416794,16.9430435 L14.6856612,15.9430435 C14.1534204,16.3421687 13.5709733,16.6734037 12.95248,16.9286957 L12.5703051,19.5713043 C12.5261934,19.8154166 12.3108951,19.9950247 12.0564226,20 L7.94357735,20 C7.69410187,19.9952713 7.48100777,19.8234517 7.42969493,19.5856522 L7.04751998,16.9430435 C6.42732099,16.6907101 5.84445445,16.3589442 5.31433876,15.9565217 L2.7583206,16.9565217 C2.5224649,17.0439471 2.25620414,16.9537263 2.1270176,16.7426087 L0.070594955,13.2856522 C-0.0572521081,13.0723689 -0.00753581939,12.8002861 0.188015527,12.6430435 L2.36185875,10.9856522 C2.31549216,10.6589991 2.29103353,10.3297508 2.28863831,10 C2.29049591,9.67499326 2.31495872,9.35048232 2.36185875,9.02869565 L0.188015527,7.37130435 C-0.00753581939,7.21406171 -0.0572521081,6.9419789 0.070594955,6.72869565 L2.1270176,3.27130435 C2.25606438,3.06002361 2.52235718,2.96960858 2.7583206,3.05695652 L5.31433876,4.05695652 C5.84657962,3.65783129 6.42902665,3.32659634 7.04751998,3.07130435 L7.42969493,0.428695652 C7.47380661,0.184583354 7.68910491,0.00497525014 7.94357735,0 L12.0564226,0 C12.3058981,0.00472869506 12.5189922,0.176548306 12.5703051,0.414347826 L12.95248,3.05695652 C13.5734585,3.30911759 14.1570857,3.64088921 14.6878936,4.04347826 L17.2416794,3.04347826 C17.4775351,2.95605288 17.7437959,3.04627366 17.8729824,3.2573913 L19.929405,6.71478261 C20.0572521,6.92806586 20.0075358,7.20014867 19.8119845,7.3573913 L17.6381413,9.01478261 C17.6844885,9.34129187 17.7089471,9.67039436 17.7113617,10 Z M13.1688428,7.35916578 C13.2782345,7.41943946 13.3961126,7.51591354 13.4871325,7.58786185 C13.7888221,7.82216898 14.0465873,8.15222619 14.267329,8.45821013 C14.5834737,8.89985509 14.8500984,9.41100483 14.947553,9.98604829 C15.1846149,11.4062807 14.5848726,12.4459564 13.8156805,13.0817261 C13.4214788,13.4087967 12.9018451,13.6892594 12.3421105,13.834966 C11.7155099,13.9982299 11.0115984,14.0433899 10.3406069,13.9568709 C9.0771473,13.7955981 8.22862782,13.1841084 7.46437836,12.4584713 C7.55138809,12.2583736 7.57731382,12.1852487 7.666655,11.988409 C7.81689367,12.1397267 7.79634167,12.1796119 7.91496587,12.2589813 C8.73535666,12.812938 9.80735758,13.2898784 11.2272109,13.210147 C11.9462302,13.1720461 12.6132116,12.9298654 13.0863095,12.5613452 C13.5451389,12.2051332 13.9288957,11.6934405 13.9202227,10.9813785 C13.9112699,10.2277765 13.5302177,9.6130936 13.1145667,9.20149498 C12.9721617,9.05986089 12.8181927,8.90836218 12.6626383,8.79677443 C12.4166237,8.62038795 12.1430046,8.48364091 11.86808,8.35440546 C11.588306,8.22082596 11.3008847,8.08715596 10.9673941,8.01728918 C11.5174299,7.67809137 12.9938908,7.2623297 13.1688428,7.35916578 Z M12.5995026,5.02346128 C13.100951,5.07957191 13.6002544,5.21948648 13.9332788,5.4708078 C14.0465873,5.55488325 14.1820912,5.64692278 14.2544594,5.74774092 C14.2965188,5.80611407 14.3555511,5.94059858 14.3221648,6.02032998 C14.2806649,6.11725657 14.1281881,6.12666867 14.0019167,6.12440615 C13.5705051,6.11580855 13.1760237,6.07191556 12.7588806,6.1206956 C12.1678113,6.19101489 11.6782999,6.3519257 11.2561209,6.52369663 C10.364481,6.88398118 9.59845962,7.47775835 8.99452069,8.07705608 C8.38563909,8.67970235 7.82310673,9.43882488 7.37537498,10.2184006 C6.87691087,11.0863054 6.50089454,12.0014517 6.19053186,12.962482 C5.47785409,12.0594628 5.03637063,10.9434043 5,9.72055454 C5.67416221,8.68829995 6.45268015,7.75595847 7.37686711,6.96398408 C8.01381937,6.41645293 8.76454642,5.92847145 9.59575513,5.57388846 C9.73526913,5.51352428 9.87049326,5.43741293 10.0211982,5.3903524 C10.1702245,5.34265836 10.3257789,5.29532633 10.4847838,5.24410276 C11.0925463,5.04970657 11.9288842,4.95178447 12.5995026,5.02346128 Z" id="Shape" fill="#3F3F3F"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Systems error@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Systems-error" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M19,11 C19.5128358,11 19.9355072,11.3860402 19.9932723,11.8833789 L20,12 L20,19 C16.6666667,19.6666667 13.3333333,20 10,20 C6.94444444,20 3.88888889,19.7199074 0.833333333,19.1597222 L0,19 L0,12 C6.28042769e-17,11.4871642 0.38604019,11.0644928 0.883378875,11.0067277 L1,11 L19,11 Z M3,13 C2.44771525,13 2,13.4477153 2,14 C2,14.5522847 2.44771525,15 3,15 C3.55228475,15 4,14.5522847 4,14 C4,13.4477153 3.55228475,13 3,13 Z M6,13 C5.44771525,13 5,13.4477153 5,14 C5,14.5522847 5.44771525,15 6,15 C6.55228475,15 7,14.5522847 7,14 C7,13.4477153 6.55228475,13 6,13 Z M10,0 C13.3333333,0 16.6666667,0.333333333 20,1 L20,8 C20,8.55228475 19.5522847,9 19,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L0,1 C3.33333333,0.333333333 6.66666667,0 10,0 Z M6,5 L3,5 C2.44771525,5 2,5.44771525 2,6 C2,6.51283584 2.38604019,6.93550716 2.88337887,6.99327227 L3,7 L6,7 C6.55228475,7 7,6.55228475 7,6 C7,5.44771525 6.55228475,5 6,5 Z" id="Rectangle-Copy-2" fill="#ED474A"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Systems ok@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Systems-ok" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M19,11 C19.5128358,11 19.9355072,11.3860402 19.9932723,11.8833789 L20,12 L20,19 C16.6666667,19.6666667 13.3333333,20 10,20 C6.94444444,20 3.88888889,19.7199074 0.833333333,19.1597222 L0,19 L0,12 C6.28042769e-17,11.4871642 0.38604019,11.0644928 0.883378875,11.0067277 L1,11 L19,11 Z M3,13 C2.44771525,13 2,13.4477153 2,14 C2,14.5522847 2.44771525,15 3,15 C3.55228475,15 4,14.5522847 4,14 C4,13.4477153 3.55228475,13 3,13 Z M6,13 C5.44771525,13 5,13.4477153 5,14 C5,14.5522847 5.44771525,15 6,15 C6.55228475,15 7,14.5522847 7,14 C7,13.4477153 6.55228475,13 6,13 Z M10,0 C13.3333333,0 16.6666667,0.333333333 20,1 L20,8 C20,8.55228475 19.5522847,9 19,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L0,1 C3.33333333,0.333333333 6.66666667,0 10,0 Z M6,5 L3,5 C2.44771525,5 2,5.44771525 2,6 C2,6.51283584 2.38604019,6.93550716 2.88337887,6.99327227 L3,7 L6,7 C6.55228475,7 7,6.55228475 7,6 C7,5.44771525 6.55228475,5 6,5 Z" id="Rectangle-Copy-2" fill="#82B92E"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>Dark / 20 / Systems warning@svg</title>
<desc>Created with Sketch.</desc>
<g id="Dark-/-20-/-Systems-warning" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M19,11 C19.5128358,11 19.9355072,11.3860402 19.9932723,11.8833789 L20,12 L20,19 C16.6666667,19.6666667 13.3333333,20 10,20 C6.94444444,20 3.88888889,19.7199074 0.833333333,19.1597222 L0,19 L0,12 C6.28042769e-17,11.4871642 0.38604019,11.0644928 0.883378875,11.0067277 L1,11 L19,11 Z M3,13 C2.44771525,13 2,13.4477153 2,14 C2,14.5522847 2.44771525,15 3,15 C3.55228475,15 4,14.5522847 4,14 C4,13.4477153 3.55228475,13 3,13 Z M6,13 C5.44771525,13 5,13.4477153 5,14 C5,14.5522847 5.44771525,15 6,15 C6.55228475,15 7,14.5522847 7,14 C7,13.4477153 6.55228475,13 6,13 Z M10,0 C13.3333333,0 16.6666667,0.333333333 20,1 L20,8 C20,8.55228475 19.5522847,9 19,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L0,1 C3.33333333,0.333333333 6.66666667,0 10,0 Z M6,5 L3,5 C2.44771525,5 2,5.44771525 2,6 C2,6.51283584 2.38604019,6.93550716 2.88337887,6.99327227 L3,7 L6,7 C6.55228475,7 7,6.55228475 7,6 C7,5.44771525 6.55228475,5 6,5 Z" id="Rectangle-Copy-2" fill="#FCAB10"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -2612,6 +2612,7 @@ div#header_autorefresh_counter {
}
.autorefresh_disabled {
opacity: 0.5;
cursor: not-allowed;
}
@ -4757,17 +4758,16 @@ div#dialog_messages table th:last-child {
font-weight: bold;
}
.notification-ball.notification-ball-new-messages:hover {
box-shadow: 0 0 3px #888;
}
.notification-ball-no-messages {
background-color: #82b92e;
cursor: pointer;
background-image: url(../../images/discovery_ok@header.svg);
background-repeat: no-repeat;
background-position: center;
}
.notification-ball-new-messages {
background-color: #e63c52;
background-image: url(../../images/discovery_error@header.svg);
background-repeat: no-repeat;
background-position: center;
}
#notification-wrapper {
@ -11239,14 +11239,15 @@ form#satellite_conf_edit > fieldset.full-column {
.show-hide-pass {
position: relative;
right: 38px;
top: 0px;
right: 48px;
top: 14px;
border: 0;
outline: none;
margin: 0;
height: 40px;
width: 40px;
cursor: pointer;
display: inline-block;
}
.show-hide-pass-background {