13614-Fix icon color dark theme in General search

This commit is contained in:
Pablo Aragon 2024-04-25 12:57:47 +02:00
parent d0dcdf5dd4
commit a209fc95ec
2 changed files with 36 additions and 12 deletions

View File

@ -133,16 +133,16 @@ $table->data[0][3] = "<a href='index.php?search_category=modules&keywords=".$con
// ~ $table->data[0][5] = "<a href='index.php?search_category=alerts&keywords=" . $config['search_keywords'] . "&head_search_keywords=Search'>" . // ~ $table->data[0][5] = "<a href='index.php?search_category=alerts&keywords=" . $config['search_keywords'] . "&head_search_keywords=Search'>" .
// ~ sprintf(__("%s Found"), $totalAlerts) . "</a>"; // ~ sprintf(__("%s Found"), $totalAlerts) . "</a>";
// --------------------------------------------------------------------- // ---------------------------------------------------------------------
$table->data[0][6] = html_print_image('images/input_user.png', true, ['title' => __('Users found'), 'class' => 'invert_filter']); $table->data[0][6] = html_print_image('images/input_user.png', true, ['title' => __('Users found')]);
$table->data[0][7] = "<a href='index.php?search_category=users&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalUsers).'</a>'; $table->data[0][7] = "<a href='index.php?search_category=users&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalUsers).'</a>';
$table->data[0][8] = html_print_image('images/chart_curve.png', true, ['title' => __('Graphs found'), 'class' => 'invert_filter']); $table->data[0][8] = html_print_image('images/chart_curve.png', true, ['title' => __('Graphs found'), 'class' => 'invert_filter']);
$table->data[0][9] = "<a href='index.php?search_category=graphs&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalGraphs).'</a>'; $table->data[0][9] = "<a href='index.php?search_category=graphs&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalGraphs).'</a>';
$table->data[0][10] = html_print_image('images/reporting.png', true, ['title' => __('Reports found'), 'class' => 'invert_filter']); $table->data[0][10] = html_print_image('images/reporting.png', true, ['title' => __('Reports found'), 'class' => 'invert_filter']);
$table->data[0][11] = "<a href='index.php?search_category=reports&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalReports).'</a>'; $table->data[0][11] = "<a href='index.php?search_category=reports&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalReports).'</a>';
$table->data[0][12] = html_print_image('images/visual_console_green.png', true, ['title' => __('Visual consoles')]); $table->data[0][12] = html_print_image('images/visual_console_green.png', true, ['title' => __('Visual consoles'), 'class' => 'main_menu_icon invert_filter']);
$table->data[0][13] = "<a href='index.php?search_category=maps&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalMaps).'</a>'; $table->data[0][13] = "<a href='index.php?search_category=maps&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalMaps).'</a>';
if (enterprise_installed()) { if (enterprise_installed()) {
$table->data[0][14] = html_print_image('images/policy@svg.svg', true, ['title' => __('Policies'), 'class' => 'main_menu_icon']); $table->data[0][14] = html_print_image('images/policy@svg.svg', true, ['title' => __('Policies'), 'class' => 'main_menu_icon invert_filter']);
$table->data[0][15] = "<a href='index.php?search_category=policies&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalPolicies).'</a>'; $table->data[0][15] = "<a href='index.php?search_category=policies&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalPolicies).'</a>';
} }

View File

@ -66,7 +66,10 @@ if ($searchMain) {
'text' => "<a href='index.php?search_category=main&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=main&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/zoom_mc.png', 'images/zoom_mc.png',
true, true,
['title' => __('Global search')] [
'title' => __('Global search'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'main', 'active' => $searchTab == 'main',
]; ];
@ -79,7 +82,10 @@ if ($searchAgents) {
'text' => "<a href='index.php?search_category=agents&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=agents&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/op_monitoring.png', 'images/op_monitoring.png',
true, true,
['title' => __('Agents')] [
'title' => __('Agents'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'agents', 'active' => $searchTab == 'agents',
]; ];
@ -92,7 +98,10 @@ if ($searchUsers) {
'text' => "<a href='index.php?search_category=users&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=users&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/op_workspace.png', 'images/op_workspace.png',
true, true,
['title' => __('Users')] [
'title' => __('Users'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'users', 'active' => $searchTab == 'users',
]; ];
@ -105,7 +114,10 @@ if ($searchAlerts) {
'text' => "<a href='index.php?search_category=alerts&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=alerts&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/op_alerts.png', 'images/op_alerts.png',
true, true,
['title' => __('Alerts')] [
'title' => __('Alerts'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'alerts', 'active' => $searchTab == 'alerts',
]; ];
@ -118,7 +130,10 @@ if ($searchGraphs) {
'text' => "<a href='index.php?search_category=graphs&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=graphs&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/chart.png', 'images/chart.png',
true, true,
['title' => __('Graphs')] [
'title' => __('Graphs'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'graphs', 'active' => $searchTab == 'graphs',
]; ];
@ -131,7 +146,10 @@ if ($searchReports) {
'text' => "<a href='index.php?search_category=reports&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=reports&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/op_reporting.png', 'images/op_reporting.png',
true, true,
['title' => __('Reports')] [
'title' => __('Reports'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'reports', 'active' => $searchTab == 'reports',
]; ];
@ -144,7 +162,10 @@ if ($searchMaps) {
'text' => "<a href='index.php?search_category=maps&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=maps&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/visual_console.png', 'images/visual_console.png',
true, true,
['title' => __('Visual consoles')] [
'title' => __('Visual consoles'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'maps', 'active' => $searchTab == 'maps',
]; ];
@ -157,7 +178,10 @@ if ($searchModules) {
'text' => "<a href='index.php?search_category=modules&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image( 'text' => "<a href='index.php?search_category=modules&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".html_print_image(
'images/brick.png', 'images/brick.png',
true, true,
['title' => __('Modules')] [
'title' => __('Modules'),
'class' => 'main_menu_icon invert_filter',
]
).'</a>', ).'</a>',
'active' => $searchTab == 'modules', 'active' => $searchTab == 'modules',
]; ];
@ -172,7 +196,7 @@ if ($searchPolicies) {
true, true,
[ [
'title' => __('Policies'), 'title' => __('Policies'),
'class' => 'main_menu_icon', 'class' => 'main_menu_icon invert_filter',
] ]
).'</a>', ).'</a>',
'active' => $searchTab == 'policies', 'active' => $searchTab == 'policies',